library("tidyverse")
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4
## ✔ tibble 3.1.8 ✔ dplyr 1.0.9
## ✔ tidyr 1.2.0 ✔ stringr 1.4.0
## ✔ readr 2.1.2 ✔ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
library("plyr")
## ------------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## ------------------------------------------------------------------------------
##
## Attaching package: 'plyr'
##
## The following objects are masked from 'package:dplyr':
##
## arrange, count, desc, failwith, id, mutate, rename, summarise,
## summarize
##
## The following object is masked from 'package:purrr':
##
## compact
library("lattice")
library("ggplot2")
library("dplyr")
library("readr")
library("rmarkdown")
library("Rmisc")
library("devtools")
## Loading required package: usethis
library("gghalves")
library(questionr)
library(modelsummary)
library(lme4)
## Loading required package: Matrix
##
## Attaching package: 'Matrix'
##
## The following objects are masked from 'package:tidyr':
##
## expand, pack, unpack
library(lmerTest)
##
## Attaching package: 'lmerTest'
##
## The following object is masked from 'package:lme4':
##
## lmer
##
## The following object is masked from 'package:stats':
##
## step
library(emmeans)
##
## Attaching package: 'emmeans'
##
## The following object is masked from 'package:devtools':
##
## test
library(ggpubr)
##
## Attaching package: 'ggpubr'
##
## The following object is masked from 'package:plyr':
##
## mutate
We want a database with only the data on the vignettes and the Update
d <- df %>% dplyr::select(ID, matches("^V"))
d$ID <- seq(1:nrow(df))
We want to put all the vignette result under the same variable. However we have a lot of NA due to the fact that each vignettes is different according to race.
df_V <- d %>%
# We gather all the result of all the vignette under the same variables
gather(vignette_name,
vignette_result,
d %>% colnames() %>% str_detect("^V[1-4].[0-9](_[A-Z]|)_Judge(Other|Self)_[0-9]$") %>% which()) %>%
# we get rid off the NA in vignette results (which happens because there is a variable for each race name even though participants have answered according to only one race)
filter(!(is.na(vignette_result))) %>%
# we create variables from the name to get the vignet number, the race of the name, if it's an Update or not and what's the Question
mutate(V_Number=vignette_name %>% str_extract("[0-9]"),
V_Racename=vignette_name %>% str_extract("[WIBC]"),
V_Update=vignette_name %>% str_detect("^V[0-9].2"),
V_Question=vignette_name %>% str_extract("Judge(Other|Self)_[0-9]$"))
# We now have to complete the race name for the Update because they do not have the race of the name in the name of the variable (ex: V1.2_JudgeOther_1 and not V1.1_W_JudgeOther_1)
df_V <- df_V %>%
# we select the rows that do not have a Racename (typically the Updates)
filter(is.na(V_Racename)) %>%
# we create a unique ID for each of the four vignette based on the vignette number and the participant ID
mutate(IDD = paste0(ID, '_', V_Number)) %>%
dplyr::select(IDD, V_Update, V_Racename) %>%
# we join the database of the lines without Racenames with those with race names according to the uniaue ID of the vignette, so that we have the race name for each vignette for each participants
inner_join(df_V %>%
filter(!(is.na(V_Racename))) %>%
mutate(IDD = paste0(ID, '_', V_Number)) %>%
dplyr::select(IDD, V_Update, V_Racename),
by="IDD") %>%
# we gather the information and create a new unique ID for each vignette, Update and participants so that we have the race of the name according to the participants ID, Vignette number and Update or not
gather(nu, V_Update, c(2,4)) %>%
dplyr::select(IDD, V_Racename.y, V_Update) %>%
mutate(IDD = paste0(IDD, "_", V_Update),
V_Racenamef = V_Racename.y) %>%
dplyr::select(IDD, V_Racenamef) %>%
# we get ride of the doubloons
distinct(IDD, V_Racenamef, .keep_all = TRUE) %>%
# we join or database so that we always have the race of the name
inner_join(df_V %>%
mutate(IDD = paste0(ID, '_', V_Number, "_", V_Update)),
by = "IDD")
Now we want to have for each lines a variable that indicate what was the element n (the product, the location, the age, the store type,the framing or the presentation) for each variables First we need to rename certain variable
df_V <- df_V %>%
cbind(
df_V %>%
dplyr::select(matches("V[0-9]_Location"))%>%
map_dfc(function(x){
fct_recode(x,
"anotherpartoftown"="in another part of town",
"inthecity"="in the city")
}) %>%
rename_with(function(x){paste0("clean_",x)}),
df_V %>%
dplyr::select(matches("V[0-9]_Age"))%>%
rename_with(function(x){paste0("clean_",x)}),
df_V %>%
dplyr::select(matches("V[0-9]_Product"))%>%
map_dfc(function(x){
fct_recode(x,
"babyformula"="baby formula",
"hardwaresupplies"="hardware supplies",
"toiletpaper"="toilet paper")
}) %>%
rename_with(function(x){paste0("clean_",x)}),
df_V %>%
dplyr::select(matches("V[0-9]_StoreType")) %>%
map_dfc(function(x){
fct_recode(x,
"conveniencestore"="convenience store",
"departmentstore"="department store",
"supermarket"="supermarket")
}) %>%
rename_with(function(x){paste0("clean_",x)}),
df_V %>%
dplyr::select(matches("V[0-9]_Framing")) %>%
map_dfc(function(x){
fct_recode(x,
"Anticipating"="Anticipating your reaction, they explain that they are buying a large amount of",
"Explain"="They explain to you that they are buying a large amount of",
"Strike up"="They happen to strike up a conversation with you, explaining to you that they are buying a large amount of",
"Wave"="They wave to you and say that they are buying a large amount of")
}) %>%
rename_with(function(x){paste0("clean_",x)}),
df_V %>%
dplyr::select(matches("V[0-9]_Presentation")) %>%
map_dfc(function(x){
fct_recode(x,
"Defensive"="even though they already have hardware supplies at home, it pays to be cautious",
"Defensive"="even though they already have some at home, it pays to be cautious",
"Prosocial"="their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm",
"Prosocial"="their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors",
"Prosocial"="they are out of formula and their baby cannot eat otherwise",
"Defensive"="they are stocking up for what they expect to be an anxiety-ridden couple of months",
"Prosocial"="theyu0081Ere donating the toilet paper to a local homeless shelter")
}) %>%
rename_with(function(x){paste0("clean_",x)})
)
## Warning: Unknown levels in `f`: theyu0081Ere donating the toilet paper to a
## local homeless shelter
## Warning: Unknown levels in `f`: theyu0081Ere donating the toilet paper to a
## local homeless shelter
## Warning: Unknown levels in `f`: theyu0081Ere donating the toilet paper to a
## local homeless shelter
## Warning: Unknown levels in `f`: theyu0081Ere donating the toilet paper to a
## local homeless shelter
df_V %>%
dplyr::select(matches("^V[.A-z0-9_]{1,}TIME")) %>%
colnames()
## [1] "V1.1_W_TIME_P1_First.Click" "V1.1_W_TIME_P1_Last.Click"
## [3] "V1.1_W_TIME_P1_Page.Submit" "V1.1_W_TIME_P1_Click.Count"
## [5] "V1.1_W_TIME_P2_First.Click" "V1.1_W_TIME_P2_Last.Click"
## [7] "V1.1_W_TIME_P2_Page.Submit" "V1.1_W_TIME_P2_Click.Count"
## [9] "V1.2_TIME_P1_First.Click" "V1.2_TIME_P1_Last.Click"
## [11] "V1.2_TIME_P1_Page.Submit" "V1.2_TIME_P1_Click.Count"
## [13] "V1.2_TIME_P2_First.Click" "V1.2_TIME_P2_Last.Click"
## [15] "V1.2_TIME_P2_Page.Submit" "V1.2_TIME_P2_Click.Count"
## [17] "V1.1_B_TIME_P1_First.Click" "V1.1_B_TIME_P1_Last.Click"
## [19] "V1.1_B_TIME_P1_Page.Submit" "V1.1_B_TIME_P1_Click.Count"
## [21] "V1.1_B_TIME_P2_First.Click" "V1.1_B_TIME_P2_Last.Click"
## [23] "V1.1_B_TIME_P2_Page.Submit" "V1.1_B_TIME_P2_Click.Count"
## [25] "V1.1_I_TIME_P1_First.Click" "V1.1_I_TIME_P1_Last.Click"
## [27] "V1.1_I_TIME_P1_Page.Submit" "V1.1_I_TIME_P1_Click.Count"
## [29] "V1.1_I_TIME_P2_First.Click" "V1.1_I_TIME_P2_Last.Click"
## [31] "V1.1_I_TIME_P2_Page.Submit" "V1.1_I_TIME_P2_Click.Count"
## [33] "V1.1_C_TIME_P1_First.Click" "V1.1_C_TIME_P1_Last.Click"
## [35] "V1.1_C_TIME_P1_Page.Submit" "V1.1_C_TIME_P1_Click.Count"
## [37] "V1.1_C_TIME_P2_First.Click" "V1.1_C_TIME_P2_Last.Click"
## [39] "V1.1_C_TIME_P2_Page.Submit" "V1.1_C_TIME_P2_Click.Count"
## [41] "V2.1_B_TIME_P1_First.Click" "V2.1_B_TIME_P1_Last.Click"
## [43] "V2.1_B_TIME_P1_Page.Submit" "V2.1_B_TIME_P1_Click.Count"
## [45] "V2.1_B_TIME_P2_First.Click" "V2.1_B_TIME_P2_Last.Click"
## [47] "V2.1_B_TIME_P2_Page.Submit" "V2.1_B_TIME_P2_Click.Count"
## [49] "V2.2_TIME_P1_First.Click" "V2.2_TIME_P1_Last.Click"
## [51] "V2.2_TIME_P1_Page.Submit" "V2.2_TIME_P1_Click.Count"
## [53] "V2.2_TIME_P2_First.Click" "V2.2_TIME_P2_Last.Click"
## [55] "V2.2_TIME_P2_Page.Submit" "V2.2_TIME_P2_Click.Count"
## [57] "V2.1_W_TIME_P1_First.Click" "V2.1_W_TIME_P1_Last.Click"
## [59] "V2.1_W_TIME_P1_Page.Submit" "V2.1_W_TIME_P1_Click.Count"
## [61] "V2.1_W_TIME_P2_First.Click" "V2.1_W_TIME_P2_Last.Click"
## [63] "V2.1_W_TIME_P2_Page.Submit" "V2.1_W_TIME_P2_Click.Count"
## [65] "V2.1_C_TIME_P1_First.Click" "V2.1_C_TIME_P1_Last.Click"
## [67] "V2.1_C_TIME_P1_Page.Submit" "V2.1_C_TIME_P1_Click.Count"
## [69] "V2.1_C_TIME_P2_First.Click" "V2.1_C_TIME_P2_Last.Click"
## [71] "V2.1_C_TIME_P2_Page.Submit" "V2.1_C_TIME_P2_Click.Count"
## [73] "V2.1_I_TIME_P1_First.Click" "V2.1_I_TIME_P1_Last.Click"
## [75] "V2.1_I_TIME_P1_Page.Submit" "V2.1_I_TIME_P1_Click.Count"
## [77] "V2.1_I_TIME_P2_First.Click" "V2.1_I_TIME_P2_Last.Click"
## [79] "V2.1_I_TIME_P2_Page.Submit" "V2.1_I_TIME_P2_Click.Count"
## [81] "V3.1_I_TIME_P1_First.Click" "V3.1_I_TIME_P1_Last.Click"
## [83] "V3.1_I_TIME_P1_Page.Submit" "V3.1_I_TIME_P1_Click.Count"
## [85] "V3.1_I_TIME_P2_First.Click" "V3.1_I_TIME_P2_Last.Click"
## [87] "V3.1_I_TIME_P2_Page.Submit" "V3.1_I_TIME_P2_Click.Count"
## [89] "V3.2_TIME_P1_First.Click" "V3.2_TIME_P1_Last.Click"
## [91] "V3.2_TIME_P1_Page.Submit" "V3.2_TIME_P1_Click.Count"
## [93] "V3.2_TIME_P2_First.Click" "V3.2_TIME_P2_Last.Click"
## [95] "V3.2_TIME_P2_Page.Submit" "V3.2_TIME_P2_Click.Count"
## [97] "V3.1_C_TIME_P1_First.Click" "V3.1_C_TIME_P1_Last.Click"
## [99] "V3.1_C_TIME_P1_Page.Submit" "V3.1_C_TIME_P1_Click.Count"
## [101] "V3.1_C_TIME_P2_First.Click" "V3.1_C_TIME_P2_Last.Click"
## [103] "V3.1_C_TIME_P2_Page.Submit" "V3.1_C_TIME_P2_Click.Count"
## [105] "V3.1_W_TIME_P1_First.Click" "V3.1_W_TIME_P1_Last.Click"
## [107] "V3.1_W_TIME_P1_Page.Submit" "V3.1_W_TIME_P1_Click.Count"
## [109] "V3.1_W_TIME_P2_First.Click" "V3.1_W_TIME_P2_Last.Click"
## [111] "V3.1_W_TIME_P2_Page.Submit" "V3.1_W_TIME_P2_Click.Count"
## [113] "V3.1_B_TIME_P1_First.Click" "V3.1_B_TIME_P1_Last.Click"
## [115] "V3.1_B_TIME_P1_Page.Submit" "V3.1_B_TIME_P1_Click.Count"
## [117] "V3.1_B_TIME_P2_First.Click" "V3.1_B_TIME_P2_Last.Click"
## [119] "V3.1_B_TIME_P2_Page.Submit" "V3.1_B_TIME_P2_Click.Count"
## [121] "V4.1_C_TIME_P1_First.Click" "V4.1_C_TIME_P1_Last.Click"
## [123] "V4.1_C_TIME_P1_Page.Submit" "V4.1_C_TIME_P1_Click.Count"
## [125] "V4.1_C_TIME_P2_First.Click" "V4.1_C_TIME_P2_Last.Click"
## [127] "V4.1_C_TIME_P2_Page.Submit" "V4.1_C_TIME_P2_Click.Count"
## [129] "V4.2_TIME_P1_First.Click" "V4.2_TIME_P1_Last.Click"
## [131] "V4.2_TIME_P1_Page.Submit" "V4.2_TIME_P1_Click.Count"
## [133] "V4.2_TIME_P2_First.Click" "V4.2_TIME_P2_Last.Click"
## [135] "V4.2_TIME_P2_Page.Submit" "V4.2_TIME_P2_Click.Count"
## [137] "V4.1_I_TIME_P1_First.Click" "V4.1_I_TIME_P1_Last.Click"
## [139] "V4.1_I_TIME_P1_Page.Submit" "V4.1_I_TIME_P1_Click.Count"
## [141] "V4.1_I_TIME_P2_First.Click" "V4.1_I_TIME_P2_Last.Click"
## [143] "V4.1_I_TIME_P2_Page.Submit" "V4.1_I_TIME_P2_Click.Count"
## [145] "V4.1_B_TIME_P1_First.Click" "V4.1_B_TIME_P1_Last.Click"
## [147] "V4.1_B_TIME_P1_Page.Submit" "V4.1_B_TIME_P1_Click.Count"
## [149] "V4.1_B_TIME_P2_First.Click" "V4.1_B_TIME_P2_Last.Click"
## [151] "V4.1_B_TIME_P2_Page.Submit" "V4.1_B_TIME_P2_Click.Count"
## [153] "V4.1_W_TIME_P1_First.Click" "V4.1_W_TIME_P1_Last.Click"
## [155] "V4.1_W_TIME_P1_Page.Submit" "V4.1_W_TIME_P1_Click.Count"
## [157] "V4.1_W_TIME_P2_First.Click" "V4.1_W_TIME_P2_Last.Click"
## [159] "V4.1_W_TIME_P2_Page.Submit" "V4.1_W_TIME_P2_Click.Count"
df_V %>%
dplyr::select(matches("V1.1_[A-Z]_TIME_P1_(Last|First).Click"))
## V1.1_W_TIME_P1_First.Click V1.1_W_TIME_P1_Last.Click
## 1 NA NA
## 2 NA NA
## 3 NA NA
## 4 NA NA
## 5 NA NA
## 6 NA NA
## 7 NA NA
## 8 NA NA
## 9 NA NA
## 10 NA NA
## 11 NA NA
## 12 NA NA
## 13 NA NA
## 14 NA NA
## 15 NA NA
## 16 NA NA
## 17 NA NA
## 18 NA NA
## 19 NA NA
## 20 NA NA
## 21 NA NA
## 22 NA NA
## 23 NA NA
## 24 NA NA
## 25 NA NA
## 26 NA NA
## 27 NA NA
## 28 NA NA
## 29 NA NA
## 30 NA NA
## 31 NA NA
## 32 NA NA
## 33 NA NA
## 34 NA NA
## 35 NA NA
## 36 NA NA
## 37 NA NA
## 38 NA NA
## 39 NA NA
## 40 NA NA
## 41 NA NA
## 42 NA NA
## 43 NA NA
## 44 NA NA
## 45 NA NA
## 46 NA NA
## 47 NA NA
## 48 NA NA
## 49 NA NA
## 50 NA NA
## 51 NA NA
## 52 NA NA
## 53 NA NA
## 54 NA NA
## 55 14.210 25.292
## 56 14.210 25.292
## 57 14.210 25.292
## 58 14.210 25.292
## 59 14.210 25.292
## 60 14.210 25.292
## 61 NA NA
## 62 NA NA
## 63 NA NA
## 64 NA NA
## 65 NA NA
## 66 NA NA
## 67 14.585 56.907
## 68 14.585 56.907
## 69 14.585 56.907
## 70 14.585 56.907
## 71 14.585 56.907
## 72 14.585 56.907
## 73 NA NA
## 74 NA NA
## 75 NA NA
## 76 NA NA
## 77 NA NA
## 78 NA NA
## 79 4.093 36.654
## 80 4.093 36.654
## 81 4.093 36.654
## 82 4.093 36.654
## 83 4.093 36.654
## 84 4.093 36.654
## 85 NA NA
## 86 NA NA
## 87 NA NA
## 88 NA NA
## 89 NA NA
## 90 NA NA
## 91 NA NA
## 92 NA NA
## 93 NA NA
## 94 NA NA
## 95 NA NA
## 96 NA NA
## 97 NA NA
## 98 NA NA
## 99 NA NA
## 100 NA NA
## 101 NA NA
## 102 NA NA
## 103 NA NA
## 104 NA NA
## 105 NA NA
## 106 NA NA
## 107 NA NA
## 108 NA NA
## 109 NA NA
## 110 NA NA
## 111 NA NA
## 112 NA NA
## 113 NA NA
## 114 NA NA
## 115 52.733 66.477
## 116 52.733 66.477
## 117 52.733 66.477
## 118 52.733 66.477
## 119 52.733 66.477
## 120 52.733 66.477
## 121 NA NA
## 122 NA NA
## 123 NA NA
## 124 NA NA
## 125 NA NA
## 126 NA NA
## 127 NA NA
## 128 NA NA
## 129 NA NA
## 130 NA NA
## 131 NA NA
## 132 NA NA
## 133 15.452 28.498
## 134 15.452 28.498
## 135 15.452 28.498
## 136 15.452 28.498
## 137 15.452 28.498
## 138 15.452 28.498
## 139 NA NA
## 140 NA NA
## 141 NA NA
## 142 NA NA
## 143 NA NA
## 144 NA NA
## 145 NA NA
## 146 NA NA
## 147 NA NA
## 148 NA NA
## 149 NA NA
## 150 NA NA
## 151 15.231 31.927
## 152 15.231 31.927
## 153 15.231 31.927
## 154 15.231 31.927
## 155 15.231 31.927
## 156 15.231 31.927
## 157 NA NA
## 158 NA NA
## 159 NA NA
## 160 NA NA
## 161 NA NA
## 162 NA NA
## 163 NA NA
## 164 NA NA
## 165 NA NA
## 166 NA NA
## 167 NA NA
## 168 NA NA
## 169 NA NA
## 170 NA NA
## 171 NA NA
## 172 NA NA
## 173 NA NA
## 174 NA NA
## 175 2.078 41.471
## 176 2.078 41.471
## 177 2.078 41.471
## 178 2.078 41.471
## 179 2.078 41.471
## 180 2.078 41.471
## 181 NA NA
## 182 NA NA
## 183 NA NA
## 184 NA NA
## 185 NA NA
## 186 NA NA
## 187 NA NA
## 188 NA NA
## 189 NA NA
## 190 NA NA
## 191 NA NA
## 192 NA NA
## 193 12.394 33.370
## 194 12.394 33.370
## 195 12.394 33.370
## 196 12.394 33.370
## 197 12.394 33.370
## 198 12.394 33.370
## 199 NA NA
## 200 NA NA
## 201 NA NA
## 202 NA NA
## 203 NA NA
## 204 NA NA
## 205 NA NA
## 206 NA NA
## 207 NA NA
## 208 NA NA
## 209 NA NA
## 210 NA NA
## 211 NA NA
## 212 NA NA
## 213 NA NA
## 214 NA NA
## 215 NA NA
## 216 NA NA
## 217 NA NA
## 218 NA NA
## 219 NA NA
## 220 NA NA
## 221 NA NA
## 222 NA NA
## 223 NA NA
## 224 NA NA
## 225 NA NA
## 226 NA NA
## 227 NA NA
## 228 NA NA
## 229 NA NA
## 230 NA NA
## 231 NA NA
## 232 NA NA
## 233 NA NA
## 234 NA NA
## 235 NA NA
## 236 NA NA
## 237 NA NA
## 238 NA NA
## 239 NA NA
## 240 NA NA
## 241 NA NA
## 242 NA NA
## 243 NA NA
## 244 NA NA
## 245 NA NA
## 246 NA NA
## 247 NA NA
## 248 NA NA
## 249 NA NA
## 250 NA NA
## 251 NA NA
## 252 NA NA
## 253 NA NA
## 254 NA NA
## 255 NA NA
## 256 NA NA
## 257 NA NA
## 258 NA NA
## 259 NA NA
## 260 NA NA
## 261 NA NA
## 262 NA NA
## 263 NA NA
## 264 NA NA
## 265 NA NA
## 266 NA NA
## 267 NA NA
## 268 NA NA
## 269 NA NA
## 270 NA NA
## 271 NA NA
## 272 NA NA
## 273 NA NA
## 274 NA NA
## 275 NA NA
## 276 NA NA
## 277 NA NA
## 278 NA NA
## 279 NA NA
## 280 NA NA
## 281 NA NA
## 282 NA NA
## 283 NA NA
## 284 NA NA
## 285 NA NA
## 286 NA NA
## 287 NA NA
## 288 NA NA
## 289 NA NA
## 290 NA NA
## 291 NA NA
## 292 NA NA
## 293 NA NA
## 294 NA NA
## 295 NA NA
## 296 NA NA
## 297 NA NA
## 298 NA NA
## 299 NA NA
## 300 NA NA
## 301 NA NA
## 302 NA NA
## 303 NA NA
## 304 NA NA
## 305 NA NA
## 306 NA NA
## 307 19.769 29.612
## 308 19.769 29.612
## 309 19.769 29.612
## 310 19.769 29.612
## 311 19.769 29.612
## 312 19.769 29.612
## 313 NA NA
## 314 NA NA
## 315 NA NA
## 316 NA NA
## 317 NA NA
## 318 NA NA
## 319 NA NA
## 320 NA NA
## 321 NA NA
## 322 NA NA
## 323 NA NA
## 324 NA NA
## 325 NA NA
## 326 NA NA
## 327 NA NA
## 328 NA NA
## 329 NA NA
## 330 NA NA
## 331 NA NA
## 332 NA NA
## 333 NA NA
## 334 NA NA
## 335 NA NA
## 336 NA NA
## 337 2.508 52.231
## 338 2.508 52.231
## 339 2.508 52.231
## 340 2.508 52.231
## 341 2.508 52.231
## 342 2.508 52.231
## 343 40.409 51.258
## 344 40.409 51.258
## 345 40.409 51.258
## 346 40.409 51.258
## 347 40.409 51.258
## 348 40.409 51.258
## 349 NA NA
## 350 NA NA
## 351 NA NA
## 352 NA NA
## 353 NA NA
## 354 NA NA
## 355 34.520 54.495
## 356 34.520 54.495
## 357 34.520 54.495
## 358 34.520 54.495
## 359 34.520 54.495
## 360 34.520 54.495
## 361 NA NA
## 362 NA NA
## 363 NA NA
## 364 NA NA
## 365 NA NA
## 366 NA NA
## 367 NA NA
## 368 NA NA
## 369 NA NA
## 370 NA NA
## 371 NA NA
## 372 NA NA
## 373 NA NA
## 374 NA NA
## 375 NA NA
## 376 NA NA
## 377 NA NA
## 378 NA NA
## 379 NA NA
## 380 NA NA
## 381 NA NA
## 382 NA NA
## 383 NA NA
## 384 NA NA
## 385 NA NA
## 386 NA NA
## 387 NA NA
## 388 NA NA
## 389 NA NA
## 390 NA NA
## 391 NA NA
## 392 NA NA
## 393 NA NA
## 394 NA NA
## 395 NA NA
## 396 NA NA
## 397 NA NA
## 398 NA NA
## 399 NA NA
## 400 NA NA
## 401 NA NA
## 402 NA NA
## 403 NA NA
## 404 NA NA
## 405 NA NA
## 406 NA NA
## 407 NA NA
## 408 NA NA
## 409 NA NA
## 410 NA NA
## 411 NA NA
## 412 NA NA
## 413 NA NA
## 414 NA NA
## 415 NA NA
## 416 NA NA
## 417 NA NA
## 418 NA NA
## 419 NA NA
## 420 NA NA
## 421 13.205 28.705
## 422 13.205 28.705
## 423 13.205 28.705
## 424 13.205 28.705
## 425 13.205 28.705
## 426 13.205 28.705
## 427 NA NA
## 428 NA NA
## 429 NA NA
## 430 NA NA
## 431 NA NA
## 432 NA NA
## 433 NA NA
## 434 NA NA
## 435 NA NA
## 436 NA NA
## 437 NA NA
## 438 NA NA
## 439 NA NA
## 440 NA NA
## 441 NA NA
## 442 NA NA
## 443 NA NA
## 444 NA NA
## 445 NA NA
## 446 NA NA
## 447 NA NA
## 448 NA NA
## 449 NA NA
## 450 NA NA
## 451 NA NA
## 452 NA NA
## 453 NA NA
## 454 NA NA
## 455 NA NA
## 456 NA NA
## 457 NA NA
## 458 NA NA
## 459 NA NA
## 460 NA NA
## 461 NA NA
## 462 NA NA
## 463 NA NA
## 464 NA NA
## 465 NA NA
## 466 NA NA
## 467 NA NA
## 468 NA NA
## 469 NA NA
## 470 NA NA
## 471 NA NA
## 472 NA NA
## 473 NA NA
## 474 NA NA
## 475 NA NA
## 476 NA NA
## 477 NA NA
## 478 NA NA
## 479 NA NA
## 480 NA NA
## 481 NA NA
## 482 NA NA
## 483 NA NA
## 484 NA NA
## 485 NA NA
## 486 NA NA
## 487 NA NA
## 488 NA NA
## 489 NA NA
## 490 NA NA
## 491 NA NA
## 492 NA NA
## 493 NA NA
## 494 NA NA
## 495 NA NA
## 496 NA NA
## 497 NA NA
## 498 NA NA
## 499 24.778 31.586
## 500 24.778 31.586
## 501 24.778 31.586
## 502 24.778 31.586
## 503 24.778 31.586
## 504 24.778 31.586
## 505 NA NA
## 506 NA NA
## 507 NA NA
## 508 NA NA
## 509 NA NA
## 510 NA NA
## 511 NA NA
## 512 NA NA
## 513 NA NA
## 514 NA NA
## 515 NA NA
## 516 NA NA
## 517 NA NA
## 518 NA NA
## 519 NA NA
## 520 NA NA
## 521 NA NA
## 522 NA NA
## 523 8.918 51.318
## 524 8.918 51.318
## 525 8.918 51.318
## 526 8.918 51.318
## 527 8.918 51.318
## 528 8.918 51.318
## 529 NA NA
## 530 NA NA
## 531 NA NA
## 532 NA NA
## 533 NA NA
## 534 NA NA
## 535 NA NA
## 536 NA NA
## 537 NA NA
## 538 NA NA
## 539 NA NA
## 540 NA NA
## 541 38.588 59.334
## 542 38.588 59.334
## 543 38.588 59.334
## 544 38.588 59.334
## 545 38.588 59.334
## 546 38.588 59.334
## 547 NA NA
## 548 NA NA
## 549 NA NA
## 550 NA NA
## 551 NA NA
## 552 NA NA
## 553 NA NA
## 554 NA NA
## 555 NA NA
## 556 NA NA
## 557 NA NA
## 558 NA NA
## 559 NA NA
## 560 NA NA
## 561 NA NA
## 562 NA NA
## 563 NA NA
## 564 NA NA
## 565 NA NA
## 566 NA NA
## 567 NA NA
## 568 NA NA
## 569 NA NA
## 570 NA NA
## 571 NA NA
## 572 NA NA
## 573 NA NA
## 574 NA NA
## 575 NA NA
## 576 NA NA
## 577 NA NA
## 578 NA NA
## 579 NA NA
## 580 NA NA
## 581 NA NA
## 582 NA NA
## 583 NA NA
## 584 NA NA
## 585 NA NA
## 586 NA NA
## 587 NA NA
## 588 NA NA
## 589 NA NA
## 590 NA NA
## 591 NA NA
## 592 NA NA
## 593 NA NA
## 594 NA NA
## 595 34.006 49.564
## 596 34.006 49.564
## 597 34.006 49.564
## 598 34.006 49.564
## 599 34.006 49.564
## 600 34.006 49.564
## 601 NA NA
## 602 NA NA
## 603 NA NA
## 604 NA NA
## 605 NA NA
## 606 NA NA
## 607 28.103 56.290
## 608 28.103 56.290
## 609 28.103 56.290
## 610 28.103 56.290
## 611 28.103 56.290
## 612 28.103 56.290
## 613 4.872 69.785
## 614 4.872 69.785
## 615 4.872 69.785
## 616 4.872 69.785
## 617 4.872 69.785
## 618 4.872 69.785
## 619 NA NA
## 620 NA NA
## 621 NA NA
## 622 NA NA
## 623 NA NA
## 624 NA NA
## 625 NA NA
## 626 NA NA
## 627 NA NA
## 628 NA NA
## 629 NA NA
## 630 NA NA
## 631 30.581 51.971
## 632 30.581 51.971
## 633 30.581 51.971
## 634 30.581 51.971
## 635 30.581 51.971
## 636 30.581 51.971
## 637 NA NA
## 638 NA NA
## 639 NA NA
## 640 NA NA
## 641 NA NA
## 642 NA NA
## 643 NA NA
## 644 NA NA
## 645 NA NA
## 646 NA NA
## 647 NA NA
## 648 NA NA
## 649 10.188 31.833
## 650 10.188 31.833
## 651 10.188 31.833
## 652 10.188 31.833
## 653 10.188 31.833
## 654 10.188 31.833
## 655 NA NA
## 656 NA NA
## 657 NA NA
## 658 NA NA
## 659 NA NA
## 660 NA NA
## 661 NA NA
## 662 NA NA
## 663 NA NA
## 664 NA NA
## 665 NA NA
## 666 NA NA
## 667 NA NA
## 668 NA NA
## 669 NA NA
## 670 NA NA
## 671 NA NA
## 672 NA NA
## 673 28.895 63.319
## 674 28.895 63.319
## 675 28.895 63.319
## 676 28.895 63.319
## 677 28.895 63.319
## 678 28.895 63.319
## 679 NA NA
## 680 NA NA
## 681 NA NA
## 682 NA NA
## 683 NA NA
## 684 NA NA
## 685 12.624 74.107
## 686 12.624 74.107
## 687 12.624 74.107
## 688 12.624 74.107
## 689 12.624 74.107
## 690 12.624 74.107
## 691 34.176 53.232
## 692 34.176 53.232
## 693 34.176 53.232
## 694 34.176 53.232
## 695 34.176 53.232
## 696 34.176 53.232
## 697 NA NA
## 698 NA NA
## 699 NA NA
## 700 NA NA
## 701 NA NA
## 702 NA NA
## 703 NA NA
## 704 NA NA
## 705 NA NA
## 706 NA NA
## 707 NA NA
## 708 NA NA
## 709 15.858 30.822
## 710 15.858 30.822
## 711 15.858 30.822
## 712 15.858 30.822
## 713 15.858 30.822
## 714 15.858 30.822
## 715 31.687 75.667
## 716 31.687 75.667
## 717 31.687 75.667
## 718 31.687 75.667
## 719 31.687 75.667
## 720 31.687 75.667
## 721 39.901 78.155
## 722 39.901 78.155
## 723 39.901 78.155
## 724 39.901 78.155
## 725 39.901 78.155
## 726 39.901 78.155
## 727 NA NA
## 728 NA NA
## 729 NA NA
## 730 NA NA
## 731 NA NA
## 732 NA NA
## 733 11.245 21.135
## 734 11.245 21.135
## 735 11.245 21.135
## 736 11.245 21.135
## 737 11.245 21.135
## 738 11.245 21.135
## 739 46.828 83.197
## 740 46.828 83.197
## 741 46.828 83.197
## 742 46.828 83.197
## 743 46.828 83.197
## 744 46.828 83.197
## 745 NA NA
## 746 NA NA
## 747 NA NA
## 748 NA NA
## 749 NA NA
## 750 NA NA
## 751 17.580 35.986
## 752 17.580 35.986
## 753 17.580 35.986
## 754 17.580 35.986
## 755 17.580 35.986
## 756 17.580 35.986
## 757 NA NA
## 758 NA NA
## 759 NA NA
## 760 NA NA
## 761 NA NA
## 762 NA NA
## 763 NA NA
## 764 NA NA
## 765 NA NA
## 766 NA NA
## 767 NA NA
## 768 NA NA
## 769 NA NA
## 770 NA NA
## 771 NA NA
## 772 NA NA
## 773 NA NA
## 774 NA NA
## 775 17.915 36.373
## 776 17.915 36.373
## 777 17.915 36.373
## 778 17.915 36.373
## 779 17.915 36.373
## 780 17.915 36.373
## 781 9.056 89.046
## 782 9.056 89.046
## 783 9.056 89.046
## 784 9.056 89.046
## 785 9.056 89.046
## 786 9.056 89.046
## 787 NA NA
## 788 NA NA
## 789 NA NA
## 790 NA NA
## 791 NA NA
## 792 NA NA
## 793 10.534 66.626
## 794 10.534 66.626
## 795 10.534 66.626
## 796 10.534 66.626
## 797 10.534 66.626
## 798 10.534 66.626
## 799 NA NA
## 800 NA NA
## 801 NA NA
## 802 NA NA
## 803 NA NA
## 804 NA NA
## 805 26.087 42.856
## 806 26.087 42.856
## 807 26.087 42.856
## 808 26.087 42.856
## 809 26.087 42.856
## 810 26.087 42.856
## 811 NA NA
## 812 NA NA
## 813 NA NA
## 814 NA NA
## 815 NA NA
## 816 NA NA
## 817 NA NA
## 818 NA NA
## 819 NA NA
## 820 NA NA
## 821 NA NA
## 822 NA NA
## 823 NA NA
## 824 NA NA
## 825 NA NA
## 826 NA NA
## 827 NA NA
## 828 NA NA
## 829 NA NA
## 830 NA NA
## 831 NA NA
## 832 NA NA
## 833 NA NA
## 834 NA NA
## 835 11.923 53.320
## 836 11.923 53.320
## 837 11.923 53.320
## 838 11.923 53.320
## 839 11.923 53.320
## 840 11.923 53.320
## 841 NA NA
## 842 NA NA
## 843 NA NA
## 844 NA NA
## 845 NA NA
## 846 NA NA
## 847 NA NA
## 848 NA NA
## 849 NA NA
## 850 NA NA
## 851 NA NA
## 852 NA NA
## 853 43.656 63.123
## 854 43.656 63.123
## 855 43.656 63.123
## 856 43.656 63.123
## 857 43.656 63.123
## 858 43.656 63.123
## 859 NA NA
## 860 NA NA
## 861 NA NA
## 862 NA NA
## 863 NA NA
## 864 NA NA
## 865 NA NA
## 866 NA NA
## 867 NA NA
## 868 NA NA
## 869 NA NA
## 870 NA NA
## 871 NA NA
## 872 NA NA
## 873 NA NA
## 874 NA NA
## 875 NA NA
## 876 NA NA
## 877 NA NA
## 878 NA NA
## 879 NA NA
## 880 NA NA
## 881 NA NA
## 882 NA NA
## 883 15.549 29.558
## 884 15.549 29.558
## 885 15.549 29.558
## 886 15.549 29.558
## 887 15.549 29.558
## 888 15.549 29.558
## 889 NA NA
## 890 NA NA
## 891 NA NA
## 892 NA NA
## 893 NA NA
## 894 NA NA
## 895 43.639 65.840
## 896 43.639 65.840
## 897 43.639 65.840
## 898 43.639 65.840
## 899 43.639 65.840
## 900 43.639 65.840
## 901 NA NA
## 902 NA NA
## 903 NA NA
## 904 NA NA
## 905 NA NA
## 906 NA NA
## 907 NA NA
## 908 NA NA
## 909 NA NA
## 910 NA NA
## 911 NA NA
## 912 NA NA
## 913 NA NA
## 914 NA NA
## 915 NA NA
## 916 NA NA
## 917 NA NA
## 918 NA NA
## 919 NA NA
## 920 NA NA
## 921 NA NA
## 922 NA NA
## 923 NA NA
## 924 NA NA
## 925 NA NA
## 926 NA NA
## 927 NA NA
## 928 NA NA
## 929 NA NA
## 930 NA NA
## 931 1.131 28.423
## 932 1.131 28.423
## 933 1.131 28.423
## 934 1.131 28.423
## 935 1.131 28.423
## 936 1.131 28.423
## 937 NA NA
## 938 NA NA
## 939 NA NA
## 940 NA NA
## 941 NA NA
## 942 NA NA
## 943 NA NA
## 944 NA NA
## 945 NA NA
## 946 NA NA
## 947 NA NA
## 948 NA NA
## 949 40.399 117.358
## 950 40.399 117.358
## 951 40.399 117.358
## 952 40.399 117.358
## 953 40.399 117.358
## 954 40.399 117.358
## 955 NA NA
## 956 NA NA
## 957 NA NA
## 958 NA NA
## 959 NA NA
## 960 NA NA
## 961 NA NA
## 962 NA NA
## 963 NA NA
## 964 NA NA
## 965 NA NA
## 966 NA NA
## 967 NA NA
## 968 NA NA
## 969 NA NA
## 970 NA NA
## 971 NA NA
## 972 NA NA
## 973 NA NA
## 974 NA NA
## 975 NA NA
## 976 NA NA
## 977 NA NA
## 978 NA NA
## 979 NA NA
## 980 NA NA
## 981 NA NA
## 982 NA NA
## 983 NA NA
## 984 NA NA
## 985 NA NA
## 986 NA NA
## 987 NA NA
## 988 NA NA
## 989 NA NA
## 990 NA NA
## 991 NA NA
## 992 NA NA
## 993 NA NA
## 994 NA NA
## 995 NA NA
## 996 NA NA
## 997 NA NA
## 998 NA NA
## 999 NA NA
## 1000 NA NA
## 1001 NA NA
## 1002 NA NA
## 1003 NA NA
## 1004 NA NA
## 1005 NA NA
## 1006 NA NA
## 1007 NA NA
## 1008 NA NA
## 1009 NA NA
## 1010 NA NA
## 1011 NA NA
## 1012 NA NA
## 1013 NA NA
## 1014 NA NA
## 1015 44.734 65.945
## 1016 44.734 65.945
## 1017 44.734 65.945
## 1018 44.734 65.945
## 1019 44.734 65.945
## 1020 44.734 65.945
## 1021 0.713 29.652
## 1022 0.713 29.652
## 1023 0.713 29.652
## 1024 0.713 29.652
## 1025 0.713 29.652
## 1026 0.713 29.652
## 1027 44.316 70.844
## 1028 44.316 70.844
## 1029 44.316 70.844
## 1030 44.316 70.844
## 1031 44.316 70.844
## 1032 44.316 70.844
## 1033 18.726 62.472
## 1034 18.726 62.472
## 1035 18.726 62.472
## 1036 18.726 62.472
## 1037 18.726 62.472
## 1038 18.726 62.472
## 1039 52.781 89.432
## 1040 52.781 89.432
## 1041 52.781 89.432
## 1042 52.781 89.432
## 1043 52.781 89.432
## 1044 52.781 89.432
## 1045 NA NA
## 1046 NA NA
## 1047 NA NA
## 1048 NA NA
## 1049 NA NA
## 1050 NA NA
## 1051 NA NA
## 1052 NA NA
## 1053 NA NA
## 1054 NA NA
## 1055 NA NA
## 1056 NA NA
## 1057 NA NA
## 1058 NA NA
## 1059 NA NA
## 1060 NA NA
## 1061 NA NA
## 1062 NA NA
## 1063 NA NA
## 1064 NA NA
## 1065 NA NA
## 1066 NA NA
## 1067 NA NA
## 1068 NA NA
## 1069 NA NA
## 1070 NA NA
## 1071 NA NA
## 1072 NA NA
## 1073 NA NA
## 1074 NA NA
## 1075 29.054 38.893
## 1076 29.054 38.893
## 1077 29.054 38.893
## 1078 29.054 38.893
## 1079 29.054 38.893
## 1080 29.054 38.893
## 1081 NA NA
## 1082 NA NA
## 1083 NA NA
## 1084 NA NA
## 1085 NA NA
## 1086 NA NA
## 1087 NA NA
## 1088 NA NA
## 1089 NA NA
## 1090 NA NA
## 1091 NA NA
## 1092 NA NA
## 1093 NA NA
## 1094 NA NA
## 1095 NA NA
## 1096 NA NA
## 1097 NA NA
## 1098 NA NA
## 1099 NA NA
## 1100 NA NA
## 1101 NA NA
## 1102 NA NA
## 1103 NA NA
## 1104 NA NA
## 1105 NA NA
## 1106 NA NA
## 1107 NA NA
## 1108 NA NA
## 1109 NA NA
## 1110 NA NA
## 1111 NA NA
## 1112 NA NA
## 1113 NA NA
## 1114 NA NA
## 1115 NA NA
## 1116 NA NA
## 1117 NA NA
## 1118 NA NA
## 1119 NA NA
## 1120 NA NA
## 1121 NA NA
## 1122 NA NA
## 1123 NA NA
## 1124 NA NA
## 1125 NA NA
## 1126 NA NA
## 1127 NA NA
## 1128 NA NA
## 1129 NA NA
## 1130 NA NA
## 1131 NA NA
## 1132 NA NA
## 1133 NA NA
## 1134 NA NA
## 1135 1.682 16.001
## 1136 1.682 16.001
## 1137 1.682 16.001
## 1138 1.682 16.001
## 1139 1.682 16.001
## 1140 1.682 16.001
## 1141 NA NA
## 1142 NA NA
## 1143 NA NA
## 1144 NA NA
## 1145 NA NA
## 1146 NA NA
## 1147 NA NA
## 1148 NA NA
## 1149 NA NA
## 1150 NA NA
## 1151 NA NA
## 1152 NA NA
## 1153 NA NA
## 1154 NA NA
## 1155 NA NA
## 1156 NA NA
## 1157 NA NA
## 1158 NA NA
## 1159 9.495 66.873
## 1160 9.495 66.873
## 1161 9.495 66.873
## 1162 9.495 66.873
## 1163 9.495 66.873
## 1164 9.495 66.873
## 1165 NA NA
## 1166 NA NA
## 1167 NA NA
## 1168 NA NA
## 1169 NA NA
## 1170 NA NA
## 1171 NA NA
## 1172 NA NA
## 1173 NA NA
## 1174 NA NA
## 1175 NA NA
## 1176 NA NA
## 1177 9.605 43.766
## 1178 9.605 43.766
## 1179 9.605 43.766
## 1180 9.605 43.766
## 1181 9.605 43.766
## 1182 9.605 43.766
## 1183 33.287 66.168
## 1184 33.287 66.168
## 1185 33.287 66.168
## 1186 33.287 66.168
## 1187 33.287 66.168
## 1188 33.287 66.168
## 1189 9.569 37.404
## 1190 9.569 37.404
## 1191 9.569 37.404
## 1192 9.569 37.404
## 1193 9.569 37.404
## 1194 9.569 37.404
## 1195 38.813 78.819
## 1196 38.813 78.819
## 1197 38.813 78.819
## 1198 38.813 78.819
## 1199 38.813 78.819
## 1200 38.813 78.819
## 1201 NA NA
## 1202 NA NA
## 1203 NA NA
## 1204 NA NA
## 1205 NA NA
## 1206 NA NA
## 1207 39.861 53.924
## 1208 39.861 53.924
## 1209 39.861 53.924
## 1210 39.861 53.924
## 1211 39.861 53.924
## 1212 39.861 53.924
## 1213 NA NA
## 1214 NA NA
## 1215 NA NA
## 1216 NA NA
## 1217 NA NA
## 1218 NA NA
## 1219 NA NA
## 1220 NA NA
## 1221 NA NA
## 1222 NA NA
## 1223 NA NA
## 1224 NA NA
## 1225 NA NA
## 1226 NA NA
## 1227 NA NA
## 1228 NA NA
## 1229 NA NA
## 1230 NA NA
## 1231 NA NA
## 1232 NA NA
## 1233 NA NA
## 1234 NA NA
## 1235 NA NA
## 1236 NA NA
## 1237 1.597 28.754
## 1238 1.597 28.754
## 1239 1.597 28.754
## 1240 1.597 28.754
## 1241 1.597 28.754
## 1242 1.597 28.754
## 1243 8.186 26.263
## 1244 8.186 26.263
## 1245 8.186 26.263
## 1246 8.186 26.263
## 1247 8.186 26.263
## 1248 8.186 26.263
## 1249 NA NA
## 1250 NA NA
## 1251 NA NA
## 1252 NA NA
## 1253 NA NA
## 1254 NA NA
## 1255 NA NA
## 1256 NA NA
## 1257 NA NA
## 1258 NA NA
## 1259 NA NA
## 1260 NA NA
## 1261 NA NA
## 1262 NA NA
## 1263 NA NA
## 1264 NA NA
## 1265 NA NA
## 1266 NA NA
## 1267 NA NA
## 1268 NA NA
## 1269 NA NA
## 1270 NA NA
## 1271 NA NA
## 1272 NA NA
## 1273 NA NA
## 1274 NA NA
## 1275 NA NA
## 1276 NA NA
## 1277 NA NA
## 1278 NA NA
## 1279 12.996 22.901
## 1280 12.996 22.901
## 1281 12.996 22.901
## 1282 12.996 22.901
## 1283 12.996 22.901
## 1284 12.996 22.901
## 1285 20.977 29.254
## 1286 20.977 29.254
## 1287 20.977 29.254
## 1288 20.977 29.254
## 1289 20.977 29.254
## 1290 20.977 29.254
## 1291 NA NA
## 1292 NA NA
## 1293 NA NA
## 1294 NA NA
## 1295 NA NA
## 1296 NA NA
## 1297 NA NA
## 1298 NA NA
## 1299 NA NA
## 1300 NA NA
## 1301 NA NA
## 1302 NA NA
## 1303 NA NA
## 1304 NA NA
## 1305 NA NA
## 1306 NA NA
## 1307 NA NA
## 1308 NA NA
## 1309 1.615 137.669
## 1310 1.615 137.669
## 1311 1.615 137.669
## 1312 1.615 137.669
## 1313 1.615 137.669
## 1314 1.615 137.669
## 1315 38.045 44.875
## 1316 38.045 44.875
## 1317 38.045 44.875
## 1318 38.045 44.875
## 1319 38.045 44.875
## 1320 38.045 44.875
## 1321 NA NA
## 1322 NA NA
## 1323 NA NA
## 1324 NA NA
## 1325 NA NA
## 1326 NA NA
## 1327 NA NA
## 1328 NA NA
## 1329 NA NA
## 1330 NA NA
## 1331 NA NA
## 1332 NA NA
## 1333 NA NA
## 1334 NA NA
## 1335 NA NA
## 1336 NA NA
## 1337 NA NA
## 1338 NA NA
## 1339 NA NA
## 1340 NA NA
## 1341 NA NA
## 1342 NA NA
## 1343 NA NA
## 1344 NA NA
## 1345 NA NA
## 1346 NA NA
## 1347 NA NA
## 1348 NA NA
## 1349 NA NA
## 1350 NA NA
## 1351 NA NA
## 1352 NA NA
## 1353 NA NA
## 1354 NA NA
## 1355 NA NA
## 1356 NA NA
## 1357 26.928 57.426
## 1358 26.928 57.426
## 1359 26.928 57.426
## 1360 26.928 57.426
## 1361 26.928 57.426
## 1362 26.928 57.426
## 1363 NA NA
## 1364 NA NA
## 1365 NA NA
## 1366 NA NA
## 1367 NA NA
## 1368 NA NA
## 1369 9.122 26.276
## 1370 9.122 26.276
## 1371 9.122 26.276
## 1372 9.122 26.276
## 1373 9.122 26.276
## 1374 9.122 26.276
## 1375 NA NA
## 1376 NA NA
## 1377 NA NA
## 1378 NA NA
## 1379 NA NA
## 1380 NA NA
## 1381 NA NA
## 1382 NA NA
## 1383 NA NA
## 1384 NA NA
## 1385 NA NA
## 1386 NA NA
## 1387 NA NA
## 1388 NA NA
## 1389 NA NA
## 1390 NA NA
## 1391 NA NA
## 1392 NA NA
## 1393 NA NA
## 1394 NA NA
## 1395 NA NA
## 1396 NA NA
## 1397 NA NA
## 1398 NA NA
## 1399 NA NA
## 1400 NA NA
## 1401 NA NA
## 1402 NA NA
## 1403 NA NA
## 1404 NA NA
## 1405 87.989 99.728
## 1406 87.989 99.728
## 1407 87.989 99.728
## 1408 87.989 99.728
## 1409 87.989 99.728
## 1410 87.989 99.728
## 1411 7.260 64.301
## 1412 7.260 64.301
## 1413 7.260 64.301
## 1414 7.260 64.301
## 1415 7.260 64.301
## 1416 7.260 64.301
## 1417 NA NA
## 1418 NA NA
## 1419 NA NA
## 1420 NA NA
## 1421 NA NA
## 1422 NA NA
## 1423 NA NA
## 1424 NA NA
## 1425 NA NA
## 1426 NA NA
## 1427 NA NA
## 1428 NA NA
## 1429 9.402 16.445
## 1430 9.402 16.445
## 1431 9.402 16.445
## 1432 9.402 16.445
## 1433 9.402 16.445
## 1434 9.402 16.445
## 1435 64.261 89.592
## 1436 64.261 89.592
## 1437 64.261 89.592
## 1438 64.261 89.592
## 1439 64.261 89.592
## 1440 64.261 89.592
## 1441 NA NA
## 1442 NA NA
## 1443 NA NA
## 1444 NA NA
## 1445 NA NA
## 1446 NA NA
## 1447 NA NA
## 1448 NA NA
## 1449 NA NA
## 1450 NA NA
## 1451 NA NA
## 1452 NA NA
## 1453 NA NA
## 1454 NA NA
## 1455 NA NA
## 1456 NA NA
## 1457 NA NA
## 1458 NA NA
## 1459 NA NA
## 1460 NA NA
## 1461 NA NA
## 1462 NA NA
## 1463 NA NA
## 1464 NA NA
## 1465 NA NA
## 1466 NA NA
## 1467 NA NA
## 1468 NA NA
## 1469 NA NA
## 1470 NA NA
## 1471 29.420 45.118
## 1472 29.420 45.118
## 1473 29.420 45.118
## 1474 29.420 45.118
## 1475 29.420 45.118
## 1476 29.420 45.118
## 1477 958.845 970.122
## 1478 958.845 970.122
## 1479 958.845 970.122
## 1480 958.845 970.122
## 1481 958.845 970.122
## 1482 958.845 970.122
## 1483 NA NA
## 1484 NA NA
## 1485 NA NA
## 1486 NA NA
## 1487 NA NA
## 1488 NA NA
## 1489 NA NA
## 1490 NA NA
## 1491 NA NA
## 1492 NA NA
## 1493 NA NA
## 1494 NA NA
## 1495 1.291 23.272
## 1496 1.291 23.272
## 1497 1.291 23.272
## 1498 1.291 23.272
## 1499 1.291 23.272
## 1500 1.291 23.272
## 1501 18.901 36.010
## 1502 18.901 36.010
## 1503 18.901 36.010
## 1504 18.901 36.010
## 1505 18.901 36.010
## 1506 18.901 36.010
## 1507 2.990 17.978
## 1508 2.990 17.978
## 1509 2.990 17.978
## 1510 2.990 17.978
## 1511 2.990 17.978
## 1512 2.990 17.978
## 1513 NA NA
## 1514 NA NA
## 1515 NA NA
## 1516 NA NA
## 1517 NA NA
## 1518 NA NA
## 1519 NA NA
## 1520 NA NA
## 1521 NA NA
## 1522 NA NA
## 1523 NA NA
## 1524 NA NA
## 1525 NA NA
## 1526 NA NA
## 1527 NA NA
## 1528 NA NA
## 1529 NA NA
## 1530 NA NA
## 1531 NA NA
## 1532 NA NA
## 1533 NA NA
## 1534 NA NA
## 1535 NA NA
## 1536 NA NA
## 1537 NA NA
## 1538 NA NA
## 1539 NA NA
## 1540 NA NA
## 1541 NA NA
## 1542 NA NA
## 1543 NA NA
## 1544 NA NA
## 1545 NA NA
## 1546 NA NA
## 1547 NA NA
## 1548 NA NA
## 1549 NA NA
## 1550 NA NA
## 1551 NA NA
## 1552 NA NA
## 1553 NA NA
## 1554 NA NA
## 1555 NA NA
## 1556 NA NA
## 1557 NA NA
## 1558 NA NA
## 1559 NA NA
## 1560 NA NA
## 1561 NA NA
## 1562 NA NA
## 1563 NA NA
## 1564 NA NA
## 1565 NA NA
## 1566 NA NA
## 1567 NA NA
## 1568 NA NA
## 1569 NA NA
## 1570 NA NA
## 1571 NA NA
## 1572 NA NA
## 1573 NA NA
## 1574 NA NA
## 1575 NA NA
## 1576 NA NA
## 1577 NA NA
## 1578 NA NA
## 1579 6.509 15.193
## 1580 6.509 15.193
## 1581 6.509 15.193
## 1582 6.509 15.193
## 1583 6.509 15.193
## 1584 6.509 15.193
## 1585 NA NA
## 1586 NA NA
## 1587 NA NA
## 1588 NA NA
## 1589 NA NA
## 1590 NA NA
## 1591 28.638 40.421
## 1592 28.638 40.421
## 1593 28.638 40.421
## 1594 28.638 40.421
## 1595 28.638 40.421
## 1596 28.638 40.421
## 1597 NA NA
## 1598 NA NA
## 1599 NA NA
## 1600 NA NA
## 1601 NA NA
## 1602 NA NA
## 1603 8.387 13.400
## 1604 8.387 13.400
## 1605 8.387 13.400
## 1606 8.387 13.400
## 1607 8.387 13.400
## 1608 8.387 13.400
## 1609 NA NA
## 1610 NA NA
## 1611 NA NA
## 1612 NA NA
## 1613 NA NA
## 1614 NA NA
## 1615 NA NA
## 1616 NA NA
## 1617 NA NA
## 1618 NA NA
## 1619 NA NA
## 1620 NA NA
## 1621 NA NA
## 1622 NA NA
## 1623 NA NA
## 1624 NA NA
## 1625 NA NA
## 1626 NA NA
## 1627 1.858 49.048
## 1628 1.858 49.048
## 1629 1.858 49.048
## 1630 1.858 49.048
## 1631 1.858 49.048
## 1632 1.858 49.048
## 1633 NA NA
## 1634 NA NA
## 1635 NA NA
## 1636 NA NA
## 1637 NA NA
## 1638 NA NA
## 1639 NA NA
## 1640 NA NA
## 1641 NA NA
## 1642 NA NA
## 1643 NA NA
## 1644 NA NA
## 1645 NA NA
## 1646 NA NA
## 1647 NA NA
## 1648 NA NA
## 1649 NA NA
## 1650 NA NA
## 1651 NA NA
## 1652 NA NA
## 1653 NA NA
## 1654 NA NA
## 1655 NA NA
## 1656 NA NA
## 1657 13.893 41.860
## 1658 13.893 41.860
## 1659 13.893 41.860
## 1660 13.893 41.860
## 1661 13.893 41.860
## 1662 13.893 41.860
## 1663 NA NA
## 1664 NA NA
## 1665 NA NA
## 1666 NA NA
## 1667 NA NA
## 1668 NA NA
## 1669 NA NA
## 1670 NA NA
## 1671 NA NA
## 1672 NA NA
## 1673 NA NA
## 1674 NA NA
## 1675 12.680 28.260
## 1676 12.680 28.260
## 1677 12.680 28.260
## 1678 12.680 28.260
## 1679 12.680 28.260
## 1680 12.680 28.260
## 1681 NA NA
## 1682 NA NA
## 1683 NA NA
## 1684 NA NA
## 1685 NA NA
## 1686 NA NA
## 1687 NA NA
## 1688 NA NA
## 1689 NA NA
## 1690 NA NA
## 1691 NA NA
## 1692 NA NA
## 1693 28.121 33.674
## 1694 28.121 33.674
## 1695 28.121 33.674
## 1696 28.121 33.674
## 1697 28.121 33.674
## 1698 28.121 33.674
## 1699 NA NA
## 1700 NA NA
## 1701 NA NA
## 1702 NA NA
## 1703 NA NA
## 1704 NA NA
## 1705 NA NA
## 1706 NA NA
## 1707 NA NA
## 1708 NA NA
## 1709 NA NA
## 1710 NA NA
## 1711 NA NA
## 1712 NA NA
## 1713 NA NA
## 1714 NA NA
## 1715 NA NA
## 1716 NA NA
## 1717 25.714 40.131
## 1718 25.714 40.131
## 1719 25.714 40.131
## 1720 25.714 40.131
## 1721 25.714 40.131
## 1722 25.714 40.131
## 1723 NA NA
## 1724 NA NA
## 1725 NA NA
## 1726 NA NA
## 1727 NA NA
## 1728 NA NA
## 1729 NA NA
## 1730 NA NA
## 1731 NA NA
## 1732 NA NA
## 1733 NA NA
## 1734 NA NA
## 1735 3.433 38.182
## 1736 3.433 38.182
## 1737 3.433 38.182
## 1738 3.433 38.182
## 1739 3.433 38.182
## 1740 3.433 38.182
## 1741 NA NA
## 1742 NA NA
## 1743 NA NA
## 1744 NA NA
## 1745 NA NA
## 1746 NA NA
## 1747 NA NA
## 1748 NA NA
## 1749 NA NA
## 1750 NA NA
## 1751 NA NA
## 1752 NA NA
## 1753 NA NA
## 1754 NA NA
## 1755 NA NA
## 1756 NA NA
## 1757 NA NA
## 1758 NA NA
## 1759 NA NA
## 1760 NA NA
## 1761 NA NA
## 1762 NA NA
## 1763 NA NA
## 1764 NA NA
## 1765 24.030 41.571
## 1766 24.030 41.571
## 1767 24.030 41.571
## 1768 24.030 41.571
## 1769 24.030 41.571
## 1770 24.030 41.571
## 1771 NA NA
## 1772 NA NA
## 1773 NA NA
## 1774 NA NA
## 1775 NA NA
## 1776 NA NA
## 1777 8.102 10.622
## 1778 8.102 10.622
## 1779 8.102 10.622
## 1780 8.102 10.622
## 1781 8.102 10.622
## 1782 8.102 10.622
## 1783 NA NA
## 1784 NA NA
## 1785 NA NA
## 1786 NA NA
## 1787 NA NA
## 1788 NA NA
## 1789 NA NA
## 1790 NA NA
## 1791 NA NA
## 1792 NA NA
## 1793 NA NA
## 1794 NA NA
## 1795 2.310 22.989
## 1796 2.310 22.989
## 1797 2.310 22.989
## 1798 2.310 22.989
## 1799 2.310 22.989
## 1800 2.310 22.989
## 1801 NA NA
## 1802 NA NA
## 1803 NA NA
## 1804 NA NA
## 1805 NA NA
## 1806 NA NA
## 1807 NA NA
## 1808 NA NA
## 1809 NA NA
## 1810 NA NA
## 1811 NA NA
## 1812 NA NA
## 1813 NA NA
## 1814 NA NA
## 1815 NA NA
## 1816 NA NA
## 1817 NA NA
## 1818 NA NA
## 1819 NA NA
## 1820 NA NA
## 1821 NA NA
## 1822 NA NA
## 1823 NA NA
## 1824 NA NA
## 1825 7.434 35.009
## 1826 7.434 35.009
## 1827 7.434 35.009
## 1828 7.434 35.009
## 1829 7.434 35.009
## 1830 7.434 35.009
## 1831 NA NA
## 1832 NA NA
## 1833 NA NA
## 1834 NA NA
## 1835 NA NA
## 1836 NA NA
## 1837 NA NA
## 1838 NA NA
## 1839 NA NA
## 1840 NA NA
## 1841 NA NA
## 1842 NA NA
## 1843 5.181 17.678
## 1844 5.181 17.678
## 1845 5.181 17.678
## 1846 5.181 17.678
## 1847 5.181 17.678
## 1848 5.181 17.678
## 1849 NA NA
## 1850 NA NA
## 1851 NA NA
## 1852 NA NA
## 1853 NA NA
## 1854 NA NA
## 1855 NA NA
## 1856 NA NA
## 1857 NA NA
## 1858 NA NA
## 1859 NA NA
## 1860 NA NA
## 1861 7.708 92.587
## 1862 7.708 92.587
## 1863 7.708 92.587
## 1864 7.708 92.587
## 1865 7.708 92.587
## 1866 7.708 92.587
## 1867 NA NA
## 1868 NA NA
## 1869 NA NA
## 1870 NA NA
## 1871 NA NA
## 1872 NA NA
## 1873 NA NA
## 1874 NA NA
## 1875 NA NA
## 1876 NA NA
## 1877 NA NA
## 1878 NA NA
## 1879 NA NA
## 1880 NA NA
## 1881 NA NA
## 1882 NA NA
## 1883 NA NA
## 1884 NA NA
## 1885 NA NA
## 1886 NA NA
## 1887 NA NA
## 1888 NA NA
## 1889 NA NA
## 1890 NA NA
## 1891 NA NA
## 1892 NA NA
## 1893 NA NA
## 1894 NA NA
## 1895 NA NA
## 1896 NA NA
## 1897 26.801 52.201
## 1898 26.801 52.201
## 1899 26.801 52.201
## 1900 26.801 52.201
## 1901 26.801 52.201
## 1902 26.801 52.201
## 1903 61.667 134.871
## 1904 61.667 134.871
## 1905 61.667 134.871
## 1906 61.667 134.871
## 1907 61.667 134.871
## 1908 61.667 134.871
## 1909 NA NA
## 1910 NA NA
## 1911 NA NA
## 1912 NA NA
## 1913 NA NA
## 1914 NA NA
## 1915 14.330 49.130
## 1916 14.330 49.130
## 1917 14.330 49.130
## 1918 14.330 49.130
## 1919 14.330 49.130
## 1920 14.330 49.130
## 1921 7.799 18.725
## 1922 7.799 18.725
## 1923 7.799 18.725
## 1924 7.799 18.725
## 1925 7.799 18.725
## 1926 7.799 18.725
## 1927 NA NA
## 1928 NA NA
## 1929 NA NA
## 1930 NA NA
## 1931 NA NA
## 1932 NA NA
## 1933 NA NA
## 1934 NA NA
## 1935 NA NA
## 1936 NA NA
## 1937 NA NA
## 1938 NA NA
## 1939 NA NA
## 1940 NA NA
## 1941 NA NA
## 1942 NA NA
## 1943 NA NA
## 1944 NA NA
## 1945 NA NA
## 1946 NA NA
## 1947 NA NA
## 1948 NA NA
## 1949 NA NA
## 1950 NA NA
## 1951 NA NA
## 1952 NA NA
## 1953 NA NA
## 1954 NA NA
## 1955 NA NA
## 1956 NA NA
## 1957 NA NA
## 1958 NA NA
## 1959 NA NA
## 1960 NA NA
## 1961 NA NA
## 1962 NA NA
## 1963 NA NA
## 1964 NA NA
## 1965 NA NA
## 1966 NA NA
## 1967 NA NA
## 1968 NA NA
## 1969 NA NA
## 1970 NA NA
## 1971 NA NA
## 1972 NA NA
## 1973 NA NA
## 1974 NA NA
## 1975 10.877 25.600
## 1976 10.877 25.600
## 1977 10.877 25.600
## 1978 10.877 25.600
## 1979 10.877 25.600
## 1980 10.877 25.600
## 1981 9.067 48.173
## 1982 9.067 48.173
## 1983 9.067 48.173
## 1984 9.067 48.173
## 1985 9.067 48.173
## 1986 9.067 48.173
## 1987 NA NA
## 1988 NA NA
## 1989 NA NA
## 1990 NA NA
## 1991 NA NA
## 1992 NA NA
## 1993 NA NA
## 1994 NA NA
## 1995 NA NA
## 1996 NA NA
## 1997 NA NA
## 1998 NA NA
## 1999 NA NA
## 2000 NA NA
## 2001 NA NA
## 2002 NA NA
## 2003 NA NA
## 2004 NA NA
## 2005 NA NA
## 2006 NA NA
## 2007 NA NA
## 2008 NA NA
## 2009 NA NA
## 2010 NA NA
## 2011 4.984 11.265
## 2012 4.984 11.265
## 2013 4.984 11.265
## 2014 4.984 11.265
## 2015 4.984 11.265
## 2016 4.984 11.265
## 2017 20.428 30.800
## 2018 20.428 30.800
## 2019 20.428 30.800
## 2020 20.428 30.800
## 2021 20.428 30.800
## 2022 20.428 30.800
## 2023 NA NA
## 2024 NA NA
## 2025 NA NA
## 2026 NA NA
## 2027 NA NA
## 2028 NA NA
## 2029 219.760 223.857
## 2030 219.760 223.857
## 2031 219.760 223.857
## 2032 219.760 223.857
## 2033 219.760 223.857
## 2034 219.760 223.857
## 2035 NA NA
## 2036 NA NA
## 2037 NA NA
## 2038 NA NA
## 2039 NA NA
## 2040 NA NA
## 2041 17.022 40.296
## 2042 17.022 40.296
## 2043 17.022 40.296
## 2044 17.022 40.296
## 2045 17.022 40.296
## 2046 17.022 40.296
## 2047 NA NA
## 2048 NA NA
## 2049 NA NA
## 2050 NA NA
## 2051 NA NA
## 2052 NA NA
## 2053 NA NA
## 2054 NA NA
## 2055 NA NA
## 2056 NA NA
## 2057 NA NA
## 2058 NA NA
## 2059 NA NA
## 2060 NA NA
## 2061 NA NA
## 2062 NA NA
## 2063 NA NA
## 2064 NA NA
## 2065 NA NA
## 2066 NA NA
## 2067 NA NA
## 2068 NA NA
## 2069 NA NA
## 2070 NA NA
## 2071 NA NA
## 2072 NA NA
## 2073 NA NA
## 2074 NA NA
## 2075 NA NA
## 2076 NA NA
## 2077 NA NA
## 2078 NA NA
## 2079 NA NA
## 2080 NA NA
## 2081 NA NA
## 2082 NA NA
## 2083 14.063 102.535
## 2084 14.063 102.535
## 2085 14.063 102.535
## 2086 14.063 102.535
## 2087 14.063 102.535
## 2088 14.063 102.535
## 2089 11.401 34.393
## 2090 11.401 34.393
## 2091 11.401 34.393
## 2092 11.401 34.393
## 2093 11.401 34.393
## 2094 11.401 34.393
## 2095 NA NA
## 2096 NA NA
## 2097 NA NA
## 2098 NA NA
## 2099 NA NA
## 2100 NA NA
## 2101 NA NA
## 2102 NA NA
## 2103 NA NA
## 2104 NA NA
## 2105 NA NA
## 2106 NA NA
## 2107 NA NA
## 2108 NA NA
## 2109 NA NA
## 2110 NA NA
## 2111 NA NA
## 2112 NA NA
## 2113 NA NA
## 2114 NA NA
## 2115 NA NA
## 2116 NA NA
## 2117 NA NA
## 2118 NA NA
## 2119 NA NA
## 2120 NA NA
## 2121 NA NA
## 2122 NA NA
## 2123 NA NA
## 2124 NA NA
## 2125 NA NA
## 2126 NA NA
## 2127 NA NA
## 2128 NA NA
## 2129 NA NA
## 2130 NA NA
## 2131 3.708 49.928
## 2132 3.708 49.928
## 2133 3.708 49.928
## 2134 3.708 49.928
## 2135 3.708 49.928
## 2136 3.708 49.928
## 2137 NA NA
## 2138 NA NA
## 2139 NA NA
## 2140 NA NA
## 2141 NA NA
## 2142 NA NA
## 2143 NA NA
## 2144 NA NA
## 2145 NA NA
## 2146 NA NA
## 2147 NA NA
## 2148 NA NA
## 2149 NA NA
## 2150 NA NA
## 2151 NA NA
## 2152 NA NA
## 2153 NA NA
## 2154 NA NA
## 2155 NA NA
## 2156 NA NA
## 2157 NA NA
## 2158 NA NA
## 2159 NA NA
## 2160 NA NA
## 2161 NA NA
## 2162 NA NA
## 2163 NA NA
## 2164 NA NA
## 2165 NA NA
## 2166 NA NA
## 2167 NA NA
## 2168 NA NA
## 2169 NA NA
## 2170 NA NA
## 2171 NA NA
## 2172 NA NA
## 2173 NA NA
## 2174 NA NA
## 2175 NA NA
## 2176 NA NA
## 2177 NA NA
## 2178 NA NA
## 2179 NA NA
## 2180 NA NA
## 2181 NA NA
## 2182 NA NA
## 2183 NA NA
## 2184 NA NA
## 2185 NA NA
## 2186 NA NA
## 2187 NA NA
## 2188 NA NA
## 2189 NA NA
## 2190 NA NA
## 2191 NA NA
## 2192 NA NA
## 2193 NA NA
## 2194 NA NA
## 2195 NA NA
## 2196 NA NA
## 2197 NA NA
## 2198 NA NA
## 2199 NA NA
## 2200 NA NA
## 2201 NA NA
## 2202 NA NA
## 2203 NA NA
## 2204 NA NA
## 2205 NA NA
## 2206 NA NA
## 2207 NA NA
## 2208 NA NA
## 2209 NA NA
## 2210 NA NA
## 2211 NA NA
## 2212 NA NA
## 2213 NA NA
## 2214 NA NA
## 2215 NA NA
## 2216 NA NA
## 2217 NA NA
## 2218 NA NA
## 2219 NA NA
## 2220 NA NA
## 2221 NA NA
## 2222 NA NA
## 2223 NA NA
## 2224 NA NA
## 2225 NA NA
## 2226 NA NA
## 2227 NA NA
## 2228 NA NA
## 2229 NA NA
## 2230 NA NA
## 2231 NA NA
## 2232 NA NA
## 2233 NA NA
## 2234 NA NA
## 2235 NA NA
## 2236 NA NA
## 2237 NA NA
## 2238 NA NA
## 2239 NA NA
## 2240 NA NA
## 2241 NA NA
## 2242 NA NA
## 2243 NA NA
## 2244 NA NA
## 2245 NA NA
## 2246 NA NA
## 2247 NA NA
## 2248 NA NA
## 2249 NA NA
## 2250 NA NA
## 2251 5.491 11.448
## 2252 5.491 11.448
## 2253 5.491 11.448
## 2254 5.491 11.448
## 2255 5.491 11.448
## 2256 5.491 11.448
## 2257 12.347 21.563
## 2258 12.347 21.563
## 2259 12.347 21.563
## 2260 12.347 21.563
## 2261 12.347 21.563
## 2262 12.347 21.563
## 2263 13.191 27.420
## 2264 13.191 27.420
## 2265 13.191 27.420
## 2266 13.191 27.420
## 2267 13.191 27.420
## 2268 13.191 27.420
## 2269 NA NA
## 2270 NA NA
## 2271 NA NA
## 2272 NA NA
## 2273 NA NA
## 2274 NA NA
## 2275 9.609 16.128
## 2276 9.609 16.128
## 2277 9.609 16.128
## 2278 9.609 16.128
## 2279 9.609 16.128
## 2280 9.609 16.128
## 2281 NA NA
## 2282 NA NA
## 2283 NA NA
## 2284 NA NA
## 2285 NA NA
## 2286 NA NA
## 2287 NA NA
## 2288 NA NA
## 2289 NA NA
## 2290 NA NA
## 2291 NA NA
## 2292 NA NA
## 2293 30.636 87.785
## 2294 30.636 87.785
## 2295 30.636 87.785
## 2296 30.636 87.785
## 2297 30.636 87.785
## 2298 30.636 87.785
## 2299 1.736 54.188
## 2300 1.736 54.188
## 2301 1.736 54.188
## 2302 1.736 54.188
## 2303 1.736 54.188
## 2304 1.736 54.188
## 2305 74.323 78.706
## 2306 74.323 78.706
## 2307 74.323 78.706
## 2308 74.323 78.706
## 2309 74.323 78.706
## 2310 74.323 78.706
## 2311 NA NA
## 2312 NA NA
## 2313 NA NA
## 2314 NA NA
## 2315 NA NA
## 2316 NA NA
## 2317 NA NA
## 2318 NA NA
## 2319 NA NA
## 2320 NA NA
## 2321 NA NA
## 2322 NA NA
## 2323 NA NA
## 2324 NA NA
## 2325 NA NA
## 2326 NA NA
## 2327 NA NA
## 2328 NA NA
## 2329 NA NA
## 2330 NA NA
## 2331 NA NA
## 2332 NA NA
## 2333 NA NA
## 2334 NA NA
## 2335 NA NA
## 2336 NA NA
## 2337 NA NA
## 2338 NA NA
## 2339 NA NA
## 2340 NA NA
## 2341 NA NA
## 2342 NA NA
## 2343 NA NA
## 2344 NA NA
## 2345 NA NA
## 2346 NA NA
## 2347 NA NA
## 2348 NA NA
## 2349 NA NA
## 2350 NA NA
## 2351 NA NA
## 2352 NA NA
## 2353 17.534 25.428
## 2354 17.534 25.428
## 2355 17.534 25.428
## 2356 17.534 25.428
## 2357 17.534 25.428
## 2358 17.534 25.428
## 2359 NA NA
## 2360 NA NA
## 2361 NA NA
## 2362 NA NA
## 2363 NA NA
## 2364 NA NA
## 2365 9.360 20.837
## 2366 9.360 20.837
## 2367 9.360 20.837
## 2368 9.360 20.837
## 2369 9.360 20.837
## 2370 9.360 20.837
## 2371 NA NA
## 2372 NA NA
## 2373 NA NA
## 2374 NA NA
## 2375 NA NA
## 2376 NA NA
## 2377 NA NA
## 2378 NA NA
## 2379 NA NA
## 2380 NA NA
## 2381 NA NA
## 2382 NA NA
## 2383 9.223 18.221
## 2384 9.223 18.221
## 2385 9.223 18.221
## 2386 9.223 18.221
## 2387 9.223 18.221
## 2388 9.223 18.221
## 2389 21.422 62.931
## 2390 21.422 62.931
## 2391 21.422 62.931
## 2392 21.422 62.931
## 2393 21.422 62.931
## 2394 21.422 62.931
## 2395 NA NA
## 2396 NA NA
## 2397 NA NA
## 2398 NA NA
## 2399 NA NA
## 2400 NA NA
## 2401 NA NA
## 2402 NA NA
## 2403 NA NA
## 2404 NA NA
## 2405 NA NA
## 2406 NA NA
## 2407 NA NA
## 2408 NA NA
## 2409 NA NA
## 2410 NA NA
## 2411 NA NA
## 2412 NA NA
## 2413 9.226 12.637
## 2414 9.226 12.637
## 2415 9.226 12.637
## 2416 9.226 12.637
## 2417 9.226 12.637
## 2418 9.226 12.637
## 2419 NA NA
## 2420 NA NA
## 2421 NA NA
## 2422 NA NA
## 2423 NA NA
## 2424 NA NA
## 2425 27.568 46.811
## 2426 27.568 46.811
## 2427 27.568 46.811
## 2428 27.568 46.811
## 2429 27.568 46.811
## 2430 27.568 46.811
## 2431 NA NA
## 2432 NA NA
## 2433 NA NA
## 2434 NA NA
## 2435 NA NA
## 2436 NA NA
## 2437 NA NA
## 2438 NA NA
## 2439 NA NA
## 2440 NA NA
## 2441 NA NA
## 2442 NA NA
## 2443 4.156 9.859
## 2444 4.156 9.859
## 2445 4.156 9.859
## 2446 4.156 9.859
## 2447 4.156 9.859
## 2448 4.156 9.859
## 2449 NA NA
## 2450 NA NA
## 2451 NA NA
## 2452 NA NA
## 2453 NA NA
## 2454 NA NA
## 2455 NA NA
## 2456 NA NA
## 2457 NA NA
## 2458 NA NA
## 2459 NA NA
## 2460 NA NA
## 2461 8.470 18.170
## 2462 8.470 18.170
## 2463 8.470 18.170
## 2464 8.470 18.170
## 2465 8.470 18.170
## 2466 8.470 18.170
## 2467 NA NA
## 2468 NA NA
## 2469 NA NA
## 2470 NA NA
## 2471 NA NA
## 2472 NA NA
## 2473 NA NA
## 2474 NA NA
## 2475 NA NA
## 2476 NA NA
## 2477 NA NA
## 2478 NA NA
## 2479 NA NA
## 2480 NA NA
## 2481 NA NA
## 2482 NA NA
## 2483 NA NA
## 2484 NA NA
## 2485 NA NA
## 2486 NA NA
## 2487 NA NA
## 2488 NA NA
## 2489 NA NA
## 2490 NA NA
## 2491 NA NA
## 2492 NA NA
## 2493 NA NA
## 2494 NA NA
## 2495 NA NA
## 2496 NA NA
## 2497 NA NA
## 2498 NA NA
## 2499 NA NA
## 2500 NA NA
## 2501 NA NA
## 2502 NA NA
## 2503 NA NA
## 2504 NA NA
## 2505 NA NA
## 2506 NA NA
## 2507 NA NA
## 2508 NA NA
## 2509 NA NA
## 2510 NA NA
## 2511 NA NA
## 2512 NA NA
## 2513 NA NA
## 2514 NA NA
## 2515 NA NA
## 2516 NA NA
## 2517 NA NA
## 2518 NA NA
## 2519 NA NA
## 2520 NA NA
## 2521 NA NA
## 2522 NA NA
## 2523 NA NA
## 2524 NA NA
## 2525 NA NA
## 2526 NA NA
## 2527 NA NA
## 2528 NA NA
## 2529 NA NA
## 2530 NA NA
## 2531 NA NA
## 2532 NA NA
## 2533 NA NA
## 2534 NA NA
## 2535 NA NA
## 2536 NA NA
## 2537 NA NA
## 2538 NA NA
## 2539 NA NA
## 2540 NA NA
## 2541 NA NA
## 2542 NA NA
## 2543 NA NA
## 2544 NA NA
## 2545 NA NA
## 2546 NA NA
## 2547 NA NA
## 2548 NA NA
## 2549 NA NA
## 2550 NA NA
## 2551 14.813 22.226
## 2552 14.813 22.226
## 2553 14.813 22.226
## 2554 14.813 22.226
## 2555 14.813 22.226
## 2556 14.813 22.226
## 2557 NA NA
## 2558 NA NA
## 2559 NA NA
## 2560 NA NA
## 2561 NA NA
## 2562 NA NA
## 2563 NA NA
## 2564 NA NA
## 2565 NA NA
## 2566 NA NA
## 2567 NA NA
## 2568 NA NA
## 2569 NA NA
## 2570 NA NA
## 2571 NA NA
## 2572 NA NA
## 2573 NA NA
## 2574 NA NA
## 2575 NA NA
## 2576 NA NA
## 2577 NA NA
## 2578 NA NA
## 2579 NA NA
## 2580 NA NA
## 2581 NA NA
## 2582 NA NA
## 2583 NA NA
## 2584 NA NA
## 2585 NA NA
## 2586 NA NA
## 2587 NA NA
## 2588 NA NA
## 2589 NA NA
## 2590 NA NA
## 2591 NA NA
## 2592 NA NA
## 2593 5.812 29.979
## 2594 5.812 29.979
## 2595 5.812 29.979
## 2596 5.812 29.979
## 2597 5.812 29.979
## 2598 5.812 29.979
## 2599 NA NA
## 2600 NA NA
## 2601 NA NA
## 2602 NA NA
## 2603 NA NA
## 2604 NA NA
## 2605 NA NA
## 2606 NA NA
## 2607 NA NA
## 2608 NA NA
## 2609 NA NA
## 2610 NA NA
## 2611 NA NA
## 2612 NA NA
## 2613 NA NA
## 2614 NA NA
## 2615 NA NA
## 2616 NA NA
## 2617 NA NA
## 2618 NA NA
## 2619 NA NA
## 2620 NA NA
## 2621 NA NA
## 2622 NA NA
## 2623 NA NA
## 2624 NA NA
## 2625 NA NA
## 2626 NA NA
## 2627 NA NA
## 2628 NA NA
## 2629 5.078 22.462
## 2630 5.078 22.462
## 2631 5.078 22.462
## 2632 5.078 22.462
## 2633 5.078 22.462
## 2634 5.078 22.462
## 2635 NA NA
## 2636 NA NA
## 2637 NA NA
## 2638 NA NA
## 2639 NA NA
## 2640 NA NA
## 2641 NA NA
## 2642 NA NA
## 2643 NA NA
## 2644 NA NA
## 2645 NA NA
## 2646 NA NA
## 2647 15.768 22.658
## 2648 15.768 22.658
## 2649 15.768 22.658
## 2650 15.768 22.658
## 2651 15.768 22.658
## 2652 15.768 22.658
## 2653 NA NA
## 2654 NA NA
## 2655 NA NA
## 2656 NA NA
## 2657 NA NA
## 2658 NA NA
## 2659 NA NA
## 2660 NA NA
## 2661 NA NA
## 2662 NA NA
## 2663 NA NA
## 2664 NA NA
## 2665 NA NA
## 2666 NA NA
## 2667 NA NA
## 2668 NA NA
## 2669 NA NA
## 2670 NA NA
## 2671 NA NA
## 2672 NA NA
## 2673 NA NA
## 2674 NA NA
## 2675 NA NA
## 2676 NA NA
## 2677 NA NA
## 2678 NA NA
## 2679 NA NA
## 2680 NA NA
## 2681 NA NA
## 2682 NA NA
## 2683 NA NA
## 2684 NA NA
## 2685 NA NA
## 2686 NA NA
## 2687 NA NA
## 2688 NA NA
## 2689 NA NA
## 2690 NA NA
## 2691 NA NA
## 2692 NA NA
## 2693 NA NA
## 2694 NA NA
## 2695 NA NA
## 2696 NA NA
## 2697 NA NA
## 2698 NA NA
## 2699 NA NA
## 2700 NA NA
## 2701 NA NA
## 2702 NA NA
## 2703 NA NA
## 2704 NA NA
## 2705 NA NA
## 2706 NA NA
## 2707 NA NA
## 2708 NA NA
## 2709 NA NA
## 2710 NA NA
## 2711 NA NA
## 2712 NA NA
## 2713 NA NA
## 2714 NA NA
## 2715 NA NA
## 2716 NA NA
## 2717 NA NA
## 2718 NA NA
## 2719 NA NA
## 2720 NA NA
## 2721 NA NA
## 2722 NA NA
## 2723 NA NA
## 2724 NA NA
## 2725 NA NA
## 2726 NA NA
## 2727 NA NA
## 2728 NA NA
## 2729 NA NA
## 2730 NA NA
## 2731 NA NA
## 2732 NA NA
## 2733 NA NA
## 2734 NA NA
## 2735 NA NA
## 2736 NA NA
## 2737 20.088 38.141
## 2738 20.088 38.141
## 2739 20.088 38.141
## 2740 20.088 38.141
## 2741 20.088 38.141
## 2742 20.088 38.141
## 2743 NA NA
## 2744 NA NA
## 2745 NA NA
## 2746 NA NA
## 2747 NA NA
## 2748 NA NA
## 2749 41.935 52.300
## 2750 41.935 52.300
## 2751 41.935 52.300
## 2752 41.935 52.300
## 2753 41.935 52.300
## 2754 41.935 52.300
## 2755 NA NA
## 2756 NA NA
## 2757 NA NA
## 2758 NA NA
## 2759 NA NA
## 2760 NA NA
## 2761 NA NA
## 2762 NA NA
## 2763 NA NA
## 2764 NA NA
## 2765 NA NA
## 2766 NA NA
## 2767 26.701 39.046
## 2768 26.701 39.046
## 2769 26.701 39.046
## 2770 26.701 39.046
## 2771 26.701 39.046
## 2772 26.701 39.046
## 2773 310.862 348.774
## 2774 310.862 348.774
## 2775 310.862 348.774
## 2776 310.862 348.774
## 2777 310.862 348.774
## 2778 310.862 348.774
## 2779 NA NA
## 2780 NA NA
## 2781 NA NA
## 2782 NA NA
## 2783 NA NA
## 2784 NA NA
## 2785 5.875 25.883
## 2786 5.875 25.883
## 2787 5.875 25.883
## 2788 5.875 25.883
## 2789 5.875 25.883
## 2790 5.875 25.883
## 2791 NA NA
## 2792 NA NA
## 2793 NA NA
## 2794 NA NA
## 2795 NA NA
## 2796 NA NA
## 2797 NA NA
## 2798 NA NA
## 2799 NA NA
## 2800 NA NA
## 2801 NA NA
## 2802 NA NA
## 2803 NA NA
## 2804 NA NA
## 2805 NA NA
## 2806 NA NA
## 2807 NA NA
## 2808 NA NA
## 2809 NA NA
## 2810 NA NA
## 2811 NA NA
## 2812 NA NA
## 2813 NA NA
## 2814 NA NA
## 2815 NA NA
## 2816 NA NA
## 2817 NA NA
## 2818 NA NA
## 2819 NA NA
## 2820 NA NA
## 2821 4.066 8.488
## 2822 4.066 8.488
## 2823 4.066 8.488
## 2824 4.066 8.488
## 2825 4.066 8.488
## 2826 4.066 8.488
## 2827 14.971 23.785
## 2828 14.971 23.785
## 2829 14.971 23.785
## 2830 14.971 23.785
## 2831 14.971 23.785
## 2832 14.971 23.785
## 2833 NA NA
## 2834 NA NA
## 2835 NA NA
## 2836 NA NA
## 2837 NA NA
## 2838 NA NA
## 2839 NA NA
## 2840 NA NA
## 2841 NA NA
## 2842 NA NA
## 2843 NA NA
## 2844 NA NA
## 2845 NA NA
## 2846 NA NA
## 2847 NA NA
## 2848 NA NA
## 2849 NA NA
## 2850 NA NA
## 2851 NA NA
## 2852 NA NA
## 2853 NA NA
## 2854 NA NA
## 2855 NA NA
## 2856 NA NA
## 2857 NA NA
## 2858 NA NA
## 2859 NA NA
## 2860 NA NA
## 2861 NA NA
## 2862 NA NA
## 2863 NA NA
## 2864 NA NA
## 2865 NA NA
## 2866 NA NA
## 2867 NA NA
## 2868 NA NA
## 2869 18.879 32.734
## 2870 18.879 32.734
## 2871 18.879 32.734
## 2872 18.879 32.734
## 2873 18.879 32.734
## 2874 18.879 32.734
## 2875 NA NA
## 2876 NA NA
## 2877 NA NA
## 2878 NA NA
## 2879 NA NA
## 2880 NA NA
## 2881 11.346 19.915
## 2882 11.346 19.915
## 2883 11.346 19.915
## 2884 11.346 19.915
## 2885 11.346 19.915
## 2886 11.346 19.915
## 2887 NA NA
## 2888 NA NA
## 2889 NA NA
## 2890 NA NA
## 2891 NA NA
## 2892 NA NA
## 2893 NA NA
## 2894 NA NA
## 2895 NA NA
## 2896 NA NA
## 2897 NA NA
## 2898 NA NA
## 2899 NA NA
## 2900 NA NA
## 2901 NA NA
## 2902 NA NA
## 2903 NA NA
## 2904 NA NA
## 2905 NA NA
## 2906 NA NA
## 2907 NA NA
## 2908 NA NA
## 2909 NA NA
## 2910 NA NA
## 2911 10.378 46.423
## 2912 10.378 46.423
## 2913 10.378 46.423
## 2914 10.378 46.423
## 2915 10.378 46.423
## 2916 10.378 46.423
## 2917 NA NA
## 2918 NA NA
## 2919 NA NA
## 2920 NA NA
## 2921 NA NA
## 2922 NA NA
## 2923 NA NA
## 2924 NA NA
## 2925 NA NA
## 2926 NA NA
## 2927 NA NA
## 2928 NA NA
## 2929 NA NA
## 2930 NA NA
## 2931 NA NA
## 2932 NA NA
## 2933 NA NA
## 2934 NA NA
## 2935 18.656 26.858
## 2936 18.656 26.858
## 2937 18.656 26.858
## 2938 18.656 26.858
## 2939 18.656 26.858
## 2940 18.656 26.858
## 2941 NA NA
## 2942 NA NA
## 2943 NA NA
## 2944 NA NA
## 2945 NA NA
## 2946 NA NA
## 2947 12.016 46.622
## 2948 12.016 46.622
## 2949 12.016 46.622
## 2950 12.016 46.622
## 2951 12.016 46.622
## 2952 12.016 46.622
## 2953 NA NA
## 2954 NA NA
## 2955 NA NA
## 2956 NA NA
## 2957 NA NA
## 2958 NA NA
## 2959 NA NA
## 2960 NA NA
## 2961 NA NA
## 2962 NA NA
## 2963 NA NA
## 2964 NA NA
## 2965 12.901 33.129
## 2966 12.901 33.129
## 2967 12.901 33.129
## 2968 12.901 33.129
## 2969 12.901 33.129
## 2970 12.901 33.129
## 2971 NA NA
## 2972 NA NA
## 2973 NA NA
## 2974 NA NA
## 2975 NA NA
## 2976 NA NA
## 2977 NA NA
## 2978 NA NA
## 2979 NA NA
## 2980 NA NA
## 2981 NA NA
## 2982 NA NA
## 2983 NA NA
## 2984 NA NA
## 2985 NA NA
## 2986 NA NA
## 2987 NA NA
## 2988 NA NA
## 2989 NA NA
## 2990 NA NA
## 2991 NA NA
## 2992 NA NA
## 2993 NA NA
## 2994 NA NA
## 2995 NA NA
## 2996 NA NA
## 2997 NA NA
## 2998 NA NA
## 2999 NA NA
## 3000 NA NA
## 3001 NA NA
## 3002 NA NA
## 3003 NA NA
## 3004 NA NA
## 3005 NA NA
## 3006 NA NA
## 3007 NA NA
## 3008 NA NA
## 3009 NA NA
## 3010 NA NA
## 3011 NA NA
## 3012 NA NA
## 3013 NA NA
## 3014 NA NA
## 3015 NA NA
## 3016 NA NA
## 3017 NA NA
## 3018 NA NA
## 3019 NA NA
## 3020 NA NA
## 3021 NA NA
## 3022 NA NA
## 3023 NA NA
## 3024 NA NA
## 3025 NA NA
## 3026 NA NA
## 3027 NA NA
## 3028 NA NA
## 3029 NA NA
## 3030 NA NA
## 3031 NA NA
## 3032 NA NA
## 3033 NA NA
## 3034 NA NA
## 3035 NA NA
## 3036 NA NA
## 3037 NA NA
## 3038 NA NA
## 3039 NA NA
## 3040 NA NA
## 3041 NA NA
## 3042 NA NA
## 3043 NA NA
## 3044 NA NA
## 3045 NA NA
## 3046 NA NA
## 3047 NA NA
## 3048 NA NA
## 3049 28.771 42.652
## 3050 28.771 42.652
## 3051 28.771 42.652
## 3052 28.771 42.652
## 3053 28.771 42.652
## 3054 28.771 42.652
## 3055 NA NA
## 3056 NA NA
## 3057 NA NA
## 3058 NA NA
## 3059 NA NA
## 3060 NA NA
## 3061 18.190 31.428
## 3062 18.190 31.428
## 3063 18.190 31.428
## 3064 18.190 31.428
## 3065 18.190 31.428
## 3066 18.190 31.428
## 3067 NA NA
## 3068 NA NA
## 3069 NA NA
## 3070 NA NA
## 3071 NA NA
## 3072 NA NA
## 3073 NA NA
## 3074 NA NA
## 3075 NA NA
## 3076 NA NA
## 3077 NA NA
## 3078 NA NA
## 3079 NA NA
## 3080 NA NA
## 3081 NA NA
## 3082 NA NA
## 3083 NA NA
## 3084 NA NA
## 3085 7.383 27.531
## 3086 7.383 27.531
## 3087 7.383 27.531
## 3088 7.383 27.531
## 3089 7.383 27.531
## 3090 7.383 27.531
## 3091 NA NA
## 3092 NA NA
## 3093 NA NA
## 3094 NA NA
## 3095 NA NA
## 3096 NA NA
## 3097 NA NA
## 3098 NA NA
## 3099 NA NA
## 3100 NA NA
## 3101 NA NA
## 3102 NA NA
## 3103 NA NA
## 3104 NA NA
## 3105 NA NA
## 3106 NA NA
## 3107 NA NA
## 3108 NA NA
## 3109 NA NA
## 3110 NA NA
## 3111 NA NA
## 3112 NA NA
## 3113 NA NA
## 3114 NA NA
## 3115 32.154 51.094
## 3116 32.154 51.094
## 3117 32.154 51.094
## 3118 32.154 51.094
## 3119 32.154 51.094
## 3120 32.154 51.094
## 3121 NA NA
## 3122 NA NA
## 3123 NA NA
## 3124 NA NA
## 3125 NA NA
## 3126 NA NA
## 3127 NA NA
## 3128 NA NA
## 3129 NA NA
## 3130 NA NA
## 3131 NA NA
## 3132 NA NA
## 3133 NA NA
## 3134 NA NA
## 3135 NA NA
## 3136 NA NA
## 3137 NA NA
## 3138 NA NA
## 3139 NA NA
## 3140 NA NA
## 3141 NA NA
## 3142 NA NA
## 3143 NA NA
## 3144 NA NA
## 3145 14.482 30.375
## 3146 14.482 30.375
## 3147 14.482 30.375
## 3148 14.482 30.375
## 3149 14.482 30.375
## 3150 14.482 30.375
## 3151 NA NA
## 3152 NA NA
## 3153 NA NA
## 3154 NA NA
## 3155 NA NA
## 3156 NA NA
## 3157 NA NA
## 3158 NA NA
## 3159 NA NA
## 3160 NA NA
## 3161 NA NA
## 3162 NA NA
## 3163 28.433 47.676
## 3164 28.433 47.676
## 3165 28.433 47.676
## 3166 28.433 47.676
## 3167 28.433 47.676
## 3168 28.433 47.676
## 3169 9.642 24.001
## 3170 9.642 24.001
## 3171 9.642 24.001
## 3172 9.642 24.001
## 3173 9.642 24.001
## 3174 9.642 24.001
## 3175 NA NA
## 3176 NA NA
## 3177 NA NA
## 3178 NA NA
## 3179 NA NA
## 3180 NA NA
## 3181 NA NA
## 3182 NA NA
## 3183 NA NA
## 3184 NA NA
## 3185 NA NA
## 3186 NA NA
## 3187 NA NA
## 3188 NA NA
## 3189 NA NA
## 3190 NA NA
## 3191 NA NA
## 3192 NA NA
## 3193 NA NA
## 3194 NA NA
## 3195 NA NA
## 3196 NA NA
## 3197 NA NA
## 3198 NA NA
## 3199 NA NA
## 3200 NA NA
## 3201 NA NA
## 3202 NA NA
## 3203 NA NA
## 3204 NA NA
## 3205 NA NA
## 3206 NA NA
## 3207 NA NA
## 3208 NA NA
## 3209 NA NA
## 3210 NA NA
## 3211 NA NA
## 3212 NA NA
## 3213 NA NA
## 3214 NA NA
## 3215 NA NA
## 3216 NA NA
## 3217 6.297 22.574
## 3218 6.297 22.574
## 3219 6.297 22.574
## 3220 6.297 22.574
## 3221 6.297 22.574
## 3222 6.297 22.574
## 3223 NA NA
## 3224 NA NA
## 3225 NA NA
## 3226 NA NA
## 3227 NA NA
## 3228 NA NA
## 3229 NA NA
## 3230 NA NA
## 3231 NA NA
## 3232 NA NA
## 3233 NA NA
## 3234 NA NA
## 3235 32.868 69.676
## 3236 32.868 69.676
## 3237 32.868 69.676
## 3238 32.868 69.676
## 3239 32.868 69.676
## 3240 32.868 69.676
## 3241 NA NA
## 3242 NA NA
## 3243 NA NA
## 3244 NA NA
## 3245 NA NA
## 3246 NA NA
## 3247 NA NA
## 3248 NA NA
## 3249 NA NA
## 3250 NA NA
## 3251 NA NA
## 3252 NA NA
## 3253 NA NA
## 3254 NA NA
## 3255 NA NA
## 3256 NA NA
## 3257 NA NA
## 3258 NA NA
## 3259 NA NA
## 3260 NA NA
## 3261 NA NA
## 3262 NA NA
## 3263 NA NA
## 3264 NA NA
## 3265 NA NA
## 3266 NA NA
## 3267 NA NA
## 3268 NA NA
## 3269 NA NA
## 3270 NA NA
## 3271 15.119 59.307
## 3272 15.119 59.307
## 3273 15.119 59.307
## 3274 15.119 59.307
## 3275 15.119 59.307
## 3276 15.119 59.307
## 3277 16.500 33.869
## 3278 16.500 33.869
## 3279 16.500 33.869
## 3280 16.500 33.869
## 3281 16.500 33.869
## 3282 16.500 33.869
## 3283 NA NA
## 3284 NA NA
## 3285 NA NA
## 3286 NA NA
## 3287 NA NA
## 3288 NA NA
## 3289 NA NA
## 3290 NA NA
## 3291 NA NA
## 3292 NA NA
## 3293 NA NA
## 3294 NA NA
## 3295 NA NA
## 3296 NA NA
## 3297 NA NA
## 3298 NA NA
## 3299 NA NA
## 3300 NA NA
## 3301 NA NA
## 3302 NA NA
## 3303 NA NA
## 3304 NA NA
## 3305 NA NA
## 3306 NA NA
## 3307 NA NA
## 3308 NA NA
## 3309 NA NA
## 3310 NA NA
## 3311 NA NA
## 3312 NA NA
## 3313 NA NA
## 3314 NA NA
## 3315 NA NA
## 3316 NA NA
## 3317 NA NA
## 3318 NA NA
## 3319 20.234 27.850
## 3320 20.234 27.850
## 3321 20.234 27.850
## 3322 20.234 27.850
## 3323 20.234 27.850
## 3324 20.234 27.850
## 3325 NA NA
## 3326 NA NA
## 3327 NA NA
## 3328 NA NA
## 3329 NA NA
## 3330 NA NA
## 3331 NA NA
## 3332 NA NA
## 3333 NA NA
## 3334 NA NA
## 3335 NA NA
## 3336 NA NA
## 3337 15.544 46.822
## 3338 15.544 46.822
## 3339 15.544 46.822
## 3340 15.544 46.822
## 3341 15.544 46.822
## 3342 15.544 46.822
## 3343 6.021 49.476
## 3344 6.021 49.476
## 3345 6.021 49.476
## 3346 6.021 49.476
## 3347 6.021 49.476
## 3348 6.021 49.476
## 3349 4.406 71.324
## 3350 4.406 71.324
## 3351 4.406 71.324
## 3352 4.406 71.324
## 3353 4.406 71.324
## 3354 4.406 71.324
## 3355 NA NA
## 3356 NA NA
## 3357 NA NA
## 3358 NA NA
## 3359 NA NA
## 3360 NA NA
## 3361 NA NA
## 3362 NA NA
## 3363 NA NA
## 3364 NA NA
## 3365 NA NA
## 3366 NA NA
## 3367 NA NA
## 3368 NA NA
## 3369 NA NA
## 3370 NA NA
## 3371 NA NA
## 3372 NA NA
## 3373 NA NA
## 3374 NA NA
## 3375 NA NA
## 3376 NA NA
## 3377 NA NA
## 3378 NA NA
## 3379 NA NA
## 3380 NA NA
## 3381 NA NA
## 3382 NA NA
## 3383 NA NA
## 3384 NA NA
## 3385 NA NA
## 3386 NA NA
## 3387 NA NA
## 3388 NA NA
## 3389 NA NA
## 3390 NA NA
## 3391 NA NA
## 3392 NA NA
## 3393 NA NA
## 3394 NA NA
## 3395 NA NA
## 3396 NA NA
## 3397 NA NA
## 3398 NA NA
## 3399 NA NA
## 3400 NA NA
## 3401 NA NA
## 3402 NA NA
## 3403 NA NA
## 3404 NA NA
## 3405 NA NA
## 3406 NA NA
## 3407 NA NA
## 3408 NA NA
## 3409 NA NA
## 3410 NA NA
## 3411 NA NA
## 3412 NA NA
## 3413 NA NA
## 3414 NA NA
## 3415 15.721 59.734
## 3416 15.721 59.734
## 3417 15.721 59.734
## 3418 15.721 59.734
## 3419 15.721 59.734
## 3420 15.721 59.734
## 3421 14.500 33.662
## 3422 14.500 33.662
## 3423 14.500 33.662
## 3424 14.500 33.662
## 3425 14.500 33.662
## 3426 14.500 33.662
## 3427 NA NA
## 3428 NA NA
## 3429 NA NA
## 3430 NA NA
## 3431 NA NA
## 3432 NA NA
## 3433 NA NA
## 3434 NA NA
## 3435 NA NA
## 3436 NA NA
## 3437 NA NA
## 3438 NA NA
## 3439 11.155 27.727
## 3440 11.155 27.727
## 3441 11.155 27.727
## 3442 11.155 27.727
## 3443 11.155 27.727
## 3444 11.155 27.727
## 3445 165.386 205.922
## 3446 165.386 205.922
## 3447 165.386 205.922
## 3448 165.386 205.922
## 3449 165.386 205.922
## 3450 165.386 205.922
## 3451 NA NA
## 3452 NA NA
## 3453 NA NA
## 3454 NA NA
## 3455 NA NA
## 3456 NA NA
## 3457 51.823 67.953
## 3458 51.823 67.953
## 3459 51.823 67.953
## 3460 51.823 67.953
## 3461 51.823 67.953
## 3462 51.823 67.953
## 3463 NA NA
## 3464 NA NA
## 3465 NA NA
## 3466 NA NA
## 3467 NA NA
## 3468 NA NA
## 3469 NA NA
## 3470 NA NA
## 3471 NA NA
## 3472 NA NA
## 3473 NA NA
## 3474 NA NA
## 3475 NA NA
## 3476 NA NA
## 3477 NA NA
## 3478 NA NA
## 3479 NA NA
## 3480 NA NA
## 3481 NA NA
## 3482 NA NA
## 3483 NA NA
## 3484 NA NA
## 3485 NA NA
## 3486 NA NA
## 3487 NA NA
## 3488 NA NA
## 3489 NA NA
## 3490 NA NA
## 3491 NA NA
## 3492 NA NA
## 3493 NA NA
## 3494 NA NA
## 3495 NA NA
## 3496 NA NA
## 3497 NA NA
## 3498 NA NA
## 3499 NA NA
## 3500 NA NA
## 3501 NA NA
## 3502 NA NA
## 3503 NA NA
## 3504 NA NA
## 3505 NA NA
## 3506 NA NA
## 3507 NA NA
## 3508 NA NA
## 3509 NA NA
## 3510 NA NA
## 3511 NA NA
## 3512 NA NA
## 3513 NA NA
## 3514 NA NA
## 3515 NA NA
## 3516 NA NA
## 3517 NA NA
## 3518 NA NA
## 3519 NA NA
## 3520 NA NA
## 3521 NA NA
## 3522 NA NA
## 3523 NA NA
## 3524 NA NA
## 3525 NA NA
## 3526 NA NA
## 3527 NA NA
## 3528 NA NA
## 3529 NA NA
## 3530 NA NA
## 3531 NA NA
## 3532 NA NA
## 3533 NA NA
## 3534 NA NA
## 3535 NA NA
## 3536 NA NA
## 3537 NA NA
## 3538 NA NA
## 3539 NA NA
## 3540 NA NA
## 3541 NA NA
## 3542 NA NA
## 3543 NA NA
## 3544 NA NA
## 3545 NA NA
## 3546 NA NA
## 3547 NA NA
## 3548 NA NA
## 3549 NA NA
## 3550 NA NA
## 3551 NA NA
## 3552 NA NA
## 3553 NA NA
## 3554 NA NA
## 3555 NA NA
## 3556 NA NA
## 3557 NA NA
## 3558 NA NA
## 3559 NA NA
## 3560 NA NA
## 3561 NA NA
## 3562 NA NA
## 3563 NA NA
## 3564 NA NA
## 3565 NA NA
## 3566 NA NA
## 3567 NA NA
## 3568 NA NA
## 3569 NA NA
## 3570 NA NA
## 3571 NA NA
## 3572 NA NA
## 3573 NA NA
## 3574 NA NA
## 3575 NA NA
## 3576 NA NA
## 3577 NA NA
## 3578 NA NA
## 3579 NA NA
## 3580 NA NA
## 3581 NA NA
## 3582 NA NA
## 3583 17.097 69.121
## 3584 17.097 69.121
## 3585 17.097 69.121
## 3586 17.097 69.121
## 3587 17.097 69.121
## 3588 17.097 69.121
## 3589 NA NA
## 3590 NA NA
## 3591 NA NA
## 3592 NA NA
## 3593 NA NA
## 3594 NA NA
## 3595 NA NA
## 3596 NA NA
## 3597 NA NA
## 3598 NA NA
## 3599 NA NA
## 3600 NA NA
## 3601 74.885 89.915
## 3602 74.885 89.915
## 3603 74.885 89.915
## 3604 74.885 89.915
## 3605 74.885 89.915
## 3606 74.885 89.915
## 3607 NA NA
## 3608 NA NA
## 3609 NA NA
## 3610 NA NA
## 3611 NA NA
## 3612 NA NA
## 3613 NA NA
## 3614 NA NA
## 3615 NA NA
## 3616 NA NA
## 3617 NA NA
## 3618 NA NA
## 3619 NA NA
## 3620 NA NA
## 3621 NA NA
## 3622 NA NA
## 3623 NA NA
## 3624 NA NA
## 3625 NA NA
## 3626 NA NA
## 3627 NA NA
## 3628 NA NA
## 3629 NA NA
## 3630 NA NA
## 3631 NA NA
## 3632 NA NA
## 3633 NA NA
## 3634 NA NA
## 3635 NA NA
## 3636 NA NA
## 3637 NA NA
## 3638 NA NA
## 3639 NA NA
## 3640 NA NA
## 3641 NA NA
## 3642 NA NA
## 3643 NA NA
## 3644 NA NA
## 3645 NA NA
## 3646 NA NA
## 3647 NA NA
## 3648 NA NA
## 3649 NA NA
## 3650 NA NA
## 3651 NA NA
## 3652 NA NA
## 3653 NA NA
## 3654 NA NA
## 3655 NA NA
## 3656 NA NA
## 3657 NA NA
## 3658 NA NA
## 3659 NA NA
## 3660 NA NA
## 3661 NA NA
## 3662 NA NA
## 3663 NA NA
## 3664 NA NA
## 3665 NA NA
## 3666 NA NA
## 3667 NA NA
## 3668 NA NA
## 3669 NA NA
## 3670 NA NA
## 3671 NA NA
## 3672 NA NA
## 3673 NA NA
## 3674 NA NA
## 3675 NA NA
## 3676 NA NA
## 3677 NA NA
## 3678 NA NA
## 3679 10.500 21.124
## 3680 10.500 21.124
## 3681 10.500 21.124
## 3682 10.500 21.124
## 3683 10.500 21.124
## 3684 10.500 21.124
## 3685 NA NA
## 3686 NA NA
## 3687 NA NA
## 3688 NA NA
## 3689 NA NA
## 3690 NA NA
## 3691 9.225 19.677
## 3692 9.225 19.677
## 3693 9.225 19.677
## 3694 9.225 19.677
## 3695 9.225 19.677
## 3696 9.225 19.677
## 3697 NA NA
## 3698 NA NA
## 3699 NA NA
## 3700 NA NA
## 3701 NA NA
## 3702 NA NA
## 3703 NA NA
## 3704 NA NA
## 3705 NA NA
## 3706 NA NA
## 3707 NA NA
## 3708 NA NA
## 3709 NA NA
## 3710 NA NA
## 3711 NA NA
## 3712 NA NA
## 3713 NA NA
## 3714 NA NA
## 3715 NA NA
## 3716 NA NA
## 3717 NA NA
## 3718 NA NA
## 3719 NA NA
## 3720 NA NA
## 3721 59.754 62.982
## 3722 59.754 62.982
## 3723 59.754 62.982
## 3724 59.754 62.982
## 3725 59.754 62.982
## 3726 59.754 62.982
## 3727 NA NA
## 3728 NA NA
## 3729 NA NA
## 3730 NA NA
## 3731 NA NA
## 3732 NA NA
## 3733 NA NA
## 3734 NA NA
## 3735 NA NA
## 3736 NA NA
## 3737 NA NA
## 3738 NA NA
## 3739 16.478 33.318
## 3740 16.478 33.318
## 3741 16.478 33.318
## 3742 16.478 33.318
## 3743 16.478 33.318
## 3744 16.478 33.318
## 3745 NA NA
## 3746 NA NA
## 3747 NA NA
## 3748 NA NA
## 3749 NA NA
## 3750 NA NA
## 3751 NA NA
## 3752 NA NA
## 3753 NA NA
## 3754 NA NA
## 3755 NA NA
## 3756 NA NA
## 3757 6.892 16.700
## 3758 6.892 16.700
## 3759 6.892 16.700
## 3760 6.892 16.700
## 3761 6.892 16.700
## 3762 6.892 16.700
## 3763 NA NA
## 3764 NA NA
## 3765 NA NA
## 3766 NA NA
## 3767 NA NA
## 3768 NA NA
## 3769 17.785 55.031
## 3770 17.785 55.031
## 3771 17.785 55.031
## 3772 17.785 55.031
## 3773 17.785 55.031
## 3774 17.785 55.031
## 3775 NA NA
## 3776 NA NA
## 3777 NA NA
## 3778 NA NA
## 3779 NA NA
## 3780 NA NA
## 3781 NA NA
## 3782 NA NA
## 3783 NA NA
## 3784 NA NA
## 3785 NA NA
## 3786 NA NA
## 3787 NA NA
## 3788 NA NA
## 3789 NA NA
## 3790 NA NA
## 3791 NA NA
## 3792 NA NA
## 3793 6.363 17.345
## 3794 6.363 17.345
## 3795 6.363 17.345
## 3796 6.363 17.345
## 3797 6.363 17.345
## 3798 6.363 17.345
## 3799 NA NA
## 3800 NA NA
## 3801 NA NA
## 3802 NA NA
## 3803 NA NA
## 3804 NA NA
## 3805 NA NA
## 3806 NA NA
## 3807 NA NA
## 3808 NA NA
## 3809 NA NA
## 3810 NA NA
## 3811 10.479 18.447
## 3812 10.479 18.447
## 3813 10.479 18.447
## 3814 10.479 18.447
## 3815 10.479 18.447
## 3816 10.479 18.447
## 3817 NA NA
## 3818 NA NA
## 3819 NA NA
## 3820 NA NA
## 3821 NA NA
## 3822 NA NA
## 3823 NA NA
## 3824 NA NA
## 3825 NA NA
## 3826 NA NA
## 3827 NA NA
## 3828 NA NA
## 3829 NA NA
## 3830 NA NA
## 3831 NA NA
## 3832 NA NA
## 3833 NA NA
## 3834 NA NA
## 3835 NA NA
## 3836 NA NA
## 3837 NA NA
## 3838 NA NA
## 3839 NA NA
## 3840 NA NA
## 3841 102.512 181.738
## 3842 102.512 181.738
## 3843 102.512 181.738
## 3844 102.512 181.738
## 3845 102.512 181.738
## 3846 102.512 181.738
## 3847 NA NA
## 3848 NA NA
## 3849 NA NA
## 3850 NA NA
## 3851 NA NA
## 3852 NA NA
## 3853 NA NA
## 3854 NA NA
## 3855 NA NA
## 3856 NA NA
## 3857 NA NA
## 3858 NA NA
## 3859 NA NA
## 3860 NA NA
## 3861 NA NA
## 3862 NA NA
## 3863 NA NA
## 3864 NA NA
## 3865 NA NA
## 3866 NA NA
## 3867 NA NA
## 3868 NA NA
## 3869 NA NA
## 3870 NA NA
## 3871 NA NA
## 3872 NA NA
## 3873 NA NA
## 3874 NA NA
## 3875 NA NA
## 3876 NA NA
## 3877 5.160 59.130
## 3878 5.160 59.130
## 3879 5.160 59.130
## 3880 5.160 59.130
## 3881 5.160 59.130
## 3882 5.160 59.130
## 3883 NA NA
## 3884 NA NA
## 3885 NA NA
## 3886 NA NA
## 3887 NA NA
## 3888 NA NA
## 3889 NA NA
## 3890 NA NA
## 3891 NA NA
## 3892 NA NA
## 3893 NA NA
## 3894 NA NA
## 3895 NA NA
## 3896 NA NA
## 3897 NA NA
## 3898 NA NA
## 3899 NA NA
## 3900 NA NA
## 3901 NA NA
## 3902 NA NA
## 3903 NA NA
## 3904 NA NA
## 3905 NA NA
## 3906 NA NA
## 3907 9.709 37.229
## 3908 9.709 37.229
## 3909 9.709 37.229
## 3910 9.709 37.229
## 3911 9.709 37.229
## 3912 9.709 37.229
## 3913 3.519 23.439
## 3914 3.519 23.439
## 3915 3.519 23.439
## 3916 3.519 23.439
## 3917 3.519 23.439
## 3918 3.519 23.439
## 3919 10.350 58.259
## 3920 10.350 58.259
## 3921 10.350 58.259
## 3922 10.350 58.259
## 3923 10.350 58.259
## 3924 10.350 58.259
## 3925 NA NA
## 3926 NA NA
## 3927 NA NA
## 3928 NA NA
## 3929 NA NA
## 3930 NA NA
## 3931 NA NA
## 3932 NA NA
## 3933 NA NA
## 3934 NA NA
## 3935 NA NA
## 3936 NA NA
## 3937 NA NA
## 3938 NA NA
## 3939 NA NA
## 3940 NA NA
## 3941 NA NA
## 3942 NA NA
## 3943 NA NA
## 3944 NA NA
## 3945 NA NA
## 3946 NA NA
## 3947 NA NA
## 3948 NA NA
## 3949 5.872 104.998
## 3950 5.872 104.998
## 3951 5.872 104.998
## 3952 5.872 104.998
## 3953 5.872 104.998
## 3954 5.872 104.998
## 3955 NA NA
## 3956 NA NA
## 3957 NA NA
## 3958 NA NA
## 3959 NA NA
## 3960 NA NA
## 3961 36.483 76.017
## 3962 36.483 76.017
## 3963 36.483 76.017
## 3964 36.483 76.017
## 3965 36.483 76.017
## 3966 36.483 76.017
## 3967 NA NA
## 3968 NA NA
## 3969 NA NA
## 3970 NA NA
## 3971 NA NA
## 3972 NA NA
## 3973 NA NA
## 3974 NA NA
## 3975 NA NA
## 3976 NA NA
## 3977 NA NA
## 3978 NA NA
## 3979 NA NA
## 3980 NA NA
## 3981 NA NA
## 3982 NA NA
## 3983 NA NA
## 3984 NA NA
## 3985 NA NA
## 3986 NA NA
## 3987 NA NA
## 3988 NA NA
## 3989 NA NA
## 3990 NA NA
## 3991 NA NA
## 3992 NA NA
## 3993 NA NA
## 3994 NA NA
## 3995 NA NA
## 3996 NA NA
## 3997 NA NA
## 3998 NA NA
## 3999 NA NA
## 4000 NA NA
## 4001 NA NA
## 4002 NA NA
## 4003 NA NA
## 4004 NA NA
## 4005 NA NA
## 4006 NA NA
## 4007 NA NA
## 4008 NA NA
## 4009 NA NA
## 4010 NA NA
## 4011 NA NA
## 4012 NA NA
## 4013 NA NA
## 4014 NA NA
## 4015 NA NA
## 4016 NA NA
## 4017 NA NA
## 4018 NA NA
## 4019 NA NA
## 4020 NA NA
## 4021 NA NA
## 4022 NA NA
## 4023 NA NA
## 4024 NA NA
## 4025 NA NA
## 4026 NA NA
## 4027 14.210 25.292
## 4028 14.210 25.292
## 4029 14.210 25.292
## 4030 14.210 25.292
## 4031 14.210 25.292
## 4032 14.210 25.292
## 4033 NA NA
## 4034 NA NA
## 4035 NA NA
## 4036 NA NA
## 4037 NA NA
## 4038 NA NA
## 4039 14.585 56.907
## 4040 14.585 56.907
## 4041 14.585 56.907
## 4042 14.585 56.907
## 4043 14.585 56.907
## 4044 14.585 56.907
## 4045 NA NA
## 4046 NA NA
## 4047 NA NA
## 4048 NA NA
## 4049 NA NA
## 4050 NA NA
## 4051 4.093 36.654
## 4052 4.093 36.654
## 4053 4.093 36.654
## 4054 4.093 36.654
## 4055 4.093 36.654
## 4056 4.093 36.654
## 4057 NA NA
## 4058 NA NA
## 4059 NA NA
## 4060 NA NA
## 4061 NA NA
## 4062 NA NA
## 4063 NA NA
## 4064 NA NA
## 4065 NA NA
## 4066 NA NA
## 4067 NA NA
## 4068 NA NA
## 4069 NA NA
## 4070 NA NA
## 4071 NA NA
## 4072 NA NA
## 4073 NA NA
## 4074 NA NA
## 4075 NA NA
## 4076 NA NA
## 4077 NA NA
## 4078 NA NA
## 4079 NA NA
## 4080 NA NA
## 4081 NA NA
## 4082 NA NA
## 4083 NA NA
## 4084 NA NA
## 4085 NA NA
## 4086 NA NA
## 4087 52.733 66.477
## 4088 52.733 66.477
## 4089 52.733 66.477
## 4090 52.733 66.477
## 4091 52.733 66.477
## 4092 52.733 66.477
## 4093 NA NA
## 4094 NA NA
## 4095 NA NA
## 4096 NA NA
## 4097 NA NA
## 4098 NA NA
## 4099 NA NA
## 4100 NA NA
## 4101 NA NA
## 4102 NA NA
## 4103 NA NA
## 4104 NA NA
## 4105 15.452 28.498
## 4106 15.452 28.498
## 4107 15.452 28.498
## 4108 15.452 28.498
## 4109 15.452 28.498
## 4110 15.452 28.498
## 4111 NA NA
## 4112 NA NA
## 4113 NA NA
## 4114 NA NA
## 4115 NA NA
## 4116 NA NA
## 4117 NA NA
## 4118 NA NA
## 4119 NA NA
## 4120 NA NA
## 4121 NA NA
## 4122 NA NA
## 4123 15.231 31.927
## 4124 15.231 31.927
## 4125 15.231 31.927
## 4126 15.231 31.927
## 4127 15.231 31.927
## 4128 15.231 31.927
## 4129 NA NA
## 4130 NA NA
## 4131 NA NA
## 4132 NA NA
## 4133 NA NA
## 4134 NA NA
## 4135 NA NA
## 4136 NA NA
## 4137 NA NA
## 4138 NA NA
## 4139 NA NA
## 4140 NA NA
## 4141 NA NA
## 4142 NA NA
## 4143 NA NA
## 4144 NA NA
## 4145 NA NA
## 4146 NA NA
## 4147 2.078 41.471
## 4148 2.078 41.471
## 4149 2.078 41.471
## 4150 2.078 41.471
## 4151 2.078 41.471
## 4152 2.078 41.471
## 4153 NA NA
## 4154 NA NA
## 4155 NA NA
## 4156 NA NA
## 4157 NA NA
## 4158 NA NA
## 4159 NA NA
## 4160 NA NA
## 4161 NA NA
## 4162 NA NA
## 4163 NA NA
## 4164 NA NA
## 4165 12.394 33.370
## 4166 12.394 33.370
## 4167 12.394 33.370
## 4168 12.394 33.370
## 4169 12.394 33.370
## 4170 12.394 33.370
## 4171 NA NA
## 4172 NA NA
## 4173 NA NA
## 4174 NA NA
## 4175 NA NA
## 4176 NA NA
## 4177 NA NA
## 4178 NA NA
## 4179 NA NA
## 4180 NA NA
## 4181 NA NA
## 4182 NA NA
## 4183 NA NA
## 4184 NA NA
## 4185 NA NA
## 4186 NA NA
## 4187 NA NA
## 4188 NA NA
## 4189 NA NA
## 4190 NA NA
## 4191 NA NA
## 4192 NA NA
## 4193 NA NA
## 4194 NA NA
## 4195 NA NA
## 4196 NA NA
## 4197 NA NA
## 4198 NA NA
## 4199 NA NA
## 4200 NA NA
## 4201 NA NA
## 4202 NA NA
## 4203 NA NA
## 4204 NA NA
## 4205 NA NA
## 4206 NA NA
## 4207 NA NA
## 4208 NA NA
## 4209 NA NA
## 4210 NA NA
## 4211 NA NA
## 4212 NA NA
## 4213 NA NA
## 4214 NA NA
## 4215 NA NA
## 4216 NA NA
## 4217 NA NA
## 4218 NA NA
## 4219 NA NA
## 4220 NA NA
## 4221 NA NA
## 4222 NA NA
## 4223 NA NA
## 4224 NA NA
## 4225 NA NA
## 4226 NA NA
## 4227 NA NA
## 4228 NA NA
## 4229 NA NA
## 4230 NA NA
## 4231 NA NA
## 4232 NA NA
## 4233 NA NA
## 4234 NA NA
## 4235 NA NA
## 4236 NA NA
## 4237 NA NA
## 4238 NA NA
## 4239 NA NA
## 4240 NA NA
## 4241 NA NA
## 4242 NA NA
## 4243 NA NA
## 4244 NA NA
## 4245 NA NA
## 4246 NA NA
## 4247 NA NA
## 4248 NA NA
## 4249 NA NA
## 4250 NA NA
## 4251 NA NA
## 4252 NA NA
## 4253 NA NA
## 4254 NA NA
## 4255 NA NA
## 4256 NA NA
## 4257 NA NA
## 4258 NA NA
## 4259 NA NA
## 4260 NA NA
## 4261 NA NA
## 4262 NA NA
## 4263 NA NA
## 4264 NA NA
## 4265 NA NA
## 4266 NA NA
## 4267 NA NA
## 4268 NA NA
## 4269 NA NA
## 4270 NA NA
## 4271 NA NA
## 4272 NA NA
## 4273 NA NA
## 4274 NA NA
## 4275 NA NA
## 4276 NA NA
## 4277 NA NA
## 4278 NA NA
## 4279 19.769 29.612
## 4280 19.769 29.612
## 4281 19.769 29.612
## 4282 19.769 29.612
## 4283 19.769 29.612
## 4284 19.769 29.612
## 4285 NA NA
## 4286 NA NA
## 4287 NA NA
## 4288 NA NA
## 4289 NA NA
## 4290 NA NA
## 4291 NA NA
## 4292 NA NA
## 4293 NA NA
## 4294 NA NA
## 4295 NA NA
## 4296 NA NA
## 4297 NA NA
## 4298 NA NA
## 4299 NA NA
## 4300 NA NA
## 4301 NA NA
## 4302 NA NA
## 4303 NA NA
## 4304 NA NA
## 4305 NA NA
## 4306 NA NA
## 4307 NA NA
## 4308 NA NA
## 4309 2.508 52.231
## 4310 2.508 52.231
## 4311 2.508 52.231
## 4312 2.508 52.231
## 4313 2.508 52.231
## 4314 2.508 52.231
## 4315 40.409 51.258
## 4316 40.409 51.258
## 4317 40.409 51.258
## 4318 40.409 51.258
## 4319 40.409 51.258
## 4320 40.409 51.258
## 4321 NA NA
## 4322 NA NA
## 4323 NA NA
## 4324 NA NA
## 4325 NA NA
## 4326 NA NA
## 4327 34.520 54.495
## 4328 34.520 54.495
## 4329 34.520 54.495
## 4330 34.520 54.495
## 4331 34.520 54.495
## 4332 34.520 54.495
## 4333 NA NA
## 4334 NA NA
## 4335 NA NA
## 4336 NA NA
## 4337 NA NA
## 4338 NA NA
## 4339 NA NA
## 4340 NA NA
## 4341 NA NA
## 4342 NA NA
## 4343 NA NA
## 4344 NA NA
## 4345 NA NA
## 4346 NA NA
## 4347 NA NA
## 4348 NA NA
## 4349 NA NA
## 4350 NA NA
## 4351 NA NA
## 4352 NA NA
## 4353 NA NA
## 4354 NA NA
## 4355 NA NA
## 4356 NA NA
## 4357 NA NA
## 4358 NA NA
## 4359 NA NA
## 4360 NA NA
## 4361 NA NA
## 4362 NA NA
## 4363 NA NA
## 4364 NA NA
## 4365 NA NA
## 4366 NA NA
## 4367 NA NA
## 4368 NA NA
## 4369 NA NA
## 4370 NA NA
## 4371 NA NA
## 4372 NA NA
## 4373 NA NA
## 4374 NA NA
## 4375 NA NA
## 4376 NA NA
## 4377 NA NA
## 4378 NA NA
## 4379 NA NA
## 4380 NA NA
## 4381 NA NA
## 4382 NA NA
## 4383 NA NA
## 4384 NA NA
## 4385 NA NA
## 4386 NA NA
## 4387 NA NA
## 4388 NA NA
## 4389 NA NA
## 4390 NA NA
## 4391 NA NA
## 4392 NA NA
## 4393 13.205 28.705
## 4394 13.205 28.705
## 4395 13.205 28.705
## 4396 13.205 28.705
## 4397 13.205 28.705
## 4398 13.205 28.705
## 4399 NA NA
## 4400 NA NA
## 4401 NA NA
## 4402 NA NA
## 4403 NA NA
## 4404 NA NA
## 4405 NA NA
## 4406 NA NA
## 4407 NA NA
## 4408 NA NA
## 4409 NA NA
## 4410 NA NA
## 4411 NA NA
## 4412 NA NA
## 4413 NA NA
## 4414 NA NA
## 4415 NA NA
## 4416 NA NA
## 4417 NA NA
## 4418 NA NA
## 4419 NA NA
## 4420 NA NA
## 4421 NA NA
## 4422 NA NA
## 4423 NA NA
## 4424 NA NA
## 4425 NA NA
## 4426 NA NA
## 4427 NA NA
## 4428 NA NA
## 4429 NA NA
## 4430 NA NA
## 4431 NA NA
## 4432 NA NA
## 4433 NA NA
## 4434 NA NA
## 4435 NA NA
## 4436 NA NA
## 4437 NA NA
## 4438 NA NA
## 4439 NA NA
## 4440 NA NA
## 4441 NA NA
## 4442 NA NA
## 4443 NA NA
## 4444 NA NA
## 4445 NA NA
## 4446 NA NA
## 4447 NA NA
## 4448 NA NA
## 4449 NA NA
## 4450 NA NA
## 4451 NA NA
## 4452 NA NA
## 4453 NA NA
## 4454 NA NA
## 4455 NA NA
## 4456 NA NA
## 4457 NA NA
## 4458 NA NA
## 4459 NA NA
## 4460 NA NA
## 4461 NA NA
## 4462 NA NA
## 4463 NA NA
## 4464 NA NA
## 4465 NA NA
## 4466 NA NA
## 4467 NA NA
## 4468 NA NA
## 4469 NA NA
## 4470 NA NA
## 4471 24.778 31.586
## 4472 24.778 31.586
## 4473 24.778 31.586
## 4474 24.778 31.586
## 4475 24.778 31.586
## 4476 24.778 31.586
## 4477 NA NA
## 4478 NA NA
## 4479 NA NA
## 4480 NA NA
## 4481 NA NA
## 4482 NA NA
## 4483 NA NA
## 4484 NA NA
## 4485 NA NA
## 4486 NA NA
## 4487 NA NA
## 4488 NA NA
## 4489 NA NA
## 4490 NA NA
## 4491 NA NA
## 4492 NA NA
## 4493 NA NA
## 4494 NA NA
## 4495 8.918 51.318
## 4496 8.918 51.318
## 4497 8.918 51.318
## 4498 8.918 51.318
## 4499 8.918 51.318
## 4500 8.918 51.318
## 4501 NA NA
## 4502 NA NA
## 4503 NA NA
## 4504 NA NA
## 4505 NA NA
## 4506 NA NA
## 4507 NA NA
## 4508 NA NA
## 4509 NA NA
## 4510 NA NA
## 4511 NA NA
## 4512 NA NA
## 4513 38.588 59.334
## 4514 38.588 59.334
## 4515 38.588 59.334
## 4516 38.588 59.334
## 4517 38.588 59.334
## 4518 38.588 59.334
## 4519 NA NA
## 4520 NA NA
## 4521 NA NA
## 4522 NA NA
## 4523 NA NA
## 4524 NA NA
## 4525 NA NA
## 4526 NA NA
## 4527 NA NA
## 4528 NA NA
## 4529 NA NA
## 4530 NA NA
## 4531 NA NA
## 4532 NA NA
## 4533 NA NA
## 4534 NA NA
## 4535 NA NA
## 4536 NA NA
## 4537 NA NA
## 4538 NA NA
## 4539 NA NA
## 4540 NA NA
## 4541 NA NA
## 4542 NA NA
## 4543 NA NA
## 4544 NA NA
## 4545 NA NA
## 4546 NA NA
## 4547 NA NA
## 4548 NA NA
## 4549 NA NA
## 4550 NA NA
## 4551 NA NA
## 4552 NA NA
## 4553 NA NA
## 4554 NA NA
## 4555 NA NA
## 4556 NA NA
## 4557 NA NA
## 4558 NA NA
## 4559 NA NA
## 4560 NA NA
## 4561 NA NA
## 4562 NA NA
## 4563 NA NA
## 4564 NA NA
## 4565 NA NA
## 4566 NA NA
## 4567 34.006 49.564
## 4568 34.006 49.564
## 4569 34.006 49.564
## 4570 34.006 49.564
## 4571 34.006 49.564
## 4572 34.006 49.564
## 4573 NA NA
## 4574 NA NA
## 4575 NA NA
## 4576 NA NA
## 4577 NA NA
## 4578 NA NA
## 4579 28.103 56.290
## 4580 28.103 56.290
## 4581 28.103 56.290
## 4582 28.103 56.290
## 4583 28.103 56.290
## 4584 28.103 56.290
## 4585 4.872 69.785
## 4586 4.872 69.785
## 4587 4.872 69.785
## 4588 4.872 69.785
## 4589 4.872 69.785
## 4590 4.872 69.785
## 4591 NA NA
## 4592 NA NA
## 4593 NA NA
## 4594 NA NA
## 4595 NA NA
## 4596 NA NA
## 4597 NA NA
## 4598 NA NA
## 4599 NA NA
## 4600 NA NA
## 4601 NA NA
## 4602 NA NA
## 4603 30.581 51.971
## 4604 30.581 51.971
## 4605 30.581 51.971
## 4606 30.581 51.971
## 4607 30.581 51.971
## 4608 30.581 51.971
## 4609 NA NA
## 4610 NA NA
## 4611 NA NA
## 4612 NA NA
## 4613 NA NA
## 4614 NA NA
## 4615 NA NA
## 4616 NA NA
## 4617 NA NA
## 4618 NA NA
## 4619 NA NA
## 4620 NA NA
## 4621 10.188 31.833
## 4622 10.188 31.833
## 4623 10.188 31.833
## 4624 10.188 31.833
## 4625 10.188 31.833
## 4626 10.188 31.833
## 4627 NA NA
## 4628 NA NA
## 4629 NA NA
## 4630 NA NA
## 4631 NA NA
## 4632 NA NA
## 4633 NA NA
## 4634 NA NA
## 4635 NA NA
## 4636 NA NA
## 4637 NA NA
## 4638 NA NA
## 4639 NA NA
## 4640 NA NA
## 4641 NA NA
## 4642 NA NA
## 4643 NA NA
## 4644 NA NA
## 4645 28.895 63.319
## 4646 28.895 63.319
## 4647 28.895 63.319
## 4648 28.895 63.319
## 4649 28.895 63.319
## 4650 28.895 63.319
## 4651 NA NA
## 4652 NA NA
## 4653 NA NA
## 4654 NA NA
## 4655 NA NA
## 4656 NA NA
## 4657 12.624 74.107
## 4658 12.624 74.107
## 4659 12.624 74.107
## 4660 12.624 74.107
## 4661 12.624 74.107
## 4662 12.624 74.107
## 4663 34.176 53.232
## 4664 34.176 53.232
## 4665 34.176 53.232
## 4666 34.176 53.232
## 4667 34.176 53.232
## 4668 34.176 53.232
## 4669 NA NA
## 4670 NA NA
## 4671 NA NA
## 4672 NA NA
## 4673 NA NA
## 4674 NA NA
## 4675 NA NA
## 4676 NA NA
## 4677 NA NA
## 4678 NA NA
## 4679 NA NA
## 4680 NA NA
## 4681 15.858 30.822
## 4682 15.858 30.822
## 4683 15.858 30.822
## 4684 15.858 30.822
## 4685 15.858 30.822
## 4686 15.858 30.822
## 4687 31.687 75.667
## 4688 31.687 75.667
## 4689 31.687 75.667
## 4690 31.687 75.667
## 4691 31.687 75.667
## 4692 31.687 75.667
## 4693 39.901 78.155
## 4694 39.901 78.155
## 4695 39.901 78.155
## 4696 39.901 78.155
## 4697 39.901 78.155
## 4698 39.901 78.155
## 4699 NA NA
## 4700 NA NA
## 4701 NA NA
## 4702 NA NA
## 4703 NA NA
## 4704 NA NA
## 4705 11.245 21.135
## 4706 11.245 21.135
## 4707 11.245 21.135
## 4708 11.245 21.135
## 4709 11.245 21.135
## 4710 11.245 21.135
## 4711 46.828 83.197
## 4712 46.828 83.197
## 4713 46.828 83.197
## 4714 46.828 83.197
## 4715 46.828 83.197
## 4716 46.828 83.197
## 4717 NA NA
## 4718 NA NA
## 4719 NA NA
## 4720 NA NA
## 4721 NA NA
## 4722 NA NA
## 4723 17.580 35.986
## 4724 17.580 35.986
## 4725 17.580 35.986
## 4726 17.580 35.986
## 4727 17.580 35.986
## 4728 17.580 35.986
## 4729 NA NA
## 4730 NA NA
## 4731 NA NA
## 4732 NA NA
## 4733 NA NA
## 4734 NA NA
## 4735 NA NA
## 4736 NA NA
## 4737 NA NA
## 4738 NA NA
## 4739 NA NA
## 4740 NA NA
## 4741 NA NA
## 4742 NA NA
## 4743 NA NA
## 4744 NA NA
## 4745 NA NA
## 4746 NA NA
## 4747 17.915 36.373
## 4748 17.915 36.373
## 4749 17.915 36.373
## 4750 17.915 36.373
## 4751 17.915 36.373
## 4752 17.915 36.373
## 4753 9.056 89.046
## 4754 9.056 89.046
## 4755 9.056 89.046
## 4756 9.056 89.046
## 4757 9.056 89.046
## 4758 9.056 89.046
## 4759 NA NA
## 4760 NA NA
## 4761 NA NA
## 4762 NA NA
## 4763 NA NA
## 4764 NA NA
## 4765 10.534 66.626
## 4766 10.534 66.626
## 4767 10.534 66.626
## 4768 10.534 66.626
## 4769 10.534 66.626
## 4770 10.534 66.626
## 4771 NA NA
## 4772 NA NA
## 4773 NA NA
## 4774 NA NA
## 4775 NA NA
## 4776 NA NA
## 4777 26.087 42.856
## 4778 26.087 42.856
## 4779 26.087 42.856
## 4780 26.087 42.856
## 4781 26.087 42.856
## 4782 26.087 42.856
## 4783 NA NA
## 4784 NA NA
## 4785 NA NA
## 4786 NA NA
## 4787 NA NA
## 4788 NA NA
## 4789 NA NA
## 4790 NA NA
## 4791 NA NA
## 4792 NA NA
## 4793 NA NA
## 4794 NA NA
## 4795 NA NA
## 4796 NA NA
## 4797 NA NA
## 4798 NA NA
## 4799 NA NA
## 4800 NA NA
## 4801 NA NA
## 4802 NA NA
## 4803 NA NA
## 4804 NA NA
## 4805 NA NA
## 4806 NA NA
## 4807 11.923 53.320
## 4808 11.923 53.320
## 4809 11.923 53.320
## 4810 11.923 53.320
## 4811 11.923 53.320
## 4812 11.923 53.320
## 4813 NA NA
## 4814 NA NA
## 4815 NA NA
## 4816 NA NA
## 4817 NA NA
## 4818 NA NA
## 4819 NA NA
## 4820 NA NA
## 4821 NA NA
## 4822 NA NA
## 4823 NA NA
## 4824 NA NA
## 4825 43.656 63.123
## 4826 43.656 63.123
## 4827 43.656 63.123
## 4828 43.656 63.123
## 4829 43.656 63.123
## 4830 43.656 63.123
## 4831 NA NA
## 4832 NA NA
## 4833 NA NA
## 4834 NA NA
## 4835 NA NA
## 4836 NA NA
## 4837 NA NA
## 4838 NA NA
## 4839 NA NA
## 4840 NA NA
## 4841 NA NA
## 4842 NA NA
## 4843 NA NA
## 4844 NA NA
## 4845 NA NA
## 4846 NA NA
## 4847 NA NA
## 4848 NA NA
## 4849 NA NA
## 4850 NA NA
## 4851 NA NA
## 4852 NA NA
## 4853 NA NA
## 4854 NA NA
## 4855 15.549 29.558
## 4856 15.549 29.558
## 4857 15.549 29.558
## 4858 15.549 29.558
## 4859 15.549 29.558
## 4860 15.549 29.558
## 4861 NA NA
## 4862 NA NA
## 4863 NA NA
## 4864 NA NA
## 4865 NA NA
## 4866 NA NA
## 4867 43.639 65.840
## 4868 43.639 65.840
## 4869 43.639 65.840
## 4870 43.639 65.840
## 4871 43.639 65.840
## 4872 43.639 65.840
## 4873 NA NA
## 4874 NA NA
## 4875 NA NA
## 4876 NA NA
## 4877 NA NA
## 4878 NA NA
## 4879 NA NA
## 4880 NA NA
## 4881 NA NA
## 4882 NA NA
## 4883 NA NA
## 4884 NA NA
## 4885 NA NA
## 4886 NA NA
## 4887 NA NA
## 4888 NA NA
## 4889 NA NA
## 4890 NA NA
## 4891 NA NA
## 4892 NA NA
## 4893 NA NA
## 4894 NA NA
## 4895 NA NA
## 4896 NA NA
## 4897 NA NA
## 4898 NA NA
## 4899 NA NA
## 4900 NA NA
## 4901 NA NA
## 4902 NA NA
## 4903 1.131 28.423
## 4904 1.131 28.423
## 4905 1.131 28.423
## 4906 1.131 28.423
## 4907 1.131 28.423
## 4908 1.131 28.423
## 4909 NA NA
## 4910 NA NA
## 4911 NA NA
## 4912 NA NA
## 4913 NA NA
## 4914 NA NA
## 4915 NA NA
## 4916 NA NA
## 4917 NA NA
## 4918 NA NA
## 4919 NA NA
## 4920 NA NA
## 4921 40.399 117.358
## 4922 40.399 117.358
## 4923 40.399 117.358
## 4924 40.399 117.358
## 4925 40.399 117.358
## 4926 40.399 117.358
## 4927 NA NA
## 4928 NA NA
## 4929 NA NA
## 4930 NA NA
## 4931 NA NA
## 4932 NA NA
## 4933 NA NA
## 4934 NA NA
## 4935 NA NA
## 4936 NA NA
## 4937 NA NA
## 4938 NA NA
## 4939 NA NA
## 4940 NA NA
## 4941 NA NA
## 4942 NA NA
## 4943 NA NA
## 4944 NA NA
## 4945 NA NA
## 4946 NA NA
## 4947 NA NA
## 4948 NA NA
## 4949 NA NA
## 4950 NA NA
## 4951 NA NA
## 4952 NA NA
## 4953 NA NA
## 4954 NA NA
## 4955 NA NA
## 4956 NA NA
## 4957 NA NA
## 4958 NA NA
## 4959 NA NA
## 4960 NA NA
## 4961 NA NA
## 4962 NA NA
## 4963 NA NA
## 4964 NA NA
## 4965 NA NA
## 4966 NA NA
## 4967 NA NA
## 4968 NA NA
## 4969 NA NA
## 4970 NA NA
## 4971 NA NA
## 4972 NA NA
## 4973 NA NA
## 4974 NA NA
## 4975 NA NA
## 4976 NA NA
## 4977 NA NA
## 4978 NA NA
## 4979 NA NA
## 4980 NA NA
## 4981 NA NA
## 4982 NA NA
## 4983 NA NA
## 4984 NA NA
## 4985 NA NA
## 4986 NA NA
## 4987 44.734 65.945
## 4988 44.734 65.945
## 4989 44.734 65.945
## 4990 44.734 65.945
## 4991 44.734 65.945
## 4992 44.734 65.945
## 4993 0.713 29.652
## 4994 0.713 29.652
## 4995 0.713 29.652
## 4996 0.713 29.652
## 4997 0.713 29.652
## 4998 0.713 29.652
## 4999 44.316 70.844
## 5000 44.316 70.844
## 5001 44.316 70.844
## 5002 44.316 70.844
## 5003 44.316 70.844
## 5004 44.316 70.844
## 5005 18.726 62.472
## 5006 18.726 62.472
## 5007 18.726 62.472
## 5008 18.726 62.472
## 5009 18.726 62.472
## 5010 18.726 62.472
## 5011 52.781 89.432
## 5012 52.781 89.432
## 5013 52.781 89.432
## 5014 52.781 89.432
## 5015 52.781 89.432
## 5016 52.781 89.432
## 5017 NA NA
## 5018 NA NA
## 5019 NA NA
## 5020 NA NA
## 5021 NA NA
## 5022 NA NA
## 5023 NA NA
## 5024 NA NA
## 5025 NA NA
## 5026 NA NA
## 5027 NA NA
## 5028 NA NA
## 5029 NA NA
## 5030 NA NA
## 5031 NA NA
## 5032 NA NA
## 5033 NA NA
## 5034 NA NA
## 5035 NA NA
## 5036 NA NA
## 5037 NA NA
## 5038 NA NA
## 5039 NA NA
## 5040 NA NA
## 5041 NA NA
## 5042 NA NA
## 5043 NA NA
## 5044 NA NA
## 5045 NA NA
## 5046 NA NA
## 5047 29.054 38.893
## 5048 29.054 38.893
## 5049 29.054 38.893
## 5050 29.054 38.893
## 5051 29.054 38.893
## 5052 29.054 38.893
## 5053 NA NA
## 5054 NA NA
## 5055 NA NA
## 5056 NA NA
## 5057 NA NA
## 5058 NA NA
## 5059 NA NA
## 5060 NA NA
## 5061 NA NA
## 5062 NA NA
## 5063 NA NA
## 5064 NA NA
## 5065 NA NA
## 5066 NA NA
## 5067 NA NA
## 5068 NA NA
## 5069 NA NA
## 5070 NA NA
## 5071 NA NA
## 5072 NA NA
## 5073 NA NA
## 5074 NA NA
## 5075 NA NA
## 5076 NA NA
## 5077 NA NA
## 5078 NA NA
## 5079 NA NA
## 5080 NA NA
## 5081 NA NA
## 5082 NA NA
## 5083 NA NA
## 5084 NA NA
## 5085 NA NA
## 5086 NA NA
## 5087 NA NA
## 5088 NA NA
## 5089 NA NA
## 5090 NA NA
## 5091 NA NA
## 5092 NA NA
## 5093 NA NA
## 5094 NA NA
## 5095 NA NA
## 5096 NA NA
## 5097 NA NA
## 5098 NA NA
## 5099 NA NA
## 5100 NA NA
## 5101 NA NA
## 5102 NA NA
## 5103 NA NA
## 5104 NA NA
## 5105 NA NA
## 5106 NA NA
## 5107 1.682 16.001
## 5108 1.682 16.001
## 5109 1.682 16.001
## 5110 1.682 16.001
## 5111 1.682 16.001
## 5112 1.682 16.001
## 5113 NA NA
## 5114 NA NA
## 5115 NA NA
## 5116 NA NA
## 5117 NA NA
## 5118 NA NA
## 5119 NA NA
## 5120 NA NA
## 5121 NA NA
## 5122 NA NA
## 5123 NA NA
## 5124 NA NA
## 5125 NA NA
## 5126 NA NA
## 5127 NA NA
## 5128 NA NA
## 5129 NA NA
## 5130 NA NA
## 5131 9.495 66.873
## 5132 9.495 66.873
## 5133 9.495 66.873
## 5134 9.495 66.873
## 5135 9.495 66.873
## 5136 9.495 66.873
## 5137 NA NA
## 5138 NA NA
## 5139 NA NA
## 5140 NA NA
## 5141 NA NA
## 5142 NA NA
## 5143 NA NA
## 5144 NA NA
## 5145 NA NA
## 5146 NA NA
## 5147 NA NA
## 5148 NA NA
## 5149 9.605 43.766
## 5150 9.605 43.766
## 5151 9.605 43.766
## 5152 9.605 43.766
## 5153 9.605 43.766
## 5154 9.605 43.766
## 5155 33.287 66.168
## 5156 33.287 66.168
## 5157 33.287 66.168
## 5158 33.287 66.168
## 5159 33.287 66.168
## 5160 33.287 66.168
## 5161 9.569 37.404
## 5162 9.569 37.404
## 5163 9.569 37.404
## 5164 9.569 37.404
## 5165 9.569 37.404
## 5166 9.569 37.404
## 5167 38.813 78.819
## 5168 38.813 78.819
## 5169 38.813 78.819
## 5170 38.813 78.819
## 5171 38.813 78.819
## 5172 38.813 78.819
## 5173 NA NA
## 5174 NA NA
## 5175 NA NA
## 5176 NA NA
## 5177 NA NA
## 5178 NA NA
## 5179 39.861 53.924
## 5180 39.861 53.924
## 5181 39.861 53.924
## 5182 39.861 53.924
## 5183 39.861 53.924
## 5184 39.861 53.924
## 5185 NA NA
## 5186 NA NA
## 5187 NA NA
## 5188 NA NA
## 5189 NA NA
## 5190 NA NA
## 5191 NA NA
## 5192 NA NA
## 5193 NA NA
## 5194 NA NA
## 5195 NA NA
## 5196 NA NA
## 5197 NA NA
## 5198 NA NA
## 5199 NA NA
## 5200 NA NA
## 5201 NA NA
## 5202 NA NA
## 5203 NA NA
## 5204 NA NA
## 5205 NA NA
## 5206 NA NA
## 5207 NA NA
## 5208 NA NA
## 5209 1.597 28.754
## 5210 1.597 28.754
## 5211 1.597 28.754
## 5212 1.597 28.754
## 5213 1.597 28.754
## 5214 1.597 28.754
## 5215 8.186 26.263
## 5216 8.186 26.263
## 5217 8.186 26.263
## 5218 8.186 26.263
## 5219 8.186 26.263
## 5220 8.186 26.263
## 5221 NA NA
## 5222 NA NA
## 5223 NA NA
## 5224 NA NA
## 5225 NA NA
## 5226 NA NA
## 5227 NA NA
## 5228 NA NA
## 5229 NA NA
## 5230 NA NA
## 5231 NA NA
## 5232 NA NA
## 5233 NA NA
## 5234 NA NA
## 5235 NA NA
## 5236 NA NA
## 5237 NA NA
## 5238 NA NA
## 5239 NA NA
## 5240 NA NA
## 5241 NA NA
## 5242 NA NA
## 5243 NA NA
## 5244 NA NA
## 5245 NA NA
## 5246 NA NA
## 5247 NA NA
## 5248 NA NA
## 5249 NA NA
## 5250 NA NA
## 5251 12.996 22.901
## 5252 12.996 22.901
## 5253 12.996 22.901
## 5254 12.996 22.901
## 5255 12.996 22.901
## 5256 12.996 22.901
## 5257 20.977 29.254
## 5258 20.977 29.254
## 5259 20.977 29.254
## 5260 20.977 29.254
## 5261 20.977 29.254
## 5262 20.977 29.254
## 5263 NA NA
## 5264 NA NA
## 5265 NA NA
## 5266 NA NA
## 5267 NA NA
## 5268 NA NA
## 5269 NA NA
## 5270 NA NA
## 5271 NA NA
## 5272 NA NA
## 5273 NA NA
## 5274 NA NA
## 5275 NA NA
## 5276 NA NA
## 5277 NA NA
## 5278 NA NA
## 5279 NA NA
## 5280 NA NA
## 5281 1.615 137.669
## 5282 1.615 137.669
## 5283 1.615 137.669
## 5284 1.615 137.669
## 5285 1.615 137.669
## 5286 1.615 137.669
## 5287 38.045 44.875
## 5288 38.045 44.875
## 5289 38.045 44.875
## 5290 38.045 44.875
## 5291 38.045 44.875
## 5292 38.045 44.875
## 5293 NA NA
## 5294 NA NA
## 5295 NA NA
## 5296 NA NA
## 5297 NA NA
## 5298 NA NA
## 5299 NA NA
## 5300 NA NA
## 5301 NA NA
## 5302 NA NA
## 5303 NA NA
## 5304 NA NA
## 5305 NA NA
## 5306 NA NA
## 5307 NA NA
## 5308 NA NA
## 5309 NA NA
## 5310 NA NA
## 5311 NA NA
## 5312 NA NA
## 5313 NA NA
## 5314 NA NA
## 5315 NA NA
## 5316 NA NA
## 5317 NA NA
## 5318 NA NA
## 5319 NA NA
## 5320 NA NA
## 5321 NA NA
## 5322 NA NA
## 5323 NA NA
## 5324 NA NA
## 5325 NA NA
## 5326 NA NA
## 5327 NA NA
## 5328 NA NA
## 5329 26.928 57.426
## 5330 26.928 57.426
## 5331 26.928 57.426
## 5332 26.928 57.426
## 5333 26.928 57.426
## 5334 26.928 57.426
## 5335 NA NA
## 5336 NA NA
## 5337 NA NA
## 5338 NA NA
## 5339 NA NA
## 5340 NA NA
## 5341 9.122 26.276
## 5342 9.122 26.276
## 5343 9.122 26.276
## 5344 9.122 26.276
## 5345 9.122 26.276
## 5346 9.122 26.276
## 5347 NA NA
## 5348 NA NA
## 5349 NA NA
## 5350 NA NA
## 5351 NA NA
## 5352 NA NA
## 5353 NA NA
## 5354 NA NA
## 5355 NA NA
## 5356 NA NA
## 5357 NA NA
## 5358 NA NA
## 5359 NA NA
## 5360 NA NA
## 5361 NA NA
## 5362 NA NA
## 5363 NA NA
## 5364 NA NA
## 5365 NA NA
## 5366 NA NA
## 5367 NA NA
## 5368 NA NA
## 5369 NA NA
## 5370 NA NA
## 5371 NA NA
## 5372 NA NA
## 5373 NA NA
## 5374 NA NA
## 5375 NA NA
## 5376 NA NA
## 5377 87.989 99.728
## 5378 87.989 99.728
## 5379 87.989 99.728
## 5380 87.989 99.728
## 5381 87.989 99.728
## 5382 87.989 99.728
## 5383 7.260 64.301
## 5384 7.260 64.301
## 5385 7.260 64.301
## 5386 7.260 64.301
## 5387 7.260 64.301
## 5388 7.260 64.301
## 5389 NA NA
## 5390 NA NA
## 5391 NA NA
## 5392 NA NA
## 5393 NA NA
## 5394 NA NA
## 5395 NA NA
## 5396 NA NA
## 5397 NA NA
## 5398 NA NA
## 5399 NA NA
## 5400 NA NA
## 5401 9.402 16.445
## 5402 9.402 16.445
## 5403 9.402 16.445
## 5404 9.402 16.445
## 5405 9.402 16.445
## 5406 9.402 16.445
## 5407 64.261 89.592
## 5408 64.261 89.592
## 5409 64.261 89.592
## 5410 64.261 89.592
## 5411 64.261 89.592
## 5412 64.261 89.592
## 5413 NA NA
## 5414 NA NA
## 5415 NA NA
## 5416 NA NA
## 5417 NA NA
## 5418 NA NA
## 5419 NA NA
## 5420 NA NA
## 5421 NA NA
## 5422 NA NA
## 5423 NA NA
## 5424 NA NA
## 5425 NA NA
## 5426 NA NA
## 5427 NA NA
## 5428 NA NA
## 5429 NA NA
## 5430 NA NA
## 5431 NA NA
## 5432 NA NA
## 5433 NA NA
## 5434 NA NA
## 5435 NA NA
## 5436 NA NA
## 5437 NA NA
## 5438 NA NA
## 5439 NA NA
## 5440 NA NA
## 5441 NA NA
## 5442 NA NA
## 5443 29.420 45.118
## 5444 29.420 45.118
## 5445 29.420 45.118
## 5446 29.420 45.118
## 5447 29.420 45.118
## 5448 29.420 45.118
## 5449 958.845 970.122
## 5450 958.845 970.122
## 5451 958.845 970.122
## 5452 958.845 970.122
## 5453 958.845 970.122
## 5454 958.845 970.122
## 5455 NA NA
## 5456 NA NA
## 5457 NA NA
## 5458 NA NA
## 5459 NA NA
## 5460 NA NA
## 5461 NA NA
## 5462 NA NA
## 5463 NA NA
## 5464 NA NA
## 5465 NA NA
## 5466 NA NA
## 5467 1.291 23.272
## 5468 1.291 23.272
## 5469 1.291 23.272
## 5470 1.291 23.272
## 5471 1.291 23.272
## 5472 1.291 23.272
## 5473 18.901 36.010
## 5474 18.901 36.010
## 5475 18.901 36.010
## 5476 18.901 36.010
## 5477 18.901 36.010
## 5478 18.901 36.010
## 5479 2.990 17.978
## 5480 2.990 17.978
## 5481 2.990 17.978
## 5482 2.990 17.978
## 5483 2.990 17.978
## 5484 2.990 17.978
## 5485 NA NA
## 5486 NA NA
## 5487 NA NA
## 5488 NA NA
## 5489 NA NA
## 5490 NA NA
## 5491 NA NA
## 5492 NA NA
## 5493 NA NA
## 5494 NA NA
## 5495 NA NA
## 5496 NA NA
## 5497 NA NA
## 5498 NA NA
## 5499 NA NA
## 5500 NA NA
## 5501 NA NA
## 5502 NA NA
## 5503 NA NA
## 5504 NA NA
## 5505 NA NA
## 5506 NA NA
## 5507 NA NA
## 5508 NA NA
## 5509 NA NA
## 5510 NA NA
## 5511 NA NA
## 5512 NA NA
## 5513 NA NA
## 5514 NA NA
## 5515 NA NA
## 5516 NA NA
## 5517 NA NA
## 5518 NA NA
## 5519 NA NA
## 5520 NA NA
## 5521 NA NA
## 5522 NA NA
## 5523 NA NA
## 5524 NA NA
## 5525 NA NA
## 5526 NA NA
## 5527 NA NA
## 5528 NA NA
## 5529 NA NA
## 5530 NA NA
## 5531 NA NA
## 5532 NA NA
## 5533 NA NA
## 5534 NA NA
## 5535 NA NA
## 5536 NA NA
## 5537 NA NA
## 5538 NA NA
## 5539 NA NA
## 5540 NA NA
## 5541 NA NA
## 5542 NA NA
## 5543 NA NA
## 5544 NA NA
## 5545 NA NA
## 5546 NA NA
## 5547 NA NA
## 5548 NA NA
## 5549 NA NA
## 5550 NA NA
## 5551 6.509 15.193
## 5552 6.509 15.193
## 5553 6.509 15.193
## 5554 6.509 15.193
## 5555 6.509 15.193
## 5556 6.509 15.193
## 5557 NA NA
## 5558 NA NA
## 5559 NA NA
## 5560 NA NA
## 5561 NA NA
## 5562 NA NA
## 5563 28.638 40.421
## 5564 28.638 40.421
## 5565 28.638 40.421
## 5566 28.638 40.421
## 5567 28.638 40.421
## 5568 28.638 40.421
## 5569 NA NA
## 5570 NA NA
## 5571 NA NA
## 5572 NA NA
## 5573 NA NA
## 5574 NA NA
## 5575 8.387 13.400
## 5576 8.387 13.400
## 5577 8.387 13.400
## 5578 8.387 13.400
## 5579 8.387 13.400
## 5580 8.387 13.400
## 5581 NA NA
## 5582 NA NA
## 5583 NA NA
## 5584 NA NA
## 5585 NA NA
## 5586 NA NA
## 5587 NA NA
## 5588 NA NA
## 5589 NA NA
## 5590 NA NA
## 5591 NA NA
## 5592 NA NA
## 5593 NA NA
## 5594 NA NA
## 5595 NA NA
## 5596 NA NA
## 5597 NA NA
## 5598 NA NA
## 5599 1.858 49.048
## 5600 1.858 49.048
## 5601 1.858 49.048
## 5602 1.858 49.048
## 5603 1.858 49.048
## 5604 1.858 49.048
## 5605 NA NA
## 5606 NA NA
## 5607 NA NA
## 5608 NA NA
## 5609 NA NA
## 5610 NA NA
## 5611 NA NA
## 5612 NA NA
## 5613 NA NA
## 5614 NA NA
## 5615 NA NA
## 5616 NA NA
## 5617 NA NA
## 5618 NA NA
## 5619 NA NA
## 5620 NA NA
## 5621 NA NA
## 5622 NA NA
## 5623 NA NA
## 5624 NA NA
## 5625 NA NA
## 5626 NA NA
## 5627 NA NA
## 5628 NA NA
## 5629 13.893 41.860
## 5630 13.893 41.860
## 5631 13.893 41.860
## 5632 13.893 41.860
## 5633 13.893 41.860
## 5634 13.893 41.860
## 5635 NA NA
## 5636 NA NA
## 5637 NA NA
## 5638 NA NA
## 5639 NA NA
## 5640 NA NA
## 5641 NA NA
## 5642 NA NA
## 5643 NA NA
## 5644 NA NA
## 5645 NA NA
## 5646 NA NA
## 5647 12.680 28.260
## 5648 12.680 28.260
## 5649 12.680 28.260
## 5650 12.680 28.260
## 5651 12.680 28.260
## 5652 12.680 28.260
## 5653 NA NA
## 5654 NA NA
## 5655 NA NA
## 5656 NA NA
## 5657 NA NA
## 5658 NA NA
## 5659 NA NA
## 5660 NA NA
## 5661 NA NA
## 5662 NA NA
## 5663 NA NA
## 5664 NA NA
## 5665 28.121 33.674
## 5666 28.121 33.674
## 5667 28.121 33.674
## 5668 28.121 33.674
## 5669 28.121 33.674
## 5670 28.121 33.674
## 5671 NA NA
## 5672 NA NA
## 5673 NA NA
## 5674 NA NA
## 5675 NA NA
## 5676 NA NA
## 5677 NA NA
## 5678 NA NA
## 5679 NA NA
## 5680 NA NA
## 5681 NA NA
## 5682 NA NA
## 5683 NA NA
## 5684 NA NA
## 5685 NA NA
## 5686 NA NA
## 5687 NA NA
## 5688 NA NA
## 5689 25.714 40.131
## 5690 25.714 40.131
## 5691 25.714 40.131
## 5692 25.714 40.131
## 5693 25.714 40.131
## 5694 25.714 40.131
## 5695 NA NA
## 5696 NA NA
## 5697 NA NA
## 5698 NA NA
## 5699 NA NA
## 5700 NA NA
## 5701 NA NA
## 5702 NA NA
## 5703 NA NA
## 5704 NA NA
## 5705 NA NA
## 5706 NA NA
## 5707 3.433 38.182
## 5708 3.433 38.182
## 5709 3.433 38.182
## 5710 3.433 38.182
## 5711 3.433 38.182
## 5712 3.433 38.182
## 5713 NA NA
## 5714 NA NA
## 5715 NA NA
## 5716 NA NA
## 5717 NA NA
## 5718 NA NA
## 5719 NA NA
## 5720 NA NA
## 5721 NA NA
## 5722 NA NA
## 5723 NA NA
## 5724 NA NA
## 5725 NA NA
## 5726 NA NA
## 5727 NA NA
## 5728 NA NA
## 5729 NA NA
## 5730 NA NA
## 5731 NA NA
## 5732 NA NA
## 5733 NA NA
## 5734 NA NA
## 5735 NA NA
## 5736 NA NA
## 5737 24.030 41.571
## 5738 24.030 41.571
## 5739 24.030 41.571
## 5740 24.030 41.571
## 5741 24.030 41.571
## 5742 24.030 41.571
## 5743 NA NA
## 5744 NA NA
## 5745 NA NA
## 5746 NA NA
## 5747 NA NA
## 5748 NA NA
## 5749 8.102 10.622
## 5750 8.102 10.622
## 5751 8.102 10.622
## 5752 8.102 10.622
## 5753 8.102 10.622
## 5754 8.102 10.622
## 5755 NA NA
## 5756 NA NA
## 5757 NA NA
## 5758 NA NA
## 5759 NA NA
## 5760 NA NA
## 5761 NA NA
## 5762 NA NA
## 5763 NA NA
## 5764 NA NA
## 5765 NA NA
## 5766 NA NA
## 5767 2.310 22.989
## 5768 2.310 22.989
## 5769 2.310 22.989
## 5770 2.310 22.989
## 5771 2.310 22.989
## 5772 2.310 22.989
## 5773 NA NA
## 5774 NA NA
## 5775 NA NA
## 5776 NA NA
## 5777 NA NA
## 5778 NA NA
## 5779 NA NA
## 5780 NA NA
## 5781 NA NA
## 5782 NA NA
## 5783 NA NA
## 5784 NA NA
## 5785 NA NA
## 5786 NA NA
## 5787 NA NA
## 5788 NA NA
## 5789 NA NA
## 5790 NA NA
## 5791 NA NA
## 5792 NA NA
## 5793 NA NA
## 5794 NA NA
## 5795 NA NA
## 5796 NA NA
## 5797 7.434 35.009
## 5798 7.434 35.009
## 5799 7.434 35.009
## 5800 7.434 35.009
## 5801 7.434 35.009
## 5802 7.434 35.009
## 5803 NA NA
## 5804 NA NA
## 5805 NA NA
## 5806 NA NA
## 5807 NA NA
## 5808 NA NA
## 5809 NA NA
## 5810 NA NA
## 5811 NA NA
## 5812 NA NA
## 5813 NA NA
## 5814 NA NA
## 5815 5.181 17.678
## 5816 5.181 17.678
## 5817 5.181 17.678
## 5818 5.181 17.678
## 5819 5.181 17.678
## 5820 5.181 17.678
## 5821 NA NA
## 5822 NA NA
## 5823 NA NA
## 5824 NA NA
## 5825 NA NA
## 5826 NA NA
## 5827 NA NA
## 5828 NA NA
## 5829 NA NA
## 5830 NA NA
## 5831 NA NA
## 5832 NA NA
## 5833 7.708 92.587
## 5834 7.708 92.587
## 5835 7.708 92.587
## 5836 7.708 92.587
## 5837 7.708 92.587
## 5838 7.708 92.587
## 5839 NA NA
## 5840 NA NA
## 5841 NA NA
## 5842 NA NA
## 5843 NA NA
## 5844 NA NA
## 5845 NA NA
## 5846 NA NA
## 5847 NA NA
## 5848 NA NA
## 5849 NA NA
## 5850 NA NA
## 5851 NA NA
## 5852 NA NA
## 5853 NA NA
## 5854 NA NA
## 5855 NA NA
## 5856 NA NA
## 5857 NA NA
## 5858 NA NA
## 5859 NA NA
## 5860 NA NA
## 5861 NA NA
## 5862 NA NA
## 5863 NA NA
## 5864 NA NA
## 5865 NA NA
## 5866 NA NA
## 5867 NA NA
## 5868 NA NA
## 5869 26.801 52.201
## 5870 26.801 52.201
## 5871 26.801 52.201
## 5872 26.801 52.201
## 5873 26.801 52.201
## 5874 26.801 52.201
## 5875 61.667 134.871
## 5876 61.667 134.871
## 5877 61.667 134.871
## 5878 61.667 134.871
## 5879 61.667 134.871
## 5880 61.667 134.871
## 5881 NA NA
## 5882 NA NA
## 5883 NA NA
## 5884 NA NA
## 5885 NA NA
## 5886 NA NA
## 5887 14.330 49.130
## 5888 14.330 49.130
## 5889 14.330 49.130
## 5890 14.330 49.130
## 5891 14.330 49.130
## 5892 14.330 49.130
## 5893 7.799 18.725
## 5894 7.799 18.725
## 5895 7.799 18.725
## 5896 7.799 18.725
## 5897 7.799 18.725
## 5898 7.799 18.725
## 5899 NA NA
## 5900 NA NA
## 5901 NA NA
## 5902 NA NA
## 5903 NA NA
## 5904 NA NA
## 5905 NA NA
## 5906 NA NA
## 5907 NA NA
## 5908 NA NA
## 5909 NA NA
## 5910 NA NA
## 5911 NA NA
## 5912 NA NA
## 5913 NA NA
## 5914 NA NA
## 5915 NA NA
## 5916 NA NA
## 5917 NA NA
## 5918 NA NA
## 5919 NA NA
## 5920 NA NA
## 5921 NA NA
## 5922 NA NA
## 5923 NA NA
## 5924 NA NA
## 5925 NA NA
## 5926 NA NA
## 5927 NA NA
## 5928 NA NA
## 5929 NA NA
## 5930 NA NA
## 5931 NA NA
## 5932 NA NA
## 5933 NA NA
## 5934 NA NA
## 5935 NA NA
## 5936 NA NA
## 5937 NA NA
## 5938 NA NA
## 5939 NA NA
## 5940 NA NA
## 5941 NA NA
## 5942 NA NA
## 5943 NA NA
## 5944 NA NA
## 5945 NA NA
## 5946 NA NA
## 5947 10.877 25.600
## 5948 10.877 25.600
## 5949 10.877 25.600
## 5950 10.877 25.600
## 5951 10.877 25.600
## 5952 10.877 25.600
## 5953 9.067 48.173
## 5954 9.067 48.173
## 5955 9.067 48.173
## 5956 9.067 48.173
## 5957 9.067 48.173
## 5958 9.067 48.173
## 5959 NA NA
## 5960 NA NA
## 5961 NA NA
## 5962 NA NA
## 5963 NA NA
## 5964 NA NA
## 5965 NA NA
## 5966 NA NA
## 5967 NA NA
## 5968 NA NA
## 5969 NA NA
## 5970 NA NA
## 5971 NA NA
## 5972 NA NA
## 5973 NA NA
## 5974 NA NA
## 5975 NA NA
## 5976 NA NA
## 5977 NA NA
## 5978 NA NA
## 5979 NA NA
## 5980 NA NA
## 5981 NA NA
## 5982 NA NA
## 5983 4.984 11.265
## 5984 4.984 11.265
## 5985 4.984 11.265
## 5986 4.984 11.265
## 5987 4.984 11.265
## 5988 4.984 11.265
## 5989 20.428 30.800
## 5990 20.428 30.800
## 5991 20.428 30.800
## 5992 20.428 30.800
## 5993 20.428 30.800
## 5994 20.428 30.800
## 5995 NA NA
## 5996 NA NA
## 5997 NA NA
## 5998 NA NA
## 5999 NA NA
## 6000 NA NA
## 6001 219.760 223.857
## 6002 219.760 223.857
## 6003 219.760 223.857
## 6004 219.760 223.857
## 6005 219.760 223.857
## 6006 219.760 223.857
## 6007 NA NA
## 6008 NA NA
## 6009 NA NA
## 6010 NA NA
## 6011 NA NA
## 6012 NA NA
## 6013 17.022 40.296
## 6014 17.022 40.296
## 6015 17.022 40.296
## 6016 17.022 40.296
## 6017 17.022 40.296
## 6018 17.022 40.296
## 6019 NA NA
## 6020 NA NA
## 6021 NA NA
## 6022 NA NA
## 6023 NA NA
## 6024 NA NA
## 6025 NA NA
## 6026 NA NA
## 6027 NA NA
## 6028 NA NA
## 6029 NA NA
## 6030 NA NA
## 6031 NA NA
## 6032 NA NA
## 6033 NA NA
## 6034 NA NA
## 6035 NA NA
## 6036 NA NA
## 6037 NA NA
## 6038 NA NA
## 6039 NA NA
## 6040 NA NA
## 6041 NA NA
## 6042 NA NA
## 6043 NA NA
## 6044 NA NA
## 6045 NA NA
## 6046 NA NA
## 6047 NA NA
## 6048 NA NA
## 6049 NA NA
## 6050 NA NA
## 6051 NA NA
## 6052 NA NA
## 6053 NA NA
## 6054 NA NA
## 6055 14.063 102.535
## 6056 14.063 102.535
## 6057 14.063 102.535
## 6058 14.063 102.535
## 6059 14.063 102.535
## 6060 14.063 102.535
## 6061 11.401 34.393
## 6062 11.401 34.393
## 6063 11.401 34.393
## 6064 11.401 34.393
## 6065 11.401 34.393
## 6066 11.401 34.393
## 6067 NA NA
## 6068 NA NA
## 6069 NA NA
## 6070 NA NA
## 6071 NA NA
## 6072 NA NA
## 6073 NA NA
## 6074 NA NA
## 6075 NA NA
## 6076 NA NA
## 6077 NA NA
## 6078 NA NA
## 6079 NA NA
## 6080 NA NA
## 6081 NA NA
## 6082 NA NA
## 6083 NA NA
## 6084 NA NA
## 6085 NA NA
## 6086 NA NA
## 6087 NA NA
## 6088 NA NA
## 6089 NA NA
## 6090 NA NA
## 6091 NA NA
## 6092 NA NA
## 6093 NA NA
## 6094 NA NA
## 6095 NA NA
## 6096 NA NA
## 6097 NA NA
## 6098 NA NA
## 6099 NA NA
## 6100 NA NA
## 6101 NA NA
## 6102 NA NA
## 6103 3.708 49.928
## 6104 3.708 49.928
## 6105 3.708 49.928
## 6106 3.708 49.928
## 6107 3.708 49.928
## 6108 3.708 49.928
## 6109 NA NA
## 6110 NA NA
## 6111 NA NA
## 6112 NA NA
## 6113 NA NA
## 6114 NA NA
## 6115 NA NA
## 6116 NA NA
## 6117 NA NA
## 6118 NA NA
## 6119 NA NA
## 6120 NA NA
## 6121 NA NA
## 6122 NA NA
## 6123 NA NA
## 6124 NA NA
## 6125 NA NA
## 6126 NA NA
## 6127 NA NA
## 6128 NA NA
## 6129 NA NA
## 6130 NA NA
## 6131 NA NA
## 6132 NA NA
## 6133 NA NA
## 6134 NA NA
## 6135 NA NA
## 6136 NA NA
## 6137 NA NA
## 6138 NA NA
## 6139 NA NA
## 6140 NA NA
## 6141 NA NA
## 6142 NA NA
## 6143 NA NA
## 6144 NA NA
## 6145 NA NA
## 6146 NA NA
## 6147 NA NA
## 6148 NA NA
## 6149 NA NA
## 6150 NA NA
## 6151 NA NA
## 6152 NA NA
## 6153 NA NA
## 6154 NA NA
## 6155 NA NA
## 6156 NA NA
## 6157 NA NA
## 6158 NA NA
## 6159 NA NA
## 6160 NA NA
## 6161 NA NA
## 6162 NA NA
## 6163 NA NA
## 6164 NA NA
## 6165 NA NA
## 6166 NA NA
## 6167 NA NA
## 6168 NA NA
## 6169 NA NA
## 6170 NA NA
## 6171 NA NA
## 6172 NA NA
## 6173 NA NA
## 6174 NA NA
## 6175 NA NA
## 6176 NA NA
## 6177 NA NA
## 6178 NA NA
## 6179 NA NA
## 6180 NA NA
## 6181 NA NA
## 6182 NA NA
## 6183 NA NA
## 6184 NA NA
## 6185 NA NA
## 6186 NA NA
## 6187 NA NA
## 6188 NA NA
## 6189 NA NA
## 6190 NA NA
## 6191 NA NA
## 6192 NA NA
## 6193 NA NA
## 6194 NA NA
## 6195 NA NA
## 6196 NA NA
## 6197 NA NA
## 6198 NA NA
## 6199 NA NA
## 6200 NA NA
## 6201 NA NA
## 6202 NA NA
## 6203 NA NA
## 6204 NA NA
## 6205 NA NA
## 6206 NA NA
## 6207 NA NA
## 6208 NA NA
## 6209 NA NA
## 6210 NA NA
## 6211 NA NA
## 6212 NA NA
## 6213 NA NA
## 6214 NA NA
## 6215 NA NA
## 6216 NA NA
## 6217 NA NA
## 6218 NA NA
## 6219 NA NA
## 6220 NA NA
## 6221 NA NA
## 6222 NA NA
## 6223 5.491 11.448
## 6224 5.491 11.448
## 6225 5.491 11.448
## 6226 5.491 11.448
## 6227 5.491 11.448
## 6228 5.491 11.448
## 6229 12.347 21.563
## 6230 12.347 21.563
## 6231 12.347 21.563
## 6232 12.347 21.563
## 6233 12.347 21.563
## 6234 12.347 21.563
## 6235 13.191 27.420
## 6236 13.191 27.420
## 6237 13.191 27.420
## 6238 13.191 27.420
## 6239 13.191 27.420
## 6240 13.191 27.420
## 6241 NA NA
## 6242 NA NA
## 6243 NA NA
## 6244 NA NA
## 6245 NA NA
## 6246 NA NA
## 6247 9.609 16.128
## 6248 9.609 16.128
## 6249 9.609 16.128
## 6250 9.609 16.128
## 6251 9.609 16.128
## 6252 9.609 16.128
## 6253 NA NA
## 6254 NA NA
## 6255 NA NA
## 6256 NA NA
## 6257 NA NA
## 6258 NA NA
## 6259 NA NA
## 6260 NA NA
## 6261 NA NA
## 6262 NA NA
## 6263 NA NA
## 6264 NA NA
## 6265 30.636 87.785
## 6266 30.636 87.785
## 6267 30.636 87.785
## 6268 30.636 87.785
## 6269 30.636 87.785
## 6270 30.636 87.785
## 6271 1.736 54.188
## 6272 1.736 54.188
## 6273 1.736 54.188
## 6274 1.736 54.188
## 6275 1.736 54.188
## 6276 1.736 54.188
## 6277 74.323 78.706
## 6278 74.323 78.706
## 6279 74.323 78.706
## 6280 74.323 78.706
## 6281 74.323 78.706
## 6282 74.323 78.706
## 6283 NA NA
## 6284 NA NA
## 6285 NA NA
## 6286 NA NA
## 6287 NA NA
## 6288 NA NA
## 6289 NA NA
## 6290 NA NA
## 6291 NA NA
## 6292 NA NA
## 6293 NA NA
## 6294 NA NA
## 6295 NA NA
## 6296 NA NA
## 6297 NA NA
## 6298 NA NA
## 6299 NA NA
## 6300 NA NA
## 6301 NA NA
## 6302 NA NA
## 6303 NA NA
## 6304 NA NA
## 6305 NA NA
## 6306 NA NA
## 6307 NA NA
## 6308 NA NA
## 6309 NA NA
## 6310 NA NA
## 6311 NA NA
## 6312 NA NA
## 6313 NA NA
## 6314 NA NA
## 6315 NA NA
## 6316 NA NA
## 6317 NA NA
## 6318 NA NA
## 6319 NA NA
## 6320 NA NA
## 6321 NA NA
## 6322 NA NA
## 6323 NA NA
## 6324 NA NA
## 6325 17.534 25.428
## 6326 17.534 25.428
## 6327 17.534 25.428
## 6328 17.534 25.428
## 6329 17.534 25.428
## 6330 17.534 25.428
## 6331 NA NA
## 6332 NA NA
## 6333 NA NA
## 6334 NA NA
## 6335 NA NA
## 6336 NA NA
## 6337 9.360 20.837
## 6338 9.360 20.837
## 6339 9.360 20.837
## 6340 9.360 20.837
## 6341 9.360 20.837
## 6342 9.360 20.837
## 6343 NA NA
## 6344 NA NA
## 6345 NA NA
## 6346 NA NA
## 6347 NA NA
## 6348 NA NA
## 6349 NA NA
## 6350 NA NA
## 6351 NA NA
## 6352 NA NA
## 6353 NA NA
## 6354 NA NA
## 6355 9.223 18.221
## 6356 9.223 18.221
## 6357 9.223 18.221
## 6358 9.223 18.221
## 6359 9.223 18.221
## 6360 9.223 18.221
## 6361 21.422 62.931
## 6362 21.422 62.931
## 6363 21.422 62.931
## 6364 21.422 62.931
## 6365 21.422 62.931
## 6366 21.422 62.931
## 6367 NA NA
## 6368 NA NA
## 6369 NA NA
## 6370 NA NA
## 6371 NA NA
## 6372 NA NA
## 6373 NA NA
## 6374 NA NA
## 6375 NA NA
## 6376 NA NA
## 6377 NA NA
## 6378 NA NA
## 6379 NA NA
## 6380 NA NA
## 6381 NA NA
## 6382 NA NA
## 6383 NA NA
## 6384 NA NA
## 6385 9.226 12.637
## 6386 9.226 12.637
## 6387 9.226 12.637
## 6388 9.226 12.637
## 6389 9.226 12.637
## 6390 9.226 12.637
## 6391 NA NA
## 6392 NA NA
## 6393 NA NA
## 6394 NA NA
## 6395 NA NA
## 6396 NA NA
## 6397 27.568 46.811
## 6398 27.568 46.811
## 6399 27.568 46.811
## 6400 27.568 46.811
## 6401 27.568 46.811
## 6402 27.568 46.811
## 6403 NA NA
## 6404 NA NA
## 6405 NA NA
## 6406 NA NA
## 6407 NA NA
## 6408 NA NA
## 6409 NA NA
## 6410 NA NA
## 6411 NA NA
## 6412 NA NA
## 6413 NA NA
## 6414 NA NA
## 6415 4.156 9.859
## 6416 4.156 9.859
## 6417 4.156 9.859
## 6418 4.156 9.859
## 6419 4.156 9.859
## 6420 4.156 9.859
## 6421 NA NA
## 6422 NA NA
## 6423 NA NA
## 6424 NA NA
## 6425 NA NA
## 6426 NA NA
## 6427 NA NA
## 6428 NA NA
## 6429 NA NA
## 6430 NA NA
## 6431 NA NA
## 6432 NA NA
## 6433 8.470 18.170
## 6434 8.470 18.170
## 6435 8.470 18.170
## 6436 8.470 18.170
## 6437 8.470 18.170
## 6438 8.470 18.170
## 6439 NA NA
## 6440 NA NA
## 6441 NA NA
## 6442 NA NA
## 6443 NA NA
## 6444 NA NA
## 6445 NA NA
## 6446 NA NA
## 6447 NA NA
## 6448 NA NA
## 6449 NA NA
## 6450 NA NA
## 6451 NA NA
## 6452 NA NA
## 6453 NA NA
## 6454 NA NA
## 6455 NA NA
## 6456 NA NA
## 6457 NA NA
## 6458 NA NA
## 6459 NA NA
## 6460 NA NA
## 6461 NA NA
## 6462 NA NA
## 6463 NA NA
## 6464 NA NA
## 6465 NA NA
## 6466 NA NA
## 6467 NA NA
## 6468 NA NA
## 6469 NA NA
## 6470 NA NA
## 6471 NA NA
## 6472 NA NA
## 6473 NA NA
## 6474 NA NA
## 6475 NA NA
## 6476 NA NA
## 6477 NA NA
## 6478 NA NA
## 6479 NA NA
## 6480 NA NA
## 6481 NA NA
## 6482 NA NA
## 6483 NA NA
## 6484 NA NA
## 6485 NA NA
## 6486 NA NA
## 6487 NA NA
## 6488 NA NA
## 6489 NA NA
## 6490 NA NA
## 6491 NA NA
## 6492 NA NA
## 6493 NA NA
## 6494 NA NA
## 6495 NA NA
## 6496 NA NA
## 6497 NA NA
## 6498 NA NA
## 6499 NA NA
## 6500 NA NA
## 6501 NA NA
## 6502 NA NA
## 6503 NA NA
## 6504 NA NA
## 6505 NA NA
## 6506 NA NA
## 6507 NA NA
## 6508 NA NA
## 6509 NA NA
## 6510 NA NA
## 6511 NA NA
## 6512 NA NA
## 6513 NA NA
## 6514 NA NA
## 6515 NA NA
## 6516 NA NA
## 6517 NA NA
## 6518 NA NA
## 6519 NA NA
## 6520 NA NA
## 6521 NA NA
## 6522 NA NA
## 6523 14.813 22.226
## 6524 14.813 22.226
## 6525 14.813 22.226
## 6526 14.813 22.226
## 6527 14.813 22.226
## 6528 14.813 22.226
## 6529 NA NA
## 6530 NA NA
## 6531 NA NA
## 6532 NA NA
## 6533 NA NA
## 6534 NA NA
## 6535 NA NA
## 6536 NA NA
## 6537 NA NA
## 6538 NA NA
## 6539 NA NA
## 6540 NA NA
## 6541 NA NA
## 6542 NA NA
## 6543 NA NA
## 6544 NA NA
## 6545 NA NA
## 6546 NA NA
## 6547 NA NA
## 6548 NA NA
## 6549 NA NA
## 6550 NA NA
## 6551 NA NA
## 6552 NA NA
## 6553 NA NA
## 6554 NA NA
## 6555 NA NA
## 6556 NA NA
## 6557 NA NA
## 6558 NA NA
## 6559 NA NA
## 6560 NA NA
## 6561 NA NA
## 6562 NA NA
## 6563 NA NA
## 6564 NA NA
## 6565 5.812 29.979
## 6566 5.812 29.979
## 6567 5.812 29.979
## 6568 5.812 29.979
## 6569 5.812 29.979
## 6570 5.812 29.979
## 6571 NA NA
## 6572 NA NA
## 6573 NA NA
## 6574 NA NA
## 6575 NA NA
## 6576 NA NA
## 6577 NA NA
## 6578 NA NA
## 6579 NA NA
## 6580 NA NA
## 6581 NA NA
## 6582 NA NA
## 6583 NA NA
## 6584 NA NA
## 6585 NA NA
## 6586 NA NA
## 6587 NA NA
## 6588 NA NA
## 6589 NA NA
## 6590 NA NA
## 6591 NA NA
## 6592 NA NA
## 6593 NA NA
## 6594 NA NA
## 6595 NA NA
## 6596 NA NA
## 6597 NA NA
## 6598 NA NA
## 6599 NA NA
## 6600 NA NA
## 6601 5.078 22.462
## 6602 5.078 22.462
## 6603 5.078 22.462
## 6604 5.078 22.462
## 6605 5.078 22.462
## 6606 5.078 22.462
## 6607 NA NA
## 6608 NA NA
## 6609 NA NA
## 6610 NA NA
## 6611 NA NA
## 6612 NA NA
## 6613 NA NA
## 6614 NA NA
## 6615 NA NA
## 6616 NA NA
## 6617 NA NA
## 6618 NA NA
## 6619 15.768 22.658
## 6620 15.768 22.658
## 6621 15.768 22.658
## 6622 15.768 22.658
## 6623 15.768 22.658
## 6624 15.768 22.658
## 6625 NA NA
## 6626 NA NA
## 6627 NA NA
## 6628 NA NA
## 6629 NA NA
## 6630 NA NA
## 6631 NA NA
## 6632 NA NA
## 6633 NA NA
## 6634 NA NA
## 6635 NA NA
## 6636 NA NA
## 6637 NA NA
## 6638 NA NA
## 6639 NA NA
## 6640 NA NA
## 6641 NA NA
## 6642 NA NA
## 6643 NA NA
## 6644 NA NA
## 6645 NA NA
## 6646 NA NA
## 6647 NA NA
## 6648 NA NA
## 6649 NA NA
## 6650 NA NA
## 6651 NA NA
## 6652 NA NA
## 6653 NA NA
## 6654 NA NA
## 6655 NA NA
## 6656 NA NA
## 6657 NA NA
## 6658 NA NA
## 6659 NA NA
## 6660 NA NA
## 6661 NA NA
## 6662 NA NA
## 6663 NA NA
## 6664 NA NA
## 6665 NA NA
## 6666 NA NA
## 6667 NA NA
## 6668 NA NA
## 6669 NA NA
## 6670 NA NA
## 6671 NA NA
## 6672 NA NA
## 6673 NA NA
## 6674 NA NA
## 6675 NA NA
## 6676 NA NA
## 6677 NA NA
## 6678 NA NA
## 6679 NA NA
## 6680 NA NA
## 6681 NA NA
## 6682 NA NA
## 6683 NA NA
## 6684 NA NA
## 6685 NA NA
## 6686 NA NA
## 6687 NA NA
## 6688 NA NA
## 6689 NA NA
## 6690 NA NA
## 6691 NA NA
## 6692 NA NA
## 6693 NA NA
## 6694 NA NA
## 6695 NA NA
## 6696 NA NA
## 6697 NA NA
## 6698 NA NA
## 6699 NA NA
## 6700 NA NA
## 6701 NA NA
## 6702 NA NA
## 6703 NA NA
## 6704 NA NA
## 6705 NA NA
## 6706 NA NA
## 6707 NA NA
## 6708 NA NA
## 6709 20.088 38.141
## 6710 20.088 38.141
## 6711 20.088 38.141
## 6712 20.088 38.141
## 6713 20.088 38.141
## 6714 20.088 38.141
## 6715 NA NA
## 6716 NA NA
## 6717 NA NA
## 6718 NA NA
## 6719 NA NA
## 6720 NA NA
## 6721 41.935 52.300
## 6722 41.935 52.300
## 6723 41.935 52.300
## 6724 41.935 52.300
## 6725 41.935 52.300
## 6726 41.935 52.300
## 6727 NA NA
## 6728 NA NA
## 6729 NA NA
## 6730 NA NA
## 6731 NA NA
## 6732 NA NA
## 6733 NA NA
## 6734 NA NA
## 6735 NA NA
## 6736 NA NA
## 6737 NA NA
## 6738 NA NA
## 6739 26.701 39.046
## 6740 26.701 39.046
## 6741 26.701 39.046
## 6742 26.701 39.046
## 6743 26.701 39.046
## 6744 26.701 39.046
## 6745 310.862 348.774
## 6746 310.862 348.774
## 6747 310.862 348.774
## 6748 310.862 348.774
## 6749 310.862 348.774
## 6750 310.862 348.774
## 6751 NA NA
## 6752 NA NA
## 6753 NA NA
## 6754 NA NA
## 6755 NA NA
## 6756 NA NA
## 6757 5.875 25.883
## 6758 5.875 25.883
## 6759 5.875 25.883
## 6760 5.875 25.883
## 6761 5.875 25.883
## 6762 5.875 25.883
## 6763 NA NA
## 6764 NA NA
## 6765 NA NA
## 6766 NA NA
## 6767 NA NA
## 6768 NA NA
## 6769 NA NA
## 6770 NA NA
## 6771 NA NA
## 6772 NA NA
## 6773 NA NA
## 6774 NA NA
## 6775 NA NA
## 6776 NA NA
## 6777 NA NA
## 6778 NA NA
## 6779 NA NA
## 6780 NA NA
## 6781 NA NA
## 6782 NA NA
## 6783 NA NA
## 6784 NA NA
## 6785 NA NA
## 6786 NA NA
## 6787 NA NA
## 6788 NA NA
## 6789 NA NA
## 6790 NA NA
## 6791 NA NA
## 6792 NA NA
## 6793 4.066 8.488
## 6794 4.066 8.488
## 6795 4.066 8.488
## 6796 4.066 8.488
## 6797 4.066 8.488
## 6798 4.066 8.488
## 6799 14.971 23.785
## 6800 14.971 23.785
## 6801 14.971 23.785
## 6802 14.971 23.785
## 6803 14.971 23.785
## 6804 14.971 23.785
## 6805 NA NA
## 6806 NA NA
## 6807 NA NA
## 6808 NA NA
## 6809 NA NA
## 6810 NA NA
## 6811 NA NA
## 6812 NA NA
## 6813 NA NA
## 6814 NA NA
## 6815 NA NA
## 6816 NA NA
## 6817 NA NA
## 6818 NA NA
## 6819 NA NA
## 6820 NA NA
## 6821 NA NA
## 6822 NA NA
## 6823 NA NA
## 6824 NA NA
## 6825 NA NA
## 6826 NA NA
## 6827 NA NA
## 6828 NA NA
## 6829 NA NA
## 6830 NA NA
## 6831 NA NA
## 6832 NA NA
## 6833 NA NA
## 6834 NA NA
## 6835 NA NA
## 6836 NA NA
## 6837 NA NA
## 6838 NA NA
## 6839 NA NA
## 6840 NA NA
## 6841 18.879 32.734
## 6842 18.879 32.734
## 6843 18.879 32.734
## 6844 18.879 32.734
## 6845 18.879 32.734
## 6846 18.879 32.734
## 6847 NA NA
## 6848 NA NA
## 6849 NA NA
## 6850 NA NA
## 6851 NA NA
## 6852 NA NA
## 6853 11.346 19.915
## 6854 11.346 19.915
## 6855 11.346 19.915
## 6856 11.346 19.915
## 6857 11.346 19.915
## 6858 11.346 19.915
## 6859 NA NA
## 6860 NA NA
## 6861 NA NA
## 6862 NA NA
## 6863 NA NA
## 6864 NA NA
## 6865 NA NA
## 6866 NA NA
## 6867 NA NA
## 6868 NA NA
## 6869 NA NA
## 6870 NA NA
## 6871 NA NA
## 6872 NA NA
## 6873 NA NA
## 6874 NA NA
## 6875 NA NA
## 6876 NA NA
## 6877 NA NA
## 6878 NA NA
## 6879 NA NA
## 6880 NA NA
## 6881 NA NA
## 6882 NA NA
## 6883 10.378 46.423
## 6884 10.378 46.423
## 6885 10.378 46.423
## 6886 10.378 46.423
## 6887 10.378 46.423
## 6888 10.378 46.423
## 6889 NA NA
## 6890 NA NA
## 6891 NA NA
## 6892 NA NA
## 6893 NA NA
## 6894 NA NA
## 6895 NA NA
## 6896 NA NA
## 6897 NA NA
## 6898 NA NA
## 6899 NA NA
## 6900 NA NA
## 6901 NA NA
## 6902 NA NA
## 6903 NA NA
## 6904 NA NA
## 6905 NA NA
## 6906 NA NA
## 6907 18.656 26.858
## 6908 18.656 26.858
## 6909 18.656 26.858
## 6910 18.656 26.858
## 6911 18.656 26.858
## 6912 18.656 26.858
## 6913 NA NA
## 6914 NA NA
## 6915 NA NA
## 6916 NA NA
## 6917 NA NA
## 6918 NA NA
## 6919 12.016 46.622
## 6920 12.016 46.622
## 6921 12.016 46.622
## 6922 12.016 46.622
## 6923 12.016 46.622
## 6924 12.016 46.622
## 6925 NA NA
## 6926 NA NA
## 6927 NA NA
## 6928 NA NA
## 6929 NA NA
## 6930 NA NA
## 6931 NA NA
## 6932 NA NA
## 6933 NA NA
## 6934 NA NA
## 6935 NA NA
## 6936 NA NA
## 6937 12.901 33.129
## 6938 12.901 33.129
## 6939 12.901 33.129
## 6940 12.901 33.129
## 6941 12.901 33.129
## 6942 12.901 33.129
## 6943 NA NA
## 6944 NA NA
## 6945 NA NA
## 6946 NA NA
## 6947 NA NA
## 6948 NA NA
## 6949 NA NA
## 6950 NA NA
## 6951 NA NA
## 6952 NA NA
## 6953 NA NA
## 6954 NA NA
## 6955 NA NA
## 6956 NA NA
## 6957 NA NA
## 6958 NA NA
## 6959 NA NA
## 6960 NA NA
## 6961 NA NA
## 6962 NA NA
## 6963 NA NA
## 6964 NA NA
## 6965 NA NA
## 6966 NA NA
## 6967 NA NA
## 6968 NA NA
## 6969 NA NA
## 6970 NA NA
## 6971 NA NA
## 6972 NA NA
## 6973 NA NA
## 6974 NA NA
## 6975 NA NA
## 6976 NA NA
## 6977 NA NA
## 6978 NA NA
## 6979 NA NA
## 6980 NA NA
## 6981 NA NA
## 6982 NA NA
## 6983 NA NA
## 6984 NA NA
## 6985 NA NA
## 6986 NA NA
## 6987 NA NA
## 6988 NA NA
## 6989 NA NA
## 6990 NA NA
## 6991 NA NA
## 6992 NA NA
## 6993 NA NA
## 6994 NA NA
## 6995 NA NA
## 6996 NA NA
## 6997 NA NA
## 6998 NA NA
## 6999 NA NA
## 7000 NA NA
## 7001 NA NA
## 7002 NA NA
## 7003 NA NA
## 7004 NA NA
## 7005 NA NA
## 7006 NA NA
## 7007 NA NA
## 7008 NA NA
## 7009 NA NA
## 7010 NA NA
## 7011 NA NA
## 7012 NA NA
## 7013 NA NA
## 7014 NA NA
## 7015 NA NA
## 7016 NA NA
## 7017 NA NA
## 7018 NA NA
## 7019 NA NA
## 7020 NA NA
## 7021 28.771 42.652
## 7022 28.771 42.652
## 7023 28.771 42.652
## 7024 28.771 42.652
## 7025 28.771 42.652
## 7026 28.771 42.652
## 7027 NA NA
## 7028 NA NA
## 7029 NA NA
## 7030 NA NA
## 7031 NA NA
## 7032 NA NA
## 7033 18.190 31.428
## 7034 18.190 31.428
## 7035 18.190 31.428
## 7036 18.190 31.428
## 7037 18.190 31.428
## 7038 18.190 31.428
## 7039 NA NA
## 7040 NA NA
## 7041 NA NA
## 7042 NA NA
## 7043 NA NA
## 7044 NA NA
## 7045 NA NA
## 7046 NA NA
## 7047 NA NA
## 7048 NA NA
## 7049 NA NA
## 7050 NA NA
## 7051 NA NA
## 7052 NA NA
## 7053 NA NA
## 7054 NA NA
## 7055 NA NA
## 7056 NA NA
## 7057 7.383 27.531
## 7058 7.383 27.531
## 7059 7.383 27.531
## 7060 7.383 27.531
## 7061 7.383 27.531
## 7062 7.383 27.531
## 7063 NA NA
## 7064 NA NA
## 7065 NA NA
## 7066 NA NA
## 7067 NA NA
## 7068 NA NA
## 7069 NA NA
## 7070 NA NA
## 7071 NA NA
## 7072 NA NA
## 7073 NA NA
## 7074 NA NA
## 7075 NA NA
## 7076 NA NA
## 7077 NA NA
## 7078 NA NA
## 7079 NA NA
## 7080 NA NA
## 7081 NA NA
## 7082 NA NA
## 7083 NA NA
## 7084 NA NA
## 7085 NA NA
## 7086 NA NA
## 7087 32.154 51.094
## 7088 32.154 51.094
## 7089 32.154 51.094
## 7090 32.154 51.094
## 7091 32.154 51.094
## 7092 32.154 51.094
## 7093 NA NA
## 7094 NA NA
## 7095 NA NA
## 7096 NA NA
## 7097 NA NA
## 7098 NA NA
## 7099 NA NA
## 7100 NA NA
## 7101 NA NA
## 7102 NA NA
## 7103 NA NA
## 7104 NA NA
## 7105 NA NA
## 7106 NA NA
## 7107 NA NA
## 7108 NA NA
## 7109 NA NA
## 7110 NA NA
## 7111 NA NA
## 7112 NA NA
## 7113 NA NA
## 7114 NA NA
## 7115 NA NA
## 7116 NA NA
## 7117 14.482 30.375
## 7118 14.482 30.375
## 7119 14.482 30.375
## 7120 14.482 30.375
## 7121 14.482 30.375
## 7122 14.482 30.375
## 7123 NA NA
## 7124 NA NA
## 7125 NA NA
## 7126 NA NA
## 7127 NA NA
## 7128 NA NA
## 7129 NA NA
## 7130 NA NA
## 7131 NA NA
## 7132 NA NA
## 7133 NA NA
## 7134 NA NA
## 7135 28.433 47.676
## 7136 28.433 47.676
## 7137 28.433 47.676
## 7138 28.433 47.676
## 7139 28.433 47.676
## 7140 28.433 47.676
## 7141 9.642 24.001
## 7142 9.642 24.001
## 7143 9.642 24.001
## 7144 9.642 24.001
## 7145 9.642 24.001
## 7146 9.642 24.001
## 7147 NA NA
## 7148 NA NA
## 7149 NA NA
## 7150 NA NA
## 7151 NA NA
## 7152 NA NA
## 7153 NA NA
## 7154 NA NA
## 7155 NA NA
## 7156 NA NA
## 7157 NA NA
## 7158 NA NA
## 7159 NA NA
## 7160 NA NA
## 7161 NA NA
## 7162 NA NA
## 7163 NA NA
## 7164 NA NA
## 7165 NA NA
## 7166 NA NA
## 7167 NA NA
## 7168 NA NA
## 7169 NA NA
## 7170 NA NA
## 7171 NA NA
## 7172 NA NA
## 7173 NA NA
## 7174 NA NA
## 7175 NA NA
## 7176 NA NA
## 7177 NA NA
## 7178 NA NA
## 7179 NA NA
## 7180 NA NA
## 7181 NA NA
## 7182 NA NA
## 7183 NA NA
## 7184 NA NA
## 7185 NA NA
## 7186 NA NA
## 7187 NA NA
## 7188 NA NA
## 7189 6.297 22.574
## 7190 6.297 22.574
## 7191 6.297 22.574
## 7192 6.297 22.574
## 7193 6.297 22.574
## 7194 6.297 22.574
## 7195 NA NA
## 7196 NA NA
## 7197 NA NA
## 7198 NA NA
## 7199 NA NA
## 7200 NA NA
## 7201 NA NA
## 7202 NA NA
## 7203 NA NA
## 7204 NA NA
## 7205 NA NA
## 7206 NA NA
## 7207 32.868 69.676
## 7208 32.868 69.676
## 7209 32.868 69.676
## 7210 32.868 69.676
## 7211 32.868 69.676
## 7212 32.868 69.676
## 7213 NA NA
## 7214 NA NA
## 7215 NA NA
## 7216 NA NA
## 7217 NA NA
## 7218 NA NA
## 7219 NA NA
## 7220 NA NA
## 7221 NA NA
## 7222 NA NA
## 7223 NA NA
## 7224 NA NA
## 7225 NA NA
## 7226 NA NA
## 7227 NA NA
## 7228 NA NA
## 7229 NA NA
## 7230 NA NA
## 7231 NA NA
## 7232 NA NA
## 7233 NA NA
## 7234 NA NA
## 7235 NA NA
## 7236 NA NA
## 7237 NA NA
## 7238 NA NA
## 7239 NA NA
## 7240 NA NA
## 7241 NA NA
## 7242 NA NA
## 7243 15.119 59.307
## 7244 15.119 59.307
## 7245 15.119 59.307
## 7246 15.119 59.307
## 7247 15.119 59.307
## 7248 15.119 59.307
## 7249 16.500 33.869
## 7250 16.500 33.869
## 7251 16.500 33.869
## 7252 16.500 33.869
## 7253 16.500 33.869
## 7254 16.500 33.869
## 7255 NA NA
## 7256 NA NA
## 7257 NA NA
## 7258 NA NA
## 7259 NA NA
## 7260 NA NA
## 7261 NA NA
## 7262 NA NA
## 7263 NA NA
## 7264 NA NA
## 7265 NA NA
## 7266 NA NA
## 7267 NA NA
## 7268 NA NA
## 7269 NA NA
## 7270 NA NA
## 7271 NA NA
## 7272 NA NA
## 7273 NA NA
## 7274 NA NA
## 7275 NA NA
## 7276 NA NA
## 7277 NA NA
## 7278 NA NA
## 7279 NA NA
## 7280 NA NA
## 7281 NA NA
## 7282 NA NA
## 7283 NA NA
## 7284 NA NA
## 7285 NA NA
## 7286 NA NA
## 7287 NA NA
## 7288 NA NA
## 7289 NA NA
## 7290 NA NA
## 7291 20.234 27.850
## 7292 20.234 27.850
## 7293 20.234 27.850
## 7294 20.234 27.850
## 7295 20.234 27.850
## 7296 20.234 27.850
## 7297 NA NA
## 7298 NA NA
## 7299 NA NA
## 7300 NA NA
## 7301 NA NA
## 7302 NA NA
## 7303 NA NA
## 7304 NA NA
## 7305 NA NA
## 7306 NA NA
## 7307 NA NA
## 7308 NA NA
## 7309 15.544 46.822
## 7310 15.544 46.822
## 7311 15.544 46.822
## 7312 15.544 46.822
## 7313 15.544 46.822
## 7314 15.544 46.822
## 7315 6.021 49.476
## 7316 6.021 49.476
## 7317 6.021 49.476
## 7318 6.021 49.476
## 7319 6.021 49.476
## 7320 6.021 49.476
## 7321 4.406 71.324
## 7322 4.406 71.324
## 7323 4.406 71.324
## 7324 4.406 71.324
## 7325 4.406 71.324
## 7326 4.406 71.324
## 7327 NA NA
## 7328 NA NA
## 7329 NA NA
## 7330 NA NA
## 7331 NA NA
## 7332 NA NA
## 7333 NA NA
## 7334 NA NA
## 7335 NA NA
## 7336 NA NA
## 7337 NA NA
## 7338 NA NA
## 7339 NA NA
## 7340 NA NA
## 7341 NA NA
## 7342 NA NA
## 7343 NA NA
## 7344 NA NA
## 7345 NA NA
## 7346 NA NA
## 7347 NA NA
## 7348 NA NA
## 7349 NA NA
## 7350 NA NA
## 7351 NA NA
## 7352 NA NA
## 7353 NA NA
## 7354 NA NA
## 7355 NA NA
## 7356 NA NA
## 7357 NA NA
## 7358 NA NA
## 7359 NA NA
## 7360 NA NA
## 7361 NA NA
## 7362 NA NA
## 7363 NA NA
## 7364 NA NA
## 7365 NA NA
## 7366 NA NA
## 7367 NA NA
## 7368 NA NA
## 7369 NA NA
## 7370 NA NA
## 7371 NA NA
## 7372 NA NA
## 7373 NA NA
## 7374 NA NA
## 7375 NA NA
## 7376 NA NA
## 7377 NA NA
## 7378 NA NA
## 7379 NA NA
## 7380 NA NA
## 7381 NA NA
## 7382 NA NA
## 7383 NA NA
## 7384 NA NA
## 7385 NA NA
## 7386 NA NA
## 7387 15.721 59.734
## 7388 15.721 59.734
## 7389 15.721 59.734
## 7390 15.721 59.734
## 7391 15.721 59.734
## 7392 15.721 59.734
## 7393 14.500 33.662
## 7394 14.500 33.662
## 7395 14.500 33.662
## 7396 14.500 33.662
## 7397 14.500 33.662
## 7398 14.500 33.662
## 7399 NA NA
## 7400 NA NA
## 7401 NA NA
## 7402 NA NA
## 7403 NA NA
## 7404 NA NA
## 7405 NA NA
## 7406 NA NA
## 7407 NA NA
## 7408 NA NA
## 7409 NA NA
## 7410 NA NA
## 7411 11.155 27.727
## 7412 11.155 27.727
## 7413 11.155 27.727
## 7414 11.155 27.727
## 7415 11.155 27.727
## 7416 11.155 27.727
## 7417 165.386 205.922
## 7418 165.386 205.922
## 7419 165.386 205.922
## 7420 165.386 205.922
## 7421 165.386 205.922
## 7422 165.386 205.922
## 7423 NA NA
## 7424 NA NA
## 7425 NA NA
## 7426 NA NA
## 7427 NA NA
## 7428 NA NA
## 7429 51.823 67.953
## 7430 51.823 67.953
## 7431 51.823 67.953
## 7432 51.823 67.953
## 7433 51.823 67.953
## 7434 51.823 67.953
## 7435 NA NA
## 7436 NA NA
## 7437 NA NA
## 7438 NA NA
## 7439 NA NA
## 7440 NA NA
## 7441 NA NA
## 7442 NA NA
## 7443 NA NA
## 7444 NA NA
## 7445 NA NA
## 7446 NA NA
## 7447 NA NA
## 7448 NA NA
## 7449 NA NA
## 7450 NA NA
## 7451 NA NA
## 7452 NA NA
## 7453 NA NA
## 7454 NA NA
## 7455 NA NA
## 7456 NA NA
## 7457 NA NA
## 7458 NA NA
## 7459 NA NA
## 7460 NA NA
## 7461 NA NA
## 7462 NA NA
## 7463 NA NA
## 7464 NA NA
## 7465 NA NA
## 7466 NA NA
## 7467 NA NA
## 7468 NA NA
## 7469 NA NA
## 7470 NA NA
## 7471 NA NA
## 7472 NA NA
## 7473 NA NA
## 7474 NA NA
## 7475 NA NA
## 7476 NA NA
## 7477 NA NA
## 7478 NA NA
## 7479 NA NA
## 7480 NA NA
## 7481 NA NA
## 7482 NA NA
## 7483 NA NA
## 7484 NA NA
## 7485 NA NA
## 7486 NA NA
## 7487 NA NA
## 7488 NA NA
## 7489 NA NA
## 7490 NA NA
## 7491 NA NA
## 7492 NA NA
## 7493 NA NA
## 7494 NA NA
## 7495 NA NA
## 7496 NA NA
## 7497 NA NA
## 7498 NA NA
## 7499 NA NA
## 7500 NA NA
## 7501 NA NA
## 7502 NA NA
## 7503 NA NA
## 7504 NA NA
## 7505 NA NA
## 7506 NA NA
## 7507 NA NA
## 7508 NA NA
## 7509 NA NA
## 7510 NA NA
## 7511 NA NA
## 7512 NA NA
## 7513 NA NA
## 7514 NA NA
## 7515 NA NA
## 7516 NA NA
## 7517 NA NA
## 7518 NA NA
## 7519 NA NA
## 7520 NA NA
## 7521 NA NA
## 7522 NA NA
## 7523 NA NA
## 7524 NA NA
## 7525 NA NA
## 7526 NA NA
## 7527 NA NA
## 7528 NA NA
## 7529 NA NA
## 7530 NA NA
## 7531 NA NA
## 7532 NA NA
## 7533 NA NA
## 7534 NA NA
## 7535 NA NA
## 7536 NA NA
## 7537 NA NA
## 7538 NA NA
## 7539 NA NA
## 7540 NA NA
## 7541 NA NA
## 7542 NA NA
## 7543 NA NA
## 7544 NA NA
## 7545 NA NA
## 7546 NA NA
## 7547 NA NA
## 7548 NA NA
## 7549 NA NA
## 7550 NA NA
## 7551 NA NA
## 7552 NA NA
## 7553 NA NA
## 7554 NA NA
## 7555 17.097 69.121
## 7556 17.097 69.121
## 7557 17.097 69.121
## 7558 17.097 69.121
## 7559 17.097 69.121
## 7560 17.097 69.121
## 7561 NA NA
## 7562 NA NA
## 7563 NA NA
## 7564 NA NA
## 7565 NA NA
## 7566 NA NA
## 7567 NA NA
## 7568 NA NA
## 7569 NA NA
## 7570 NA NA
## 7571 NA NA
## 7572 NA NA
## 7573 74.885 89.915
## 7574 74.885 89.915
## 7575 74.885 89.915
## 7576 74.885 89.915
## 7577 74.885 89.915
## 7578 74.885 89.915
## 7579 NA NA
## 7580 NA NA
## 7581 NA NA
## 7582 NA NA
## 7583 NA NA
## 7584 NA NA
## 7585 NA NA
## 7586 NA NA
## 7587 NA NA
## 7588 NA NA
## 7589 NA NA
## 7590 NA NA
## 7591 NA NA
## 7592 NA NA
## 7593 NA NA
## 7594 NA NA
## 7595 NA NA
## 7596 NA NA
## 7597 NA NA
## 7598 NA NA
## 7599 NA NA
## 7600 NA NA
## 7601 NA NA
## 7602 NA NA
## 7603 NA NA
## 7604 NA NA
## 7605 NA NA
## 7606 NA NA
## 7607 NA NA
## 7608 NA NA
## 7609 NA NA
## 7610 NA NA
## 7611 NA NA
## 7612 NA NA
## 7613 NA NA
## 7614 NA NA
## 7615 NA NA
## 7616 NA NA
## 7617 NA NA
## 7618 NA NA
## 7619 NA NA
## 7620 NA NA
## 7621 NA NA
## 7622 NA NA
## 7623 NA NA
## 7624 NA NA
## 7625 NA NA
## 7626 NA NA
## 7627 NA NA
## 7628 NA NA
## 7629 NA NA
## 7630 NA NA
## 7631 NA NA
## 7632 NA NA
## 7633 NA NA
## 7634 NA NA
## 7635 NA NA
## 7636 NA NA
## 7637 NA NA
## 7638 NA NA
## 7639 NA NA
## 7640 NA NA
## 7641 NA NA
## 7642 NA NA
## 7643 NA NA
## 7644 NA NA
## 7645 NA NA
## 7646 NA NA
## 7647 NA NA
## 7648 NA NA
## 7649 NA NA
## 7650 NA NA
## 7651 10.500 21.124
## 7652 10.500 21.124
## 7653 10.500 21.124
## 7654 10.500 21.124
## 7655 10.500 21.124
## 7656 10.500 21.124
## 7657 NA NA
## 7658 NA NA
## 7659 NA NA
## 7660 NA NA
## 7661 NA NA
## 7662 NA NA
## 7663 9.225 19.677
## 7664 9.225 19.677
## 7665 9.225 19.677
## 7666 9.225 19.677
## 7667 9.225 19.677
## 7668 9.225 19.677
## 7669 NA NA
## 7670 NA NA
## 7671 NA NA
## 7672 NA NA
## 7673 NA NA
## 7674 NA NA
## 7675 NA NA
## 7676 NA NA
## 7677 NA NA
## 7678 NA NA
## 7679 NA NA
## 7680 NA NA
## 7681 NA NA
## 7682 NA NA
## 7683 NA NA
## 7684 NA NA
## 7685 NA NA
## 7686 NA NA
## 7687 NA NA
## 7688 NA NA
## 7689 NA NA
## 7690 NA NA
## 7691 NA NA
## 7692 NA NA
## 7693 59.754 62.982
## 7694 59.754 62.982
## 7695 59.754 62.982
## 7696 59.754 62.982
## 7697 59.754 62.982
## 7698 59.754 62.982
## 7699 NA NA
## 7700 NA NA
## 7701 NA NA
## 7702 NA NA
## 7703 NA NA
## 7704 NA NA
## 7705 NA NA
## 7706 NA NA
## 7707 NA NA
## 7708 NA NA
## 7709 NA NA
## 7710 NA NA
## 7711 16.478 33.318
## 7712 16.478 33.318
## 7713 16.478 33.318
## 7714 16.478 33.318
## 7715 16.478 33.318
## 7716 16.478 33.318
## 7717 NA NA
## 7718 NA NA
## 7719 NA NA
## 7720 NA NA
## 7721 NA NA
## 7722 NA NA
## 7723 NA NA
## 7724 NA NA
## 7725 NA NA
## 7726 NA NA
## 7727 NA NA
## 7728 NA NA
## 7729 6.892 16.700
## 7730 6.892 16.700
## 7731 6.892 16.700
## 7732 6.892 16.700
## 7733 6.892 16.700
## 7734 6.892 16.700
## 7735 NA NA
## 7736 NA NA
## 7737 NA NA
## 7738 NA NA
## 7739 NA NA
## 7740 NA NA
## 7741 17.785 55.031
## 7742 17.785 55.031
## 7743 17.785 55.031
## 7744 17.785 55.031
## 7745 17.785 55.031
## 7746 17.785 55.031
## 7747 NA NA
## 7748 NA NA
## 7749 NA NA
## 7750 NA NA
## 7751 NA NA
## 7752 NA NA
## 7753 NA NA
## 7754 NA NA
## 7755 NA NA
## 7756 NA NA
## 7757 NA NA
## 7758 NA NA
## 7759 NA NA
## 7760 NA NA
## 7761 NA NA
## 7762 NA NA
## 7763 NA NA
## 7764 NA NA
## 7765 6.363 17.345
## 7766 6.363 17.345
## 7767 6.363 17.345
## 7768 6.363 17.345
## 7769 6.363 17.345
## 7770 6.363 17.345
## 7771 NA NA
## 7772 NA NA
## 7773 NA NA
## 7774 NA NA
## 7775 NA NA
## 7776 NA NA
## 7777 NA NA
## 7778 NA NA
## 7779 NA NA
## 7780 NA NA
## 7781 NA NA
## 7782 NA NA
## 7783 10.479 18.447
## 7784 10.479 18.447
## 7785 10.479 18.447
## 7786 10.479 18.447
## 7787 10.479 18.447
## 7788 10.479 18.447
## 7789 NA NA
## 7790 NA NA
## 7791 NA NA
## 7792 NA NA
## 7793 NA NA
## 7794 NA NA
## 7795 NA NA
## 7796 NA NA
## 7797 NA NA
## 7798 NA NA
## 7799 NA NA
## 7800 NA NA
## 7801 NA NA
## 7802 NA NA
## 7803 NA NA
## 7804 NA NA
## 7805 NA NA
## 7806 NA NA
## 7807 NA NA
## 7808 NA NA
## 7809 NA NA
## 7810 NA NA
## 7811 NA NA
## 7812 NA NA
## 7813 102.512 181.738
## 7814 102.512 181.738
## 7815 102.512 181.738
## 7816 102.512 181.738
## 7817 102.512 181.738
## 7818 102.512 181.738
## 7819 NA NA
## 7820 NA NA
## 7821 NA NA
## 7822 NA NA
## 7823 NA NA
## 7824 NA NA
## 7825 NA NA
## 7826 NA NA
## 7827 NA NA
## 7828 NA NA
## 7829 NA NA
## 7830 NA NA
## 7831 NA NA
## 7832 NA NA
## 7833 NA NA
## 7834 NA NA
## 7835 NA NA
## 7836 NA NA
## 7837 NA NA
## 7838 NA NA
## 7839 NA NA
## 7840 NA NA
## 7841 NA NA
## 7842 NA NA
## 7843 NA NA
## 7844 NA NA
## 7845 NA NA
## 7846 NA NA
## 7847 NA NA
## 7848 NA NA
## 7849 5.160 59.130
## 7850 5.160 59.130
## 7851 5.160 59.130
## 7852 5.160 59.130
## 7853 5.160 59.130
## 7854 5.160 59.130
## 7855 NA NA
## 7856 NA NA
## 7857 NA NA
## 7858 NA NA
## 7859 NA NA
## 7860 NA NA
## 7861 NA NA
## 7862 NA NA
## 7863 NA NA
## 7864 NA NA
## 7865 NA NA
## 7866 NA NA
## 7867 NA NA
## 7868 NA NA
## 7869 NA NA
## 7870 NA NA
## 7871 NA NA
## 7872 NA NA
## 7873 NA NA
## 7874 NA NA
## 7875 NA NA
## 7876 NA NA
## 7877 NA NA
## 7878 NA NA
## 7879 9.709 37.229
## 7880 9.709 37.229
## 7881 9.709 37.229
## 7882 9.709 37.229
## 7883 9.709 37.229
## 7884 9.709 37.229
## 7885 3.519 23.439
## 7886 3.519 23.439
## 7887 3.519 23.439
## 7888 3.519 23.439
## 7889 3.519 23.439
## 7890 3.519 23.439
## 7891 10.350 58.259
## 7892 10.350 58.259
## 7893 10.350 58.259
## 7894 10.350 58.259
## 7895 10.350 58.259
## 7896 10.350 58.259
## 7897 NA NA
## 7898 NA NA
## 7899 NA NA
## 7900 NA NA
## 7901 NA NA
## 7902 NA NA
## 7903 NA NA
## 7904 NA NA
## 7905 NA NA
## 7906 NA NA
## 7907 NA NA
## 7908 NA NA
## 7909 NA NA
## 7910 NA NA
## 7911 NA NA
## 7912 NA NA
## 7913 NA NA
## 7914 NA NA
## 7915 NA NA
## 7916 NA NA
## 7917 NA NA
## 7918 NA NA
## 7919 NA NA
## 7920 NA NA
## 7921 5.872 104.998
## 7922 5.872 104.998
## 7923 5.872 104.998
## 7924 5.872 104.998
## 7925 5.872 104.998
## 7926 5.872 104.998
## 7927 NA NA
## 7928 NA NA
## 7929 NA NA
## 7930 NA NA
## 7931 NA NA
## 7932 NA NA
## 7933 36.483 76.017
## 7934 36.483 76.017
## 7935 36.483 76.017
## 7936 36.483 76.017
## 7937 36.483 76.017
## 7938 36.483 76.017
## 7939 NA NA
## 7940 NA NA
## 7941 NA NA
## 7942 NA NA
## 7943 NA NA
## 7944 NA NA
## 7945 NA NA
## 7946 NA NA
## 7947 NA NA
## 7948 NA NA
## 7949 NA NA
## 7950 NA NA
## 7951 NA NA
## 7952 NA NA
## 7953 NA NA
## 7954 NA NA
## 7955 NA NA
## 7956 NA NA
## 7957 NA NA
## 7958 NA NA
## 7959 NA NA
## 7960 NA NA
## 7961 NA NA
## 7962 NA NA
## 7963 NA NA
## 7964 NA NA
## 7965 NA NA
## 7966 NA NA
## 7967 NA NA
## 7968 NA NA
## 7969 NA NA
## 7970 NA NA
## 7971 NA NA
## 7972 NA NA
## 7973 NA NA
## 7974 NA NA
## 7975 NA NA
## 7976 NA NA
## 7977 NA NA
## 7978 NA NA
## 7979 NA NA
## 7980 NA NA
## 7981 NA NA
## 7982 NA NA
## 7983 NA NA
## 7984 NA NA
## 7985 NA NA
## 7986 NA NA
## 7987 NA NA
## 7988 NA NA
## 7989 NA NA
## 7990 NA NA
## 7991 NA NA
## 7992 NA NA
## 7993 NA NA
## 7994 NA NA
## 7995 NA NA
## 7996 NA NA
## 7997 NA NA
## 7998 NA NA
## 7999 14.210 25.292
## 8000 14.210 25.292
## 8001 14.210 25.292
## 8002 14.210 25.292
## 8003 14.210 25.292
## 8004 14.210 25.292
## 8005 NA NA
## 8006 NA NA
## 8007 NA NA
## 8008 NA NA
## 8009 NA NA
## 8010 NA NA
## 8011 14.585 56.907
## 8012 14.585 56.907
## 8013 14.585 56.907
## 8014 14.585 56.907
## 8015 14.585 56.907
## 8016 14.585 56.907
## 8017 NA NA
## 8018 NA NA
## 8019 NA NA
## 8020 NA NA
## 8021 NA NA
## 8022 NA NA
## 8023 4.093 36.654
## 8024 4.093 36.654
## 8025 4.093 36.654
## 8026 4.093 36.654
## 8027 4.093 36.654
## 8028 4.093 36.654
## 8029 NA NA
## 8030 NA NA
## 8031 NA NA
## 8032 NA NA
## 8033 NA NA
## 8034 NA NA
## 8035 NA NA
## 8036 NA NA
## 8037 NA NA
## 8038 NA NA
## 8039 NA NA
## 8040 NA NA
## 8041 NA NA
## 8042 NA NA
## 8043 NA NA
## 8044 NA NA
## 8045 NA NA
## 8046 NA NA
## 8047 NA NA
## 8048 NA NA
## 8049 NA NA
## 8050 NA NA
## 8051 NA NA
## 8052 NA NA
## 8053 NA NA
## 8054 NA NA
## 8055 NA NA
## 8056 NA NA
## 8057 NA NA
## 8058 NA NA
## 8059 52.733 66.477
## 8060 52.733 66.477
## 8061 52.733 66.477
## 8062 52.733 66.477
## 8063 52.733 66.477
## 8064 52.733 66.477
## 8065 NA NA
## 8066 NA NA
## 8067 NA NA
## 8068 NA NA
## 8069 NA NA
## 8070 NA NA
## 8071 NA NA
## 8072 NA NA
## 8073 NA NA
## 8074 NA NA
## 8075 NA NA
## 8076 NA NA
## 8077 15.452 28.498
## 8078 15.452 28.498
## 8079 15.452 28.498
## 8080 15.452 28.498
## 8081 15.452 28.498
## 8082 15.452 28.498
## 8083 NA NA
## 8084 NA NA
## 8085 NA NA
## 8086 NA NA
## 8087 NA NA
## 8088 NA NA
## 8089 NA NA
## 8090 NA NA
## 8091 NA NA
## 8092 NA NA
## 8093 NA NA
## 8094 NA NA
## 8095 15.231 31.927
## 8096 15.231 31.927
## 8097 15.231 31.927
## 8098 15.231 31.927
## 8099 15.231 31.927
## 8100 15.231 31.927
## 8101 NA NA
## 8102 NA NA
## 8103 NA NA
## 8104 NA NA
## 8105 NA NA
## 8106 NA NA
## 8107 NA NA
## 8108 NA NA
## 8109 NA NA
## 8110 NA NA
## 8111 NA NA
## 8112 NA NA
## 8113 NA NA
## 8114 NA NA
## 8115 NA NA
## 8116 NA NA
## 8117 NA NA
## 8118 NA NA
## 8119 2.078 41.471
## 8120 2.078 41.471
## 8121 2.078 41.471
## 8122 2.078 41.471
## 8123 2.078 41.471
## 8124 2.078 41.471
## 8125 NA NA
## 8126 NA NA
## 8127 NA NA
## 8128 NA NA
## 8129 NA NA
## 8130 NA NA
## 8131 NA NA
## 8132 NA NA
## 8133 NA NA
## 8134 NA NA
## 8135 NA NA
## 8136 NA NA
## 8137 12.394 33.370
## 8138 12.394 33.370
## 8139 12.394 33.370
## 8140 12.394 33.370
## 8141 12.394 33.370
## 8142 12.394 33.370
## 8143 NA NA
## 8144 NA NA
## 8145 NA NA
## 8146 NA NA
## 8147 NA NA
## 8148 NA NA
## 8149 NA NA
## 8150 NA NA
## 8151 NA NA
## 8152 NA NA
## 8153 NA NA
## 8154 NA NA
## 8155 NA NA
## 8156 NA NA
## 8157 NA NA
## 8158 NA NA
## 8159 NA NA
## 8160 NA NA
## 8161 NA NA
## 8162 NA NA
## 8163 NA NA
## 8164 NA NA
## 8165 NA NA
## 8166 NA NA
## 8167 NA NA
## 8168 NA NA
## 8169 NA NA
## 8170 NA NA
## 8171 NA NA
## 8172 NA NA
## 8173 NA NA
## 8174 NA NA
## 8175 NA NA
## 8176 NA NA
## 8177 NA NA
## 8178 NA NA
## 8179 NA NA
## 8180 NA NA
## 8181 NA NA
## 8182 NA NA
## 8183 NA NA
## 8184 NA NA
## 8185 NA NA
## 8186 NA NA
## 8187 NA NA
## 8188 NA NA
## 8189 NA NA
## 8190 NA NA
## 8191 NA NA
## 8192 NA NA
## 8193 NA NA
## 8194 NA NA
## 8195 NA NA
## 8196 NA NA
## 8197 NA NA
## 8198 NA NA
## 8199 NA NA
## 8200 NA NA
## 8201 NA NA
## 8202 NA NA
## 8203 NA NA
## 8204 NA NA
## 8205 NA NA
## 8206 NA NA
## 8207 NA NA
## 8208 NA NA
## 8209 NA NA
## 8210 NA NA
## 8211 NA NA
## 8212 NA NA
## 8213 NA NA
## 8214 NA NA
## 8215 NA NA
## 8216 NA NA
## 8217 NA NA
## 8218 NA NA
## 8219 NA NA
## 8220 NA NA
## 8221 NA NA
## 8222 NA NA
## 8223 NA NA
## 8224 NA NA
## 8225 NA NA
## 8226 NA NA
## 8227 NA NA
## 8228 NA NA
## 8229 NA NA
## 8230 NA NA
## 8231 NA NA
## 8232 NA NA
## 8233 NA NA
## 8234 NA NA
## 8235 NA NA
## 8236 NA NA
## 8237 NA NA
## 8238 NA NA
## 8239 NA NA
## 8240 NA NA
## 8241 NA NA
## 8242 NA NA
## 8243 NA NA
## 8244 NA NA
## 8245 NA NA
## 8246 NA NA
## 8247 NA NA
## 8248 NA NA
## 8249 NA NA
## 8250 NA NA
## 8251 19.769 29.612
## 8252 19.769 29.612
## 8253 19.769 29.612
## 8254 19.769 29.612
## 8255 19.769 29.612
## 8256 19.769 29.612
## 8257 NA NA
## 8258 NA NA
## 8259 NA NA
## 8260 NA NA
## 8261 NA NA
## 8262 NA NA
## 8263 NA NA
## 8264 NA NA
## 8265 NA NA
## 8266 NA NA
## 8267 NA NA
## 8268 NA NA
## 8269 NA NA
## 8270 NA NA
## 8271 NA NA
## 8272 NA NA
## 8273 NA NA
## 8274 NA NA
## 8275 NA NA
## 8276 NA NA
## 8277 NA NA
## 8278 NA NA
## 8279 NA NA
## 8280 NA NA
## 8281 2.508 52.231
## 8282 2.508 52.231
## 8283 2.508 52.231
## 8284 2.508 52.231
## 8285 2.508 52.231
## 8286 2.508 52.231
## 8287 40.409 51.258
## 8288 40.409 51.258
## 8289 40.409 51.258
## 8290 40.409 51.258
## 8291 40.409 51.258
## 8292 40.409 51.258
## 8293 NA NA
## 8294 NA NA
## 8295 NA NA
## 8296 NA NA
## 8297 NA NA
## 8298 NA NA
## 8299 34.520 54.495
## 8300 34.520 54.495
## 8301 34.520 54.495
## 8302 34.520 54.495
## 8303 34.520 54.495
## 8304 34.520 54.495
## 8305 NA NA
## 8306 NA NA
## 8307 NA NA
## 8308 NA NA
## 8309 NA NA
## 8310 NA NA
## 8311 NA NA
## 8312 NA NA
## 8313 NA NA
## 8314 NA NA
## 8315 NA NA
## 8316 NA NA
## 8317 NA NA
## 8318 NA NA
## 8319 NA NA
## 8320 NA NA
## 8321 NA NA
## 8322 NA NA
## 8323 NA NA
## 8324 NA NA
## 8325 NA NA
## 8326 NA NA
## 8327 NA NA
## 8328 NA NA
## 8329 NA NA
## 8330 NA NA
## 8331 NA NA
## 8332 NA NA
## 8333 NA NA
## 8334 NA NA
## 8335 NA NA
## 8336 NA NA
## 8337 NA NA
## 8338 NA NA
## 8339 NA NA
## 8340 NA NA
## 8341 NA NA
## 8342 NA NA
## 8343 NA NA
## 8344 NA NA
## 8345 NA NA
## 8346 NA NA
## 8347 NA NA
## 8348 NA NA
## 8349 NA NA
## 8350 NA NA
## 8351 NA NA
## 8352 NA NA
## 8353 NA NA
## 8354 NA NA
## 8355 NA NA
## 8356 NA NA
## 8357 NA NA
## 8358 NA NA
## 8359 NA NA
## 8360 NA NA
## 8361 NA NA
## 8362 NA NA
## 8363 NA NA
## 8364 NA NA
## 8365 13.205 28.705
## 8366 13.205 28.705
## 8367 13.205 28.705
## 8368 13.205 28.705
## 8369 13.205 28.705
## 8370 13.205 28.705
## 8371 NA NA
## 8372 NA NA
## 8373 NA NA
## 8374 NA NA
## 8375 NA NA
## 8376 NA NA
## 8377 NA NA
## 8378 NA NA
## 8379 NA NA
## 8380 NA NA
## 8381 NA NA
## 8382 NA NA
## 8383 NA NA
## 8384 NA NA
## 8385 NA NA
## 8386 NA NA
## 8387 NA NA
## 8388 NA NA
## 8389 NA NA
## 8390 NA NA
## 8391 NA NA
## 8392 NA NA
## 8393 NA NA
## 8394 NA NA
## 8395 NA NA
## 8396 NA NA
## 8397 NA NA
## 8398 NA NA
## 8399 NA NA
## 8400 NA NA
## 8401 NA NA
## 8402 NA NA
## 8403 NA NA
## 8404 NA NA
## 8405 NA NA
## 8406 NA NA
## 8407 NA NA
## 8408 NA NA
## 8409 NA NA
## 8410 NA NA
## 8411 NA NA
## 8412 NA NA
## 8413 NA NA
## 8414 NA NA
## 8415 NA NA
## 8416 NA NA
## 8417 NA NA
## 8418 NA NA
## 8419 NA NA
## 8420 NA NA
## 8421 NA NA
## 8422 NA NA
## 8423 NA NA
## 8424 NA NA
## 8425 NA NA
## 8426 NA NA
## 8427 NA NA
## 8428 NA NA
## 8429 NA NA
## 8430 NA NA
## 8431 NA NA
## 8432 NA NA
## 8433 NA NA
## 8434 NA NA
## 8435 NA NA
## 8436 NA NA
## 8437 NA NA
## 8438 NA NA
## 8439 NA NA
## 8440 NA NA
## 8441 NA NA
## 8442 NA NA
## 8443 24.778 31.586
## 8444 24.778 31.586
## 8445 24.778 31.586
## 8446 24.778 31.586
## 8447 24.778 31.586
## 8448 24.778 31.586
## 8449 NA NA
## 8450 NA NA
## 8451 NA NA
## 8452 NA NA
## 8453 NA NA
## 8454 NA NA
## 8455 NA NA
## 8456 NA NA
## 8457 NA NA
## 8458 NA NA
## 8459 NA NA
## 8460 NA NA
## 8461 NA NA
## 8462 NA NA
## 8463 NA NA
## 8464 NA NA
## 8465 NA NA
## 8466 NA NA
## 8467 8.918 51.318
## 8468 8.918 51.318
## 8469 8.918 51.318
## 8470 8.918 51.318
## 8471 8.918 51.318
## 8472 8.918 51.318
## 8473 NA NA
## 8474 NA NA
## 8475 NA NA
## 8476 NA NA
## 8477 NA NA
## 8478 NA NA
## 8479 NA NA
## 8480 NA NA
## 8481 NA NA
## 8482 NA NA
## 8483 NA NA
## 8484 NA NA
## 8485 38.588 59.334
## 8486 38.588 59.334
## 8487 38.588 59.334
## 8488 38.588 59.334
## 8489 38.588 59.334
## 8490 38.588 59.334
## 8491 NA NA
## 8492 NA NA
## 8493 NA NA
## 8494 NA NA
## 8495 NA NA
## 8496 NA NA
## 8497 NA NA
## 8498 NA NA
## 8499 NA NA
## 8500 NA NA
## 8501 NA NA
## 8502 NA NA
## 8503 NA NA
## 8504 NA NA
## 8505 NA NA
## 8506 NA NA
## 8507 NA NA
## 8508 NA NA
## 8509 NA NA
## 8510 NA NA
## 8511 NA NA
## 8512 NA NA
## 8513 NA NA
## 8514 NA NA
## 8515 NA NA
## 8516 NA NA
## 8517 NA NA
## 8518 NA NA
## 8519 NA NA
## 8520 NA NA
## 8521 NA NA
## 8522 NA NA
## 8523 NA NA
## 8524 NA NA
## 8525 NA NA
## 8526 NA NA
## 8527 NA NA
## 8528 NA NA
## 8529 NA NA
## 8530 NA NA
## 8531 NA NA
## 8532 NA NA
## 8533 NA NA
## 8534 NA NA
## 8535 NA NA
## 8536 NA NA
## 8537 NA NA
## 8538 NA NA
## 8539 34.006 49.564
## 8540 34.006 49.564
## 8541 34.006 49.564
## 8542 34.006 49.564
## 8543 34.006 49.564
## 8544 34.006 49.564
## 8545 NA NA
## 8546 NA NA
## 8547 NA NA
## 8548 NA NA
## 8549 NA NA
## 8550 NA NA
## 8551 28.103 56.290
## 8552 28.103 56.290
## 8553 28.103 56.290
## 8554 28.103 56.290
## 8555 28.103 56.290
## 8556 28.103 56.290
## 8557 4.872 69.785
## 8558 4.872 69.785
## 8559 4.872 69.785
## 8560 4.872 69.785
## 8561 4.872 69.785
## 8562 4.872 69.785
## 8563 NA NA
## 8564 NA NA
## 8565 NA NA
## 8566 NA NA
## 8567 NA NA
## 8568 NA NA
## 8569 NA NA
## 8570 NA NA
## 8571 NA NA
## 8572 NA NA
## 8573 NA NA
## 8574 NA NA
## 8575 30.581 51.971
## 8576 30.581 51.971
## 8577 30.581 51.971
## 8578 30.581 51.971
## 8579 30.581 51.971
## 8580 30.581 51.971
## 8581 NA NA
## 8582 NA NA
## 8583 NA NA
## 8584 NA NA
## 8585 NA NA
## 8586 NA NA
## 8587 NA NA
## 8588 NA NA
## 8589 NA NA
## 8590 NA NA
## 8591 NA NA
## 8592 NA NA
## 8593 10.188 31.833
## 8594 10.188 31.833
## 8595 10.188 31.833
## 8596 10.188 31.833
## 8597 10.188 31.833
## 8598 10.188 31.833
## 8599 NA NA
## 8600 NA NA
## 8601 NA NA
## 8602 NA NA
## 8603 NA NA
## 8604 NA NA
## 8605 NA NA
## 8606 NA NA
## 8607 NA NA
## 8608 NA NA
## 8609 NA NA
## 8610 NA NA
## 8611 NA NA
## 8612 NA NA
## 8613 NA NA
## 8614 NA NA
## 8615 NA NA
## 8616 NA NA
## 8617 28.895 63.319
## 8618 28.895 63.319
## 8619 28.895 63.319
## 8620 28.895 63.319
## 8621 28.895 63.319
## 8622 28.895 63.319
## 8623 NA NA
## 8624 NA NA
## 8625 NA NA
## 8626 NA NA
## 8627 NA NA
## 8628 NA NA
## 8629 12.624 74.107
## 8630 12.624 74.107
## 8631 12.624 74.107
## 8632 12.624 74.107
## 8633 12.624 74.107
## 8634 12.624 74.107
## 8635 34.176 53.232
## 8636 34.176 53.232
## 8637 34.176 53.232
## 8638 34.176 53.232
## 8639 34.176 53.232
## 8640 34.176 53.232
## 8641 NA NA
## 8642 NA NA
## 8643 NA NA
## 8644 NA NA
## 8645 NA NA
## 8646 NA NA
## 8647 NA NA
## 8648 NA NA
## 8649 NA NA
## 8650 NA NA
## 8651 NA NA
## 8652 NA NA
## 8653 15.858 30.822
## 8654 15.858 30.822
## 8655 15.858 30.822
## 8656 15.858 30.822
## 8657 15.858 30.822
## 8658 15.858 30.822
## 8659 31.687 75.667
## 8660 31.687 75.667
## 8661 31.687 75.667
## 8662 31.687 75.667
## 8663 31.687 75.667
## 8664 31.687 75.667
## 8665 39.901 78.155
## 8666 39.901 78.155
## 8667 39.901 78.155
## 8668 39.901 78.155
## 8669 39.901 78.155
## 8670 39.901 78.155
## 8671 NA NA
## 8672 NA NA
## 8673 NA NA
## 8674 NA NA
## 8675 NA NA
## 8676 NA NA
## 8677 11.245 21.135
## 8678 11.245 21.135
## 8679 11.245 21.135
## 8680 11.245 21.135
## 8681 11.245 21.135
## 8682 11.245 21.135
## 8683 46.828 83.197
## 8684 46.828 83.197
## 8685 46.828 83.197
## 8686 46.828 83.197
## 8687 46.828 83.197
## 8688 46.828 83.197
## 8689 NA NA
## 8690 NA NA
## 8691 NA NA
## 8692 NA NA
## 8693 NA NA
## 8694 NA NA
## 8695 17.580 35.986
## 8696 17.580 35.986
## 8697 17.580 35.986
## 8698 17.580 35.986
## 8699 17.580 35.986
## 8700 17.580 35.986
## 8701 NA NA
## 8702 NA NA
## 8703 NA NA
## 8704 NA NA
## 8705 NA NA
## 8706 NA NA
## 8707 NA NA
## 8708 NA NA
## 8709 NA NA
## 8710 NA NA
## 8711 NA NA
## 8712 NA NA
## 8713 NA NA
## 8714 NA NA
## 8715 NA NA
## 8716 NA NA
## 8717 NA NA
## 8718 NA NA
## 8719 17.915 36.373
## 8720 17.915 36.373
## 8721 17.915 36.373
## 8722 17.915 36.373
## 8723 17.915 36.373
## 8724 17.915 36.373
## 8725 9.056 89.046
## 8726 9.056 89.046
## 8727 9.056 89.046
## 8728 9.056 89.046
## 8729 9.056 89.046
## 8730 9.056 89.046
## 8731 NA NA
## 8732 NA NA
## 8733 NA NA
## 8734 NA NA
## 8735 NA NA
## 8736 NA NA
## 8737 10.534 66.626
## 8738 10.534 66.626
## 8739 10.534 66.626
## 8740 10.534 66.626
## 8741 10.534 66.626
## 8742 10.534 66.626
## 8743 NA NA
## 8744 NA NA
## 8745 NA NA
## 8746 NA NA
## 8747 NA NA
## 8748 NA NA
## 8749 26.087 42.856
## 8750 26.087 42.856
## 8751 26.087 42.856
## 8752 26.087 42.856
## 8753 26.087 42.856
## 8754 26.087 42.856
## 8755 NA NA
## 8756 NA NA
## 8757 NA NA
## 8758 NA NA
## 8759 NA NA
## 8760 NA NA
## 8761 NA NA
## 8762 NA NA
## 8763 NA NA
## 8764 NA NA
## 8765 NA NA
## 8766 NA NA
## 8767 NA NA
## 8768 NA NA
## 8769 NA NA
## 8770 NA NA
## 8771 NA NA
## 8772 NA NA
## 8773 NA NA
## 8774 NA NA
## 8775 NA NA
## 8776 NA NA
## 8777 NA NA
## 8778 NA NA
## 8779 11.923 53.320
## 8780 11.923 53.320
## 8781 11.923 53.320
## 8782 11.923 53.320
## 8783 11.923 53.320
## 8784 11.923 53.320
## 8785 NA NA
## 8786 NA NA
## 8787 NA NA
## 8788 NA NA
## 8789 NA NA
## 8790 NA NA
## 8791 NA NA
## 8792 NA NA
## 8793 NA NA
## 8794 NA NA
## 8795 NA NA
## 8796 NA NA
## 8797 43.656 63.123
## 8798 43.656 63.123
## 8799 43.656 63.123
## 8800 43.656 63.123
## 8801 43.656 63.123
## 8802 43.656 63.123
## 8803 NA NA
## 8804 NA NA
## 8805 NA NA
## 8806 NA NA
## 8807 NA NA
## 8808 NA NA
## 8809 NA NA
## 8810 NA NA
## 8811 NA NA
## 8812 NA NA
## 8813 NA NA
## 8814 NA NA
## 8815 NA NA
## 8816 NA NA
## 8817 NA NA
## 8818 NA NA
## 8819 NA NA
## 8820 NA NA
## 8821 NA NA
## 8822 NA NA
## 8823 NA NA
## 8824 NA NA
## 8825 NA NA
## 8826 NA NA
## 8827 15.549 29.558
## 8828 15.549 29.558
## 8829 15.549 29.558
## 8830 15.549 29.558
## 8831 15.549 29.558
## 8832 15.549 29.558
## 8833 NA NA
## 8834 NA NA
## 8835 NA NA
## 8836 NA NA
## 8837 NA NA
## 8838 NA NA
## 8839 43.639 65.840
## 8840 43.639 65.840
## 8841 43.639 65.840
## 8842 43.639 65.840
## 8843 43.639 65.840
## 8844 43.639 65.840
## 8845 NA NA
## 8846 NA NA
## 8847 NA NA
## 8848 NA NA
## 8849 NA NA
## 8850 NA NA
## 8851 NA NA
## 8852 NA NA
## 8853 NA NA
## 8854 NA NA
## 8855 NA NA
## 8856 NA NA
## 8857 NA NA
## 8858 NA NA
## 8859 NA NA
## 8860 NA NA
## 8861 NA NA
## 8862 NA NA
## 8863 NA NA
## 8864 NA NA
## 8865 NA NA
## 8866 NA NA
## 8867 NA NA
## 8868 NA NA
## 8869 NA NA
## 8870 NA NA
## 8871 NA NA
## 8872 NA NA
## 8873 NA NA
## 8874 NA NA
## 8875 1.131 28.423
## 8876 1.131 28.423
## 8877 1.131 28.423
## 8878 1.131 28.423
## 8879 1.131 28.423
## 8880 1.131 28.423
## 8881 NA NA
## 8882 NA NA
## 8883 NA NA
## 8884 NA NA
## 8885 NA NA
## 8886 NA NA
## 8887 NA NA
## 8888 NA NA
## 8889 NA NA
## 8890 NA NA
## 8891 NA NA
## 8892 NA NA
## 8893 40.399 117.358
## 8894 40.399 117.358
## 8895 40.399 117.358
## 8896 40.399 117.358
## 8897 40.399 117.358
## 8898 40.399 117.358
## 8899 NA NA
## 8900 NA NA
## 8901 NA NA
## 8902 NA NA
## 8903 NA NA
## 8904 NA NA
## 8905 NA NA
## 8906 NA NA
## 8907 NA NA
## 8908 NA NA
## 8909 NA NA
## 8910 NA NA
## 8911 NA NA
## 8912 NA NA
## 8913 NA NA
## 8914 NA NA
## 8915 NA NA
## 8916 NA NA
## 8917 NA NA
## 8918 NA NA
## 8919 NA NA
## 8920 NA NA
## 8921 NA NA
## 8922 NA NA
## 8923 NA NA
## 8924 NA NA
## 8925 NA NA
## 8926 NA NA
## 8927 NA NA
## 8928 NA NA
## 8929 NA NA
## 8930 NA NA
## 8931 NA NA
## 8932 NA NA
## 8933 NA NA
## 8934 NA NA
## 8935 NA NA
## 8936 NA NA
## 8937 NA NA
## 8938 NA NA
## 8939 NA NA
## 8940 NA NA
## 8941 NA NA
## 8942 NA NA
## 8943 NA NA
## 8944 NA NA
## 8945 NA NA
## 8946 NA NA
## 8947 NA NA
## 8948 NA NA
## 8949 NA NA
## 8950 NA NA
## 8951 NA NA
## 8952 NA NA
## 8953 NA NA
## 8954 NA NA
## 8955 NA NA
## 8956 NA NA
## 8957 NA NA
## 8958 NA NA
## 8959 44.734 65.945
## 8960 44.734 65.945
## 8961 44.734 65.945
## 8962 44.734 65.945
## 8963 44.734 65.945
## 8964 44.734 65.945
## 8965 0.713 29.652
## 8966 0.713 29.652
## 8967 0.713 29.652
## 8968 0.713 29.652
## 8969 0.713 29.652
## 8970 0.713 29.652
## 8971 44.316 70.844
## 8972 44.316 70.844
## 8973 44.316 70.844
## 8974 44.316 70.844
## 8975 44.316 70.844
## 8976 44.316 70.844
## 8977 18.726 62.472
## 8978 18.726 62.472
## 8979 18.726 62.472
## 8980 18.726 62.472
## 8981 18.726 62.472
## 8982 18.726 62.472
## 8983 52.781 89.432
## 8984 52.781 89.432
## 8985 52.781 89.432
## 8986 52.781 89.432
## 8987 52.781 89.432
## 8988 52.781 89.432
## 8989 NA NA
## 8990 NA NA
## 8991 NA NA
## 8992 NA NA
## 8993 NA NA
## 8994 NA NA
## 8995 NA NA
## 8996 NA NA
## 8997 NA NA
## 8998 NA NA
## 8999 NA NA
## 9000 NA NA
## 9001 NA NA
## 9002 NA NA
## 9003 NA NA
## 9004 NA NA
## 9005 NA NA
## 9006 NA NA
## 9007 NA NA
## 9008 NA NA
## 9009 NA NA
## 9010 NA NA
## 9011 NA NA
## 9012 NA NA
## 9013 NA NA
## 9014 NA NA
## 9015 NA NA
## 9016 NA NA
## 9017 NA NA
## 9018 NA NA
## 9019 29.054 38.893
## 9020 29.054 38.893
## 9021 29.054 38.893
## 9022 29.054 38.893
## 9023 29.054 38.893
## 9024 29.054 38.893
## 9025 NA NA
## 9026 NA NA
## 9027 NA NA
## 9028 NA NA
## 9029 NA NA
## 9030 NA NA
## 9031 NA NA
## 9032 NA NA
## 9033 NA NA
## 9034 NA NA
## 9035 NA NA
## 9036 NA NA
## 9037 NA NA
## 9038 NA NA
## 9039 NA NA
## 9040 NA NA
## 9041 NA NA
## 9042 NA NA
## 9043 NA NA
## 9044 NA NA
## 9045 NA NA
## 9046 NA NA
## 9047 NA NA
## 9048 NA NA
## 9049 NA NA
## 9050 NA NA
## 9051 NA NA
## 9052 NA NA
## 9053 NA NA
## 9054 NA NA
## 9055 NA NA
## 9056 NA NA
## 9057 NA NA
## 9058 NA NA
## 9059 NA NA
## 9060 NA NA
## 9061 NA NA
## 9062 NA NA
## 9063 NA NA
## 9064 NA NA
## 9065 NA NA
## 9066 NA NA
## 9067 NA NA
## 9068 NA NA
## 9069 NA NA
## 9070 NA NA
## 9071 NA NA
## 9072 NA NA
## 9073 NA NA
## 9074 NA NA
## 9075 NA NA
## 9076 NA NA
## 9077 NA NA
## 9078 NA NA
## 9079 1.682 16.001
## 9080 1.682 16.001
## 9081 1.682 16.001
## 9082 1.682 16.001
## 9083 1.682 16.001
## 9084 1.682 16.001
## 9085 NA NA
## 9086 NA NA
## 9087 NA NA
## 9088 NA NA
## 9089 NA NA
## 9090 NA NA
## 9091 NA NA
## 9092 NA NA
## 9093 NA NA
## 9094 NA NA
## 9095 NA NA
## 9096 NA NA
## 9097 NA NA
## 9098 NA NA
## 9099 NA NA
## 9100 NA NA
## 9101 NA NA
## 9102 NA NA
## 9103 9.495 66.873
## 9104 9.495 66.873
## 9105 9.495 66.873
## 9106 9.495 66.873
## 9107 9.495 66.873
## 9108 9.495 66.873
## 9109 NA NA
## 9110 NA NA
## 9111 NA NA
## 9112 NA NA
## 9113 NA NA
## 9114 NA NA
## 9115 NA NA
## 9116 NA NA
## 9117 NA NA
## 9118 NA NA
## 9119 NA NA
## 9120 NA NA
## 9121 9.605 43.766
## 9122 9.605 43.766
## 9123 9.605 43.766
## 9124 9.605 43.766
## 9125 9.605 43.766
## 9126 9.605 43.766
## 9127 33.287 66.168
## 9128 33.287 66.168
## 9129 33.287 66.168
## 9130 33.287 66.168
## 9131 33.287 66.168
## 9132 33.287 66.168
## 9133 9.569 37.404
## 9134 9.569 37.404
## 9135 9.569 37.404
## 9136 9.569 37.404
## 9137 9.569 37.404
## 9138 9.569 37.404
## 9139 38.813 78.819
## 9140 38.813 78.819
## 9141 38.813 78.819
## 9142 38.813 78.819
## 9143 38.813 78.819
## 9144 38.813 78.819
## 9145 NA NA
## 9146 NA NA
## 9147 NA NA
## 9148 NA NA
## 9149 NA NA
## 9150 NA NA
## 9151 39.861 53.924
## 9152 39.861 53.924
## 9153 39.861 53.924
## 9154 39.861 53.924
## 9155 39.861 53.924
## 9156 39.861 53.924
## 9157 NA NA
## 9158 NA NA
## 9159 NA NA
## 9160 NA NA
## 9161 NA NA
## 9162 NA NA
## 9163 NA NA
## 9164 NA NA
## 9165 NA NA
## 9166 NA NA
## 9167 NA NA
## 9168 NA NA
## 9169 NA NA
## 9170 NA NA
## 9171 NA NA
## 9172 NA NA
## 9173 NA NA
## 9174 NA NA
## 9175 NA NA
## 9176 NA NA
## 9177 NA NA
## 9178 NA NA
## 9179 NA NA
## 9180 NA NA
## 9181 1.597 28.754
## 9182 1.597 28.754
## 9183 1.597 28.754
## 9184 1.597 28.754
## 9185 1.597 28.754
## 9186 1.597 28.754
## 9187 8.186 26.263
## 9188 8.186 26.263
## 9189 8.186 26.263
## 9190 8.186 26.263
## 9191 8.186 26.263
## 9192 8.186 26.263
## 9193 NA NA
## 9194 NA NA
## 9195 NA NA
## 9196 NA NA
## 9197 NA NA
## 9198 NA NA
## 9199 NA NA
## 9200 NA NA
## 9201 NA NA
## 9202 NA NA
## 9203 NA NA
## 9204 NA NA
## 9205 NA NA
## 9206 NA NA
## 9207 NA NA
## 9208 NA NA
## 9209 NA NA
## 9210 NA NA
## 9211 NA NA
## 9212 NA NA
## 9213 NA NA
## 9214 NA NA
## 9215 NA NA
## 9216 NA NA
## 9217 NA NA
## 9218 NA NA
## 9219 NA NA
## 9220 NA NA
## 9221 NA NA
## 9222 NA NA
## 9223 12.996 22.901
## 9224 12.996 22.901
## 9225 12.996 22.901
## 9226 12.996 22.901
## 9227 12.996 22.901
## 9228 12.996 22.901
## 9229 20.977 29.254
## 9230 20.977 29.254
## 9231 20.977 29.254
## 9232 20.977 29.254
## 9233 20.977 29.254
## 9234 20.977 29.254
## 9235 NA NA
## 9236 NA NA
## 9237 NA NA
## 9238 NA NA
## 9239 NA NA
## 9240 NA NA
## 9241 NA NA
## 9242 NA NA
## 9243 NA NA
## 9244 NA NA
## 9245 NA NA
## 9246 NA NA
## 9247 NA NA
## 9248 NA NA
## 9249 NA NA
## 9250 NA NA
## 9251 NA NA
## 9252 NA NA
## 9253 1.615 137.669
## 9254 1.615 137.669
## 9255 1.615 137.669
## 9256 1.615 137.669
## 9257 1.615 137.669
## 9258 1.615 137.669
## 9259 38.045 44.875
## 9260 38.045 44.875
## 9261 38.045 44.875
## 9262 38.045 44.875
## 9263 38.045 44.875
## 9264 38.045 44.875
## 9265 NA NA
## 9266 NA NA
## 9267 NA NA
## 9268 NA NA
## 9269 NA NA
## 9270 NA NA
## 9271 NA NA
## 9272 NA NA
## 9273 NA NA
## 9274 NA NA
## 9275 NA NA
## 9276 NA NA
## 9277 NA NA
## 9278 NA NA
## 9279 NA NA
## 9280 NA NA
## 9281 NA NA
## 9282 NA NA
## 9283 NA NA
## 9284 NA NA
## 9285 NA NA
## 9286 NA NA
## 9287 NA NA
## 9288 NA NA
## 9289 NA NA
## 9290 NA NA
## 9291 NA NA
## 9292 NA NA
## 9293 NA NA
## 9294 NA NA
## 9295 NA NA
## 9296 NA NA
## 9297 NA NA
## 9298 NA NA
## 9299 NA NA
## 9300 NA NA
## 9301 26.928 57.426
## 9302 26.928 57.426
## 9303 26.928 57.426
## 9304 26.928 57.426
## 9305 26.928 57.426
## 9306 26.928 57.426
## 9307 NA NA
## 9308 NA NA
## 9309 NA NA
## 9310 NA NA
## 9311 NA NA
## 9312 NA NA
## 9313 9.122 26.276
## 9314 9.122 26.276
## 9315 9.122 26.276
## 9316 9.122 26.276
## 9317 9.122 26.276
## 9318 9.122 26.276
## 9319 NA NA
## 9320 NA NA
## 9321 NA NA
## 9322 NA NA
## 9323 NA NA
## 9324 NA NA
## 9325 NA NA
## 9326 NA NA
## 9327 NA NA
## 9328 NA NA
## 9329 NA NA
## 9330 NA NA
## 9331 NA NA
## 9332 NA NA
## 9333 NA NA
## 9334 NA NA
## 9335 NA NA
## 9336 NA NA
## 9337 NA NA
## 9338 NA NA
## 9339 NA NA
## 9340 NA NA
## 9341 NA NA
## 9342 NA NA
## 9343 NA NA
## 9344 NA NA
## 9345 NA NA
## 9346 NA NA
## 9347 NA NA
## 9348 NA NA
## 9349 87.989 99.728
## 9350 87.989 99.728
## 9351 87.989 99.728
## 9352 87.989 99.728
## 9353 87.989 99.728
## 9354 87.989 99.728
## 9355 7.260 64.301
## 9356 7.260 64.301
## 9357 7.260 64.301
## 9358 7.260 64.301
## 9359 7.260 64.301
## 9360 7.260 64.301
## 9361 NA NA
## 9362 NA NA
## 9363 NA NA
## 9364 NA NA
## 9365 NA NA
## 9366 NA NA
## 9367 NA NA
## 9368 NA NA
## 9369 NA NA
## 9370 NA NA
## 9371 NA NA
## 9372 NA NA
## 9373 9.402 16.445
## 9374 9.402 16.445
## 9375 9.402 16.445
## 9376 9.402 16.445
## 9377 9.402 16.445
## 9378 9.402 16.445
## 9379 64.261 89.592
## 9380 64.261 89.592
## 9381 64.261 89.592
## 9382 64.261 89.592
## 9383 64.261 89.592
## 9384 64.261 89.592
## 9385 NA NA
## 9386 NA NA
## 9387 NA NA
## 9388 NA NA
## 9389 NA NA
## 9390 NA NA
## 9391 NA NA
## 9392 NA NA
## 9393 NA NA
## 9394 NA NA
## 9395 NA NA
## 9396 NA NA
## 9397 NA NA
## 9398 NA NA
## 9399 NA NA
## 9400 NA NA
## 9401 NA NA
## 9402 NA NA
## 9403 NA NA
## 9404 NA NA
## 9405 NA NA
## 9406 NA NA
## 9407 NA NA
## 9408 NA NA
## 9409 NA NA
## 9410 NA NA
## 9411 NA NA
## 9412 NA NA
## 9413 NA NA
## 9414 NA NA
## 9415 29.420 45.118
## 9416 29.420 45.118
## 9417 29.420 45.118
## 9418 29.420 45.118
## 9419 29.420 45.118
## 9420 29.420 45.118
## 9421 958.845 970.122
## 9422 958.845 970.122
## 9423 958.845 970.122
## 9424 958.845 970.122
## 9425 958.845 970.122
## 9426 958.845 970.122
## 9427 NA NA
## 9428 NA NA
## 9429 NA NA
## 9430 NA NA
## 9431 NA NA
## 9432 NA NA
## 9433 NA NA
## 9434 NA NA
## 9435 NA NA
## 9436 NA NA
## 9437 NA NA
## 9438 NA NA
## 9439 1.291 23.272
## 9440 1.291 23.272
## 9441 1.291 23.272
## 9442 1.291 23.272
## 9443 1.291 23.272
## 9444 1.291 23.272
## 9445 18.901 36.010
## 9446 18.901 36.010
## 9447 18.901 36.010
## 9448 18.901 36.010
## 9449 18.901 36.010
## 9450 18.901 36.010
## 9451 2.990 17.978
## 9452 2.990 17.978
## 9453 2.990 17.978
## 9454 2.990 17.978
## 9455 2.990 17.978
## 9456 2.990 17.978
## 9457 NA NA
## 9458 NA NA
## 9459 NA NA
## 9460 NA NA
## 9461 NA NA
## 9462 NA NA
## 9463 NA NA
## 9464 NA NA
## 9465 NA NA
## 9466 NA NA
## 9467 NA NA
## 9468 NA NA
## 9469 NA NA
## 9470 NA NA
## 9471 NA NA
## 9472 NA NA
## 9473 NA NA
## 9474 NA NA
## 9475 NA NA
## 9476 NA NA
## 9477 NA NA
## 9478 NA NA
## 9479 NA NA
## 9480 NA NA
## 9481 NA NA
## 9482 NA NA
## 9483 NA NA
## 9484 NA NA
## 9485 NA NA
## 9486 NA NA
## 9487 NA NA
## 9488 NA NA
## 9489 NA NA
## 9490 NA NA
## 9491 NA NA
## 9492 NA NA
## 9493 NA NA
## 9494 NA NA
## 9495 NA NA
## 9496 NA NA
## 9497 NA NA
## 9498 NA NA
## 9499 NA NA
## 9500 NA NA
## 9501 NA NA
## 9502 NA NA
## 9503 NA NA
## 9504 NA NA
## 9505 NA NA
## 9506 NA NA
## 9507 NA NA
## 9508 NA NA
## 9509 NA NA
## 9510 NA NA
## 9511 NA NA
## 9512 NA NA
## 9513 NA NA
## 9514 NA NA
## 9515 NA NA
## 9516 NA NA
## 9517 NA NA
## 9518 NA NA
## 9519 NA NA
## 9520 NA NA
## 9521 NA NA
## 9522 NA NA
## 9523 6.509 15.193
## 9524 6.509 15.193
## 9525 6.509 15.193
## 9526 6.509 15.193
## 9527 6.509 15.193
## 9528 6.509 15.193
## 9529 NA NA
## 9530 NA NA
## 9531 NA NA
## 9532 NA NA
## 9533 NA NA
## 9534 NA NA
## 9535 28.638 40.421
## 9536 28.638 40.421
## 9537 28.638 40.421
## 9538 28.638 40.421
## 9539 28.638 40.421
## 9540 28.638 40.421
## 9541 NA NA
## 9542 NA NA
## 9543 NA NA
## 9544 NA NA
## 9545 NA NA
## 9546 NA NA
## 9547 8.387 13.400
## 9548 8.387 13.400
## 9549 8.387 13.400
## 9550 8.387 13.400
## 9551 8.387 13.400
## 9552 8.387 13.400
## 9553 NA NA
## 9554 NA NA
## 9555 NA NA
## 9556 NA NA
## 9557 NA NA
## 9558 NA NA
## 9559 NA NA
## 9560 NA NA
## 9561 NA NA
## 9562 NA NA
## 9563 NA NA
## 9564 NA NA
## 9565 NA NA
## 9566 NA NA
## 9567 NA NA
## 9568 NA NA
## 9569 NA NA
## 9570 NA NA
## 9571 1.858 49.048
## 9572 1.858 49.048
## 9573 1.858 49.048
## 9574 1.858 49.048
## 9575 1.858 49.048
## 9576 1.858 49.048
## 9577 NA NA
## 9578 NA NA
## 9579 NA NA
## 9580 NA NA
## 9581 NA NA
## 9582 NA NA
## 9583 NA NA
## 9584 NA NA
## 9585 NA NA
## 9586 NA NA
## 9587 NA NA
## 9588 NA NA
## 9589 NA NA
## 9590 NA NA
## 9591 NA NA
## 9592 NA NA
## 9593 NA NA
## 9594 NA NA
## 9595 NA NA
## 9596 NA NA
## 9597 NA NA
## 9598 NA NA
## 9599 NA NA
## 9600 NA NA
## 9601 13.893 41.860
## 9602 13.893 41.860
## 9603 13.893 41.860
## 9604 13.893 41.860
## 9605 13.893 41.860
## 9606 13.893 41.860
## 9607 NA NA
## 9608 NA NA
## 9609 NA NA
## 9610 NA NA
## 9611 NA NA
## 9612 NA NA
## 9613 NA NA
## 9614 NA NA
## 9615 NA NA
## 9616 NA NA
## 9617 NA NA
## 9618 NA NA
## 9619 12.680 28.260
## 9620 12.680 28.260
## 9621 12.680 28.260
## 9622 12.680 28.260
## 9623 12.680 28.260
## 9624 12.680 28.260
## 9625 NA NA
## 9626 NA NA
## 9627 NA NA
## 9628 NA NA
## 9629 NA NA
## 9630 NA NA
## 9631 NA NA
## 9632 NA NA
## 9633 NA NA
## 9634 NA NA
## 9635 NA NA
## 9636 NA NA
## 9637 28.121 33.674
## 9638 28.121 33.674
## 9639 28.121 33.674
## 9640 28.121 33.674
## 9641 28.121 33.674
## 9642 28.121 33.674
## 9643 NA NA
## 9644 NA NA
## 9645 NA NA
## 9646 NA NA
## 9647 NA NA
## 9648 NA NA
## 9649 NA NA
## 9650 NA NA
## 9651 NA NA
## 9652 NA NA
## 9653 NA NA
## 9654 NA NA
## 9655 NA NA
## 9656 NA NA
## 9657 NA NA
## 9658 NA NA
## 9659 NA NA
## 9660 NA NA
## 9661 25.714 40.131
## 9662 25.714 40.131
## 9663 25.714 40.131
## 9664 25.714 40.131
## 9665 25.714 40.131
## 9666 25.714 40.131
## 9667 NA NA
## 9668 NA NA
## 9669 NA NA
## 9670 NA NA
## 9671 NA NA
## 9672 NA NA
## 9673 NA NA
## 9674 NA NA
## 9675 NA NA
## 9676 NA NA
## 9677 NA NA
## 9678 NA NA
## 9679 3.433 38.182
## 9680 3.433 38.182
## 9681 3.433 38.182
## 9682 3.433 38.182
## 9683 3.433 38.182
## 9684 3.433 38.182
## 9685 NA NA
## 9686 NA NA
## 9687 NA NA
## 9688 NA NA
## 9689 NA NA
## 9690 NA NA
## 9691 NA NA
## 9692 NA NA
## 9693 NA NA
## 9694 NA NA
## 9695 NA NA
## 9696 NA NA
## 9697 NA NA
## 9698 NA NA
## 9699 NA NA
## 9700 NA NA
## 9701 NA NA
## 9702 NA NA
## 9703 NA NA
## 9704 NA NA
## 9705 NA NA
## 9706 NA NA
## 9707 NA NA
## 9708 NA NA
## 9709 24.030 41.571
## 9710 24.030 41.571
## 9711 24.030 41.571
## 9712 24.030 41.571
## 9713 24.030 41.571
## 9714 24.030 41.571
## 9715 NA NA
## 9716 NA NA
## 9717 NA NA
## 9718 NA NA
## 9719 NA NA
## 9720 NA NA
## 9721 8.102 10.622
## 9722 8.102 10.622
## 9723 8.102 10.622
## 9724 8.102 10.622
## 9725 8.102 10.622
## 9726 8.102 10.622
## 9727 NA NA
## 9728 NA NA
## 9729 NA NA
## 9730 NA NA
## 9731 NA NA
## 9732 NA NA
## 9733 NA NA
## 9734 NA NA
## 9735 NA NA
## 9736 NA NA
## 9737 NA NA
## 9738 NA NA
## 9739 2.310 22.989
## 9740 2.310 22.989
## 9741 2.310 22.989
## 9742 2.310 22.989
## 9743 2.310 22.989
## 9744 2.310 22.989
## 9745 NA NA
## 9746 NA NA
## 9747 NA NA
## 9748 NA NA
## 9749 NA NA
## 9750 NA NA
## 9751 NA NA
## 9752 NA NA
## 9753 NA NA
## 9754 NA NA
## 9755 NA NA
## 9756 NA NA
## 9757 NA NA
## 9758 NA NA
## 9759 NA NA
## 9760 NA NA
## 9761 NA NA
## 9762 NA NA
## 9763 NA NA
## 9764 NA NA
## 9765 NA NA
## 9766 NA NA
## 9767 NA NA
## 9768 NA NA
## 9769 7.434 35.009
## 9770 7.434 35.009
## 9771 7.434 35.009
## 9772 7.434 35.009
## 9773 7.434 35.009
## 9774 7.434 35.009
## 9775 NA NA
## 9776 NA NA
## 9777 NA NA
## 9778 NA NA
## 9779 NA NA
## 9780 NA NA
## 9781 NA NA
## 9782 NA NA
## 9783 NA NA
## 9784 NA NA
## 9785 NA NA
## 9786 NA NA
## 9787 5.181 17.678
## 9788 5.181 17.678
## 9789 5.181 17.678
## 9790 5.181 17.678
## 9791 5.181 17.678
## 9792 5.181 17.678
## 9793 NA NA
## 9794 NA NA
## 9795 NA NA
## 9796 NA NA
## 9797 NA NA
## 9798 NA NA
## 9799 NA NA
## 9800 NA NA
## 9801 NA NA
## 9802 NA NA
## 9803 NA NA
## 9804 NA NA
## 9805 7.708 92.587
## 9806 7.708 92.587
## 9807 7.708 92.587
## 9808 7.708 92.587
## 9809 7.708 92.587
## 9810 7.708 92.587
## 9811 NA NA
## 9812 NA NA
## 9813 NA NA
## 9814 NA NA
## 9815 NA NA
## 9816 NA NA
## 9817 NA NA
## 9818 NA NA
## 9819 NA NA
## 9820 NA NA
## 9821 NA NA
## 9822 NA NA
## 9823 NA NA
## 9824 NA NA
## 9825 NA NA
## 9826 NA NA
## 9827 NA NA
## 9828 NA NA
## 9829 NA NA
## 9830 NA NA
## 9831 NA NA
## 9832 NA NA
## 9833 NA NA
## 9834 NA NA
## 9835 NA NA
## 9836 NA NA
## 9837 NA NA
## 9838 NA NA
## 9839 NA NA
## 9840 NA NA
## 9841 26.801 52.201
## 9842 26.801 52.201
## 9843 26.801 52.201
## 9844 26.801 52.201
## 9845 26.801 52.201
## 9846 26.801 52.201
## 9847 61.667 134.871
## 9848 61.667 134.871
## 9849 61.667 134.871
## 9850 61.667 134.871
## 9851 61.667 134.871
## 9852 61.667 134.871
## 9853 NA NA
## 9854 NA NA
## 9855 NA NA
## 9856 NA NA
## 9857 NA NA
## 9858 NA NA
## 9859 14.330 49.130
## 9860 14.330 49.130
## 9861 14.330 49.130
## 9862 14.330 49.130
## 9863 14.330 49.130
## 9864 14.330 49.130
## 9865 7.799 18.725
## 9866 7.799 18.725
## 9867 7.799 18.725
## 9868 7.799 18.725
## 9869 7.799 18.725
## 9870 7.799 18.725
## 9871 NA NA
## 9872 NA NA
## 9873 NA NA
## 9874 NA NA
## 9875 NA NA
## 9876 NA NA
## 9877 NA NA
## 9878 NA NA
## 9879 NA NA
## 9880 NA NA
## 9881 NA NA
## 9882 NA NA
## 9883 NA NA
## 9884 NA NA
## 9885 NA NA
## 9886 NA NA
## 9887 NA NA
## 9888 NA NA
## 9889 NA NA
## 9890 NA NA
## 9891 NA NA
## 9892 NA NA
## 9893 NA NA
## 9894 NA NA
## 9895 NA NA
## 9896 NA NA
## 9897 NA NA
## 9898 NA NA
## 9899 NA NA
## 9900 NA NA
## 9901 NA NA
## 9902 NA NA
## 9903 NA NA
## 9904 NA NA
## 9905 NA NA
## 9906 NA NA
## 9907 NA NA
## 9908 NA NA
## 9909 NA NA
## 9910 NA NA
## 9911 NA NA
## 9912 NA NA
## 9913 NA NA
## 9914 NA NA
## 9915 NA NA
## 9916 NA NA
## 9917 NA NA
## 9918 NA NA
## 9919 10.877 25.600
## 9920 10.877 25.600
## 9921 10.877 25.600
## 9922 10.877 25.600
## 9923 10.877 25.600
## 9924 10.877 25.600
## 9925 9.067 48.173
## 9926 9.067 48.173
## 9927 9.067 48.173
## 9928 9.067 48.173
## 9929 9.067 48.173
## 9930 9.067 48.173
## 9931 NA NA
## 9932 NA NA
## 9933 NA NA
## 9934 NA NA
## 9935 NA NA
## 9936 NA NA
## 9937 NA NA
## 9938 NA NA
## 9939 NA NA
## 9940 NA NA
## 9941 NA NA
## 9942 NA NA
## 9943 NA NA
## 9944 NA NA
## 9945 NA NA
## 9946 NA NA
## 9947 NA NA
## 9948 NA NA
## 9949 NA NA
## 9950 NA NA
## 9951 NA NA
## 9952 NA NA
## 9953 NA NA
## 9954 NA NA
## 9955 4.984 11.265
## 9956 4.984 11.265
## 9957 4.984 11.265
## 9958 4.984 11.265
## 9959 4.984 11.265
## 9960 4.984 11.265
## 9961 20.428 30.800
## 9962 20.428 30.800
## 9963 20.428 30.800
## 9964 20.428 30.800
## 9965 20.428 30.800
## 9966 20.428 30.800
## 9967 NA NA
## 9968 NA NA
## 9969 NA NA
## 9970 NA NA
## 9971 NA NA
## 9972 NA NA
## 9973 219.760 223.857
## 9974 219.760 223.857
## 9975 219.760 223.857
## 9976 219.760 223.857
## 9977 219.760 223.857
## 9978 219.760 223.857
## 9979 NA NA
## 9980 NA NA
## 9981 NA NA
## 9982 NA NA
## 9983 NA NA
## 9984 NA NA
## 9985 17.022 40.296
## 9986 17.022 40.296
## 9987 17.022 40.296
## 9988 17.022 40.296
## 9989 17.022 40.296
## 9990 17.022 40.296
## 9991 NA NA
## 9992 NA NA
## 9993 NA NA
## 9994 NA NA
## 9995 NA NA
## 9996 NA NA
## 9997 NA NA
## 9998 NA NA
## 9999 NA NA
## 10000 NA NA
## 10001 NA NA
## 10002 NA NA
## 10003 NA NA
## 10004 NA NA
## 10005 NA NA
## 10006 NA NA
## 10007 NA NA
## 10008 NA NA
## 10009 NA NA
## 10010 NA NA
## 10011 NA NA
## 10012 NA NA
## 10013 NA NA
## 10014 NA NA
## 10015 NA NA
## 10016 NA NA
## 10017 NA NA
## 10018 NA NA
## 10019 NA NA
## 10020 NA NA
## 10021 NA NA
## 10022 NA NA
## 10023 NA NA
## 10024 NA NA
## 10025 NA NA
## 10026 NA NA
## 10027 14.063 102.535
## 10028 14.063 102.535
## 10029 14.063 102.535
## 10030 14.063 102.535
## 10031 14.063 102.535
## 10032 14.063 102.535
## 10033 11.401 34.393
## 10034 11.401 34.393
## 10035 11.401 34.393
## 10036 11.401 34.393
## 10037 11.401 34.393
## 10038 11.401 34.393
## 10039 NA NA
## 10040 NA NA
## 10041 NA NA
## 10042 NA NA
## 10043 NA NA
## 10044 NA NA
## 10045 NA NA
## 10046 NA NA
## 10047 NA NA
## 10048 NA NA
## 10049 NA NA
## 10050 NA NA
## 10051 NA NA
## 10052 NA NA
## 10053 NA NA
## 10054 NA NA
## 10055 NA NA
## 10056 NA NA
## 10057 NA NA
## 10058 NA NA
## 10059 NA NA
## 10060 NA NA
## 10061 NA NA
## 10062 NA NA
## 10063 NA NA
## 10064 NA NA
## 10065 NA NA
## 10066 NA NA
## 10067 NA NA
## 10068 NA NA
## 10069 NA NA
## 10070 NA NA
## 10071 NA NA
## 10072 NA NA
## 10073 NA NA
## 10074 NA NA
## 10075 3.708 49.928
## 10076 3.708 49.928
## 10077 3.708 49.928
## 10078 3.708 49.928
## 10079 3.708 49.928
## 10080 3.708 49.928
## 10081 NA NA
## 10082 NA NA
## 10083 NA NA
## 10084 NA NA
## 10085 NA NA
## 10086 NA NA
## 10087 NA NA
## 10088 NA NA
## 10089 NA NA
## 10090 NA NA
## 10091 NA NA
## 10092 NA NA
## 10093 NA NA
## 10094 NA NA
## 10095 NA NA
## 10096 NA NA
## 10097 NA NA
## 10098 NA NA
## 10099 NA NA
## 10100 NA NA
## 10101 NA NA
## 10102 NA NA
## 10103 NA NA
## 10104 NA NA
## 10105 NA NA
## 10106 NA NA
## 10107 NA NA
## 10108 NA NA
## 10109 NA NA
## 10110 NA NA
## 10111 NA NA
## 10112 NA NA
## 10113 NA NA
## 10114 NA NA
## 10115 NA NA
## 10116 NA NA
## 10117 NA NA
## 10118 NA NA
## 10119 NA NA
## 10120 NA NA
## 10121 NA NA
## 10122 NA NA
## 10123 NA NA
## 10124 NA NA
## 10125 NA NA
## 10126 NA NA
## 10127 NA NA
## 10128 NA NA
## 10129 NA NA
## 10130 NA NA
## 10131 NA NA
## 10132 NA NA
## 10133 NA NA
## 10134 NA NA
## 10135 NA NA
## 10136 NA NA
## 10137 NA NA
## 10138 NA NA
## 10139 NA NA
## 10140 NA NA
## 10141 NA NA
## 10142 NA NA
## 10143 NA NA
## 10144 NA NA
## 10145 NA NA
## 10146 NA NA
## 10147 NA NA
## 10148 NA NA
## 10149 NA NA
## 10150 NA NA
## 10151 NA NA
## 10152 NA NA
## 10153 NA NA
## 10154 NA NA
## 10155 NA NA
## 10156 NA NA
## 10157 NA NA
## 10158 NA NA
## 10159 NA NA
## 10160 NA NA
## 10161 NA NA
## 10162 NA NA
## 10163 NA NA
## 10164 NA NA
## 10165 NA NA
## 10166 NA NA
## 10167 NA NA
## 10168 NA NA
## 10169 NA NA
## 10170 NA NA
## 10171 NA NA
## 10172 NA NA
## 10173 NA NA
## 10174 NA NA
## 10175 NA NA
## 10176 NA NA
## 10177 NA NA
## 10178 NA NA
## 10179 NA NA
## 10180 NA NA
## 10181 NA NA
## 10182 NA NA
## 10183 NA NA
## 10184 NA NA
## 10185 NA NA
## 10186 NA NA
## 10187 NA NA
## 10188 NA NA
## 10189 NA NA
## 10190 NA NA
## 10191 NA NA
## 10192 NA NA
## 10193 NA NA
## 10194 NA NA
## 10195 5.491 11.448
## 10196 5.491 11.448
## 10197 5.491 11.448
## 10198 5.491 11.448
## 10199 5.491 11.448
## 10200 5.491 11.448
## 10201 12.347 21.563
## 10202 12.347 21.563
## 10203 12.347 21.563
## 10204 12.347 21.563
## 10205 12.347 21.563
## 10206 12.347 21.563
## 10207 13.191 27.420
## 10208 13.191 27.420
## 10209 13.191 27.420
## 10210 13.191 27.420
## 10211 13.191 27.420
## 10212 13.191 27.420
## 10213 NA NA
## 10214 NA NA
## 10215 NA NA
## 10216 NA NA
## 10217 NA NA
## 10218 NA NA
## 10219 9.609 16.128
## 10220 9.609 16.128
## 10221 9.609 16.128
## 10222 9.609 16.128
## 10223 9.609 16.128
## 10224 9.609 16.128
## 10225 NA NA
## 10226 NA NA
## 10227 NA NA
## 10228 NA NA
## 10229 NA NA
## 10230 NA NA
## 10231 NA NA
## 10232 NA NA
## 10233 NA NA
## 10234 NA NA
## 10235 NA NA
## 10236 NA NA
## 10237 30.636 87.785
## 10238 30.636 87.785
## 10239 30.636 87.785
## 10240 30.636 87.785
## 10241 30.636 87.785
## 10242 30.636 87.785
## 10243 1.736 54.188
## 10244 1.736 54.188
## 10245 1.736 54.188
## 10246 1.736 54.188
## 10247 1.736 54.188
## 10248 1.736 54.188
## 10249 74.323 78.706
## 10250 74.323 78.706
## 10251 74.323 78.706
## 10252 74.323 78.706
## 10253 74.323 78.706
## 10254 74.323 78.706
## 10255 NA NA
## 10256 NA NA
## 10257 NA NA
## 10258 NA NA
## 10259 NA NA
## 10260 NA NA
## 10261 NA NA
## 10262 NA NA
## 10263 NA NA
## 10264 NA NA
## 10265 NA NA
## 10266 NA NA
## 10267 NA NA
## 10268 NA NA
## 10269 NA NA
## 10270 NA NA
## 10271 NA NA
## 10272 NA NA
## 10273 NA NA
## 10274 NA NA
## 10275 NA NA
## 10276 NA NA
## 10277 NA NA
## 10278 NA NA
## 10279 NA NA
## 10280 NA NA
## 10281 NA NA
## 10282 NA NA
## 10283 NA NA
## 10284 NA NA
## 10285 NA NA
## 10286 NA NA
## 10287 NA NA
## 10288 NA NA
## 10289 NA NA
## 10290 NA NA
## 10291 NA NA
## 10292 NA NA
## 10293 NA NA
## 10294 NA NA
## 10295 NA NA
## 10296 NA NA
## 10297 17.534 25.428
## 10298 17.534 25.428
## 10299 17.534 25.428
## 10300 17.534 25.428
## 10301 17.534 25.428
## 10302 17.534 25.428
## 10303 NA NA
## 10304 NA NA
## 10305 NA NA
## 10306 NA NA
## 10307 NA NA
## 10308 NA NA
## 10309 9.360 20.837
## 10310 9.360 20.837
## 10311 9.360 20.837
## 10312 9.360 20.837
## 10313 9.360 20.837
## 10314 9.360 20.837
## 10315 NA NA
## 10316 NA NA
## 10317 NA NA
## 10318 NA NA
## 10319 NA NA
## 10320 NA NA
## 10321 NA NA
## 10322 NA NA
## 10323 NA NA
## 10324 NA NA
## 10325 NA NA
## 10326 NA NA
## 10327 9.223 18.221
## 10328 9.223 18.221
## 10329 9.223 18.221
## 10330 9.223 18.221
## 10331 9.223 18.221
## 10332 9.223 18.221
## 10333 21.422 62.931
## 10334 21.422 62.931
## 10335 21.422 62.931
## 10336 21.422 62.931
## 10337 21.422 62.931
## 10338 21.422 62.931
## 10339 NA NA
## 10340 NA NA
## 10341 NA NA
## 10342 NA NA
## 10343 NA NA
## 10344 NA NA
## 10345 NA NA
## 10346 NA NA
## 10347 NA NA
## 10348 NA NA
## 10349 NA NA
## 10350 NA NA
## 10351 NA NA
## 10352 NA NA
## 10353 NA NA
## 10354 NA NA
## 10355 NA NA
## 10356 NA NA
## 10357 9.226 12.637
## 10358 9.226 12.637
## 10359 9.226 12.637
## 10360 9.226 12.637
## 10361 9.226 12.637
## 10362 9.226 12.637
## 10363 NA NA
## 10364 NA NA
## 10365 NA NA
## 10366 NA NA
## 10367 NA NA
## 10368 NA NA
## 10369 27.568 46.811
## 10370 27.568 46.811
## 10371 27.568 46.811
## 10372 27.568 46.811
## 10373 27.568 46.811
## 10374 27.568 46.811
## 10375 NA NA
## 10376 NA NA
## 10377 NA NA
## 10378 NA NA
## 10379 NA NA
## 10380 NA NA
## 10381 NA NA
## 10382 NA NA
## 10383 NA NA
## 10384 NA NA
## 10385 NA NA
## 10386 NA NA
## 10387 4.156 9.859
## 10388 4.156 9.859
## 10389 4.156 9.859
## 10390 4.156 9.859
## 10391 4.156 9.859
## 10392 4.156 9.859
## 10393 NA NA
## 10394 NA NA
## 10395 NA NA
## 10396 NA NA
## 10397 NA NA
## 10398 NA NA
## 10399 NA NA
## 10400 NA NA
## 10401 NA NA
## 10402 NA NA
## 10403 NA NA
## 10404 NA NA
## 10405 8.470 18.170
## 10406 8.470 18.170
## 10407 8.470 18.170
## 10408 8.470 18.170
## 10409 8.470 18.170
## 10410 8.470 18.170
## 10411 NA NA
## 10412 NA NA
## 10413 NA NA
## 10414 NA NA
## 10415 NA NA
## 10416 NA NA
## 10417 NA NA
## 10418 NA NA
## 10419 NA NA
## 10420 NA NA
## 10421 NA NA
## 10422 NA NA
## 10423 NA NA
## 10424 NA NA
## 10425 NA NA
## 10426 NA NA
## 10427 NA NA
## 10428 NA NA
## 10429 NA NA
## 10430 NA NA
## 10431 NA NA
## 10432 NA NA
## 10433 NA NA
## 10434 NA NA
## 10435 NA NA
## 10436 NA NA
## 10437 NA NA
## 10438 NA NA
## 10439 NA NA
## 10440 NA NA
## 10441 NA NA
## 10442 NA NA
## 10443 NA NA
## 10444 NA NA
## 10445 NA NA
## 10446 NA NA
## 10447 NA NA
## 10448 NA NA
## 10449 NA NA
## 10450 NA NA
## 10451 NA NA
## 10452 NA NA
## 10453 NA NA
## 10454 NA NA
## 10455 NA NA
## 10456 NA NA
## 10457 NA NA
## 10458 NA NA
## 10459 NA NA
## 10460 NA NA
## 10461 NA NA
## 10462 NA NA
## 10463 NA NA
## 10464 NA NA
## 10465 NA NA
## 10466 NA NA
## 10467 NA NA
## 10468 NA NA
## 10469 NA NA
## 10470 NA NA
## 10471 NA NA
## 10472 NA NA
## 10473 NA NA
## 10474 NA NA
## 10475 NA NA
## 10476 NA NA
## 10477 NA NA
## 10478 NA NA
## 10479 NA NA
## 10480 NA NA
## 10481 NA NA
## 10482 NA NA
## 10483 NA NA
## 10484 NA NA
## 10485 NA NA
## 10486 NA NA
## 10487 NA NA
## 10488 NA NA
## 10489 NA NA
## 10490 NA NA
## 10491 NA NA
## 10492 NA NA
## 10493 NA NA
## 10494 NA NA
## 10495 14.813 22.226
## 10496 14.813 22.226
## 10497 14.813 22.226
## 10498 14.813 22.226
## 10499 14.813 22.226
## 10500 14.813 22.226
## 10501 NA NA
## 10502 NA NA
## 10503 NA NA
## 10504 NA NA
## 10505 NA NA
## 10506 NA NA
## 10507 NA NA
## 10508 NA NA
## 10509 NA NA
## 10510 NA NA
## 10511 NA NA
## 10512 NA NA
## 10513 NA NA
## 10514 NA NA
## 10515 NA NA
## 10516 NA NA
## 10517 NA NA
## 10518 NA NA
## 10519 NA NA
## 10520 NA NA
## 10521 NA NA
## 10522 NA NA
## 10523 NA NA
## 10524 NA NA
## 10525 NA NA
## 10526 NA NA
## 10527 NA NA
## 10528 NA NA
## 10529 NA NA
## 10530 NA NA
## 10531 NA NA
## 10532 NA NA
## 10533 NA NA
## 10534 NA NA
## 10535 NA NA
## 10536 NA NA
## 10537 5.812 29.979
## 10538 5.812 29.979
## 10539 5.812 29.979
## 10540 5.812 29.979
## 10541 5.812 29.979
## 10542 5.812 29.979
## 10543 NA NA
## 10544 NA NA
## 10545 NA NA
## 10546 NA NA
## 10547 NA NA
## 10548 NA NA
## 10549 NA NA
## 10550 NA NA
## 10551 NA NA
## 10552 NA NA
## 10553 NA NA
## 10554 NA NA
## 10555 NA NA
## 10556 NA NA
## 10557 NA NA
## 10558 NA NA
## 10559 NA NA
## 10560 NA NA
## 10561 NA NA
## 10562 NA NA
## 10563 NA NA
## 10564 NA NA
## 10565 NA NA
## 10566 NA NA
## 10567 NA NA
## 10568 NA NA
## 10569 NA NA
## 10570 NA NA
## 10571 NA NA
## 10572 NA NA
## 10573 5.078 22.462
## 10574 5.078 22.462
## 10575 5.078 22.462
## 10576 5.078 22.462
## 10577 5.078 22.462
## 10578 5.078 22.462
## 10579 NA NA
## 10580 NA NA
## 10581 NA NA
## 10582 NA NA
## 10583 NA NA
## 10584 NA NA
## 10585 NA NA
## 10586 NA NA
## 10587 NA NA
## 10588 NA NA
## 10589 NA NA
## 10590 NA NA
## 10591 15.768 22.658
## 10592 15.768 22.658
## 10593 15.768 22.658
## 10594 15.768 22.658
## 10595 15.768 22.658
## 10596 15.768 22.658
## 10597 NA NA
## 10598 NA NA
## 10599 NA NA
## 10600 NA NA
## 10601 NA NA
## 10602 NA NA
## 10603 NA NA
## 10604 NA NA
## 10605 NA NA
## 10606 NA NA
## 10607 NA NA
## 10608 NA NA
## 10609 NA NA
## 10610 NA NA
## 10611 NA NA
## 10612 NA NA
## 10613 NA NA
## 10614 NA NA
## 10615 NA NA
## 10616 NA NA
## 10617 NA NA
## 10618 NA NA
## 10619 NA NA
## 10620 NA NA
## 10621 NA NA
## 10622 NA NA
## 10623 NA NA
## 10624 NA NA
## 10625 NA NA
## 10626 NA NA
## 10627 NA NA
## 10628 NA NA
## 10629 NA NA
## 10630 NA NA
## 10631 NA NA
## 10632 NA NA
## 10633 NA NA
## 10634 NA NA
## 10635 NA NA
## 10636 NA NA
## 10637 NA NA
## 10638 NA NA
## 10639 NA NA
## 10640 NA NA
## 10641 NA NA
## 10642 NA NA
## 10643 NA NA
## 10644 NA NA
## 10645 NA NA
## 10646 NA NA
## 10647 NA NA
## 10648 NA NA
## 10649 NA NA
## 10650 NA NA
## 10651 NA NA
## 10652 NA NA
## 10653 NA NA
## 10654 NA NA
## 10655 NA NA
## 10656 NA NA
## 10657 NA NA
## 10658 NA NA
## 10659 NA NA
## 10660 NA NA
## 10661 NA NA
## 10662 NA NA
## 10663 NA NA
## 10664 NA NA
## 10665 NA NA
## 10666 NA NA
## 10667 NA NA
## 10668 NA NA
## 10669 NA NA
## 10670 NA NA
## 10671 NA NA
## 10672 NA NA
## 10673 NA NA
## 10674 NA NA
## 10675 NA NA
## 10676 NA NA
## 10677 NA NA
## 10678 NA NA
## 10679 NA NA
## 10680 NA NA
## 10681 20.088 38.141
## 10682 20.088 38.141
## 10683 20.088 38.141
## 10684 20.088 38.141
## 10685 20.088 38.141
## 10686 20.088 38.141
## 10687 NA NA
## 10688 NA NA
## 10689 NA NA
## 10690 NA NA
## 10691 NA NA
## 10692 NA NA
## 10693 41.935 52.300
## 10694 41.935 52.300
## 10695 41.935 52.300
## 10696 41.935 52.300
## 10697 41.935 52.300
## 10698 41.935 52.300
## 10699 NA NA
## 10700 NA NA
## 10701 NA NA
## 10702 NA NA
## 10703 NA NA
## 10704 NA NA
## 10705 NA NA
## 10706 NA NA
## 10707 NA NA
## 10708 NA NA
## 10709 NA NA
## 10710 NA NA
## 10711 26.701 39.046
## 10712 26.701 39.046
## 10713 26.701 39.046
## 10714 26.701 39.046
## 10715 26.701 39.046
## 10716 26.701 39.046
## 10717 310.862 348.774
## 10718 310.862 348.774
## 10719 310.862 348.774
## 10720 310.862 348.774
## 10721 310.862 348.774
## 10722 310.862 348.774
## 10723 NA NA
## 10724 NA NA
## 10725 NA NA
## 10726 NA NA
## 10727 NA NA
## 10728 NA NA
## 10729 5.875 25.883
## 10730 5.875 25.883
## 10731 5.875 25.883
## 10732 5.875 25.883
## 10733 5.875 25.883
## 10734 5.875 25.883
## 10735 NA NA
## 10736 NA NA
## 10737 NA NA
## 10738 NA NA
## 10739 NA NA
## 10740 NA NA
## 10741 NA NA
## 10742 NA NA
## 10743 NA NA
## 10744 NA NA
## 10745 NA NA
## 10746 NA NA
## 10747 NA NA
## 10748 NA NA
## 10749 NA NA
## 10750 NA NA
## 10751 NA NA
## 10752 NA NA
## 10753 NA NA
## 10754 NA NA
## 10755 NA NA
## 10756 NA NA
## 10757 NA NA
## 10758 NA NA
## 10759 NA NA
## 10760 NA NA
## 10761 NA NA
## 10762 NA NA
## 10763 NA NA
## 10764 NA NA
## 10765 4.066 8.488
## 10766 4.066 8.488
## 10767 4.066 8.488
## 10768 4.066 8.488
## 10769 4.066 8.488
## 10770 4.066 8.488
## 10771 14.971 23.785
## 10772 14.971 23.785
## 10773 14.971 23.785
## 10774 14.971 23.785
## 10775 14.971 23.785
## 10776 14.971 23.785
## 10777 NA NA
## 10778 NA NA
## 10779 NA NA
## 10780 NA NA
## 10781 NA NA
## 10782 NA NA
## 10783 NA NA
## 10784 NA NA
## 10785 NA NA
## 10786 NA NA
## 10787 NA NA
## 10788 NA NA
## 10789 NA NA
## 10790 NA NA
## 10791 NA NA
## 10792 NA NA
## 10793 NA NA
## 10794 NA NA
## 10795 NA NA
## 10796 NA NA
## 10797 NA NA
## 10798 NA NA
## 10799 NA NA
## 10800 NA NA
## 10801 NA NA
## 10802 NA NA
## 10803 NA NA
## 10804 NA NA
## 10805 NA NA
## 10806 NA NA
## 10807 NA NA
## 10808 NA NA
## 10809 NA NA
## 10810 NA NA
## 10811 NA NA
## 10812 NA NA
## 10813 18.879 32.734
## 10814 18.879 32.734
## 10815 18.879 32.734
## 10816 18.879 32.734
## 10817 18.879 32.734
## 10818 18.879 32.734
## 10819 NA NA
## 10820 NA NA
## 10821 NA NA
## 10822 NA NA
## 10823 NA NA
## 10824 NA NA
## 10825 11.346 19.915
## 10826 11.346 19.915
## 10827 11.346 19.915
## 10828 11.346 19.915
## 10829 11.346 19.915
## 10830 11.346 19.915
## 10831 NA NA
## 10832 NA NA
## 10833 NA NA
## 10834 NA NA
## 10835 NA NA
## 10836 NA NA
## 10837 NA NA
## 10838 NA NA
## 10839 NA NA
## 10840 NA NA
## 10841 NA NA
## 10842 NA NA
## 10843 NA NA
## 10844 NA NA
## 10845 NA NA
## 10846 NA NA
## 10847 NA NA
## 10848 NA NA
## 10849 NA NA
## 10850 NA NA
## 10851 NA NA
## 10852 NA NA
## 10853 NA NA
## 10854 NA NA
## 10855 10.378 46.423
## 10856 10.378 46.423
## 10857 10.378 46.423
## 10858 10.378 46.423
## 10859 10.378 46.423
## 10860 10.378 46.423
## 10861 NA NA
## 10862 NA NA
## 10863 NA NA
## 10864 NA NA
## 10865 NA NA
## 10866 NA NA
## 10867 NA NA
## 10868 NA NA
## 10869 NA NA
## 10870 NA NA
## 10871 NA NA
## 10872 NA NA
## 10873 NA NA
## 10874 NA NA
## 10875 NA NA
## 10876 NA NA
## 10877 NA NA
## 10878 NA NA
## 10879 18.656 26.858
## 10880 18.656 26.858
## 10881 18.656 26.858
## 10882 18.656 26.858
## 10883 18.656 26.858
## 10884 18.656 26.858
## 10885 NA NA
## 10886 NA NA
## 10887 NA NA
## 10888 NA NA
## 10889 NA NA
## 10890 NA NA
## 10891 12.016 46.622
## 10892 12.016 46.622
## 10893 12.016 46.622
## 10894 12.016 46.622
## 10895 12.016 46.622
## 10896 12.016 46.622
## 10897 NA NA
## 10898 NA NA
## 10899 NA NA
## 10900 NA NA
## 10901 NA NA
## 10902 NA NA
## 10903 NA NA
## 10904 NA NA
## 10905 NA NA
## 10906 NA NA
## 10907 NA NA
## 10908 NA NA
## 10909 12.901 33.129
## 10910 12.901 33.129
## 10911 12.901 33.129
## 10912 12.901 33.129
## 10913 12.901 33.129
## 10914 12.901 33.129
## 10915 NA NA
## 10916 NA NA
## 10917 NA NA
## 10918 NA NA
## 10919 NA NA
## 10920 NA NA
## 10921 NA NA
## 10922 NA NA
## 10923 NA NA
## 10924 NA NA
## 10925 NA NA
## 10926 NA NA
## 10927 NA NA
## 10928 NA NA
## 10929 NA NA
## 10930 NA NA
## 10931 NA NA
## 10932 NA NA
## 10933 NA NA
## 10934 NA NA
## 10935 NA NA
## 10936 NA NA
## 10937 NA NA
## 10938 NA NA
## 10939 NA NA
## 10940 NA NA
## 10941 NA NA
## 10942 NA NA
## 10943 NA NA
## 10944 NA NA
## 10945 NA NA
## 10946 NA NA
## 10947 NA NA
## 10948 NA NA
## 10949 NA NA
## 10950 NA NA
## 10951 NA NA
## 10952 NA NA
## 10953 NA NA
## 10954 NA NA
## 10955 NA NA
## 10956 NA NA
## 10957 NA NA
## 10958 NA NA
## 10959 NA NA
## 10960 NA NA
## 10961 NA NA
## 10962 NA NA
## 10963 NA NA
## 10964 NA NA
## 10965 NA NA
## 10966 NA NA
## 10967 NA NA
## 10968 NA NA
## 10969 NA NA
## 10970 NA NA
## 10971 NA NA
## 10972 NA NA
## 10973 NA NA
## 10974 NA NA
## 10975 NA NA
## 10976 NA NA
## 10977 NA NA
## 10978 NA NA
## 10979 NA NA
## 10980 NA NA
## 10981 NA NA
## 10982 NA NA
## 10983 NA NA
## 10984 NA NA
## 10985 NA NA
## 10986 NA NA
## 10987 NA NA
## 10988 NA NA
## 10989 NA NA
## 10990 NA NA
## 10991 NA NA
## 10992 NA NA
## 10993 28.771 42.652
## 10994 28.771 42.652
## 10995 28.771 42.652
## 10996 28.771 42.652
## 10997 28.771 42.652
## 10998 28.771 42.652
## 10999 NA NA
## 11000 NA NA
## 11001 NA NA
## 11002 NA NA
## 11003 NA NA
## 11004 NA NA
## 11005 18.190 31.428
## 11006 18.190 31.428
## 11007 18.190 31.428
## 11008 18.190 31.428
## 11009 18.190 31.428
## 11010 18.190 31.428
## 11011 NA NA
## 11012 NA NA
## 11013 NA NA
## 11014 NA NA
## 11015 NA NA
## 11016 NA NA
## 11017 NA NA
## 11018 NA NA
## 11019 NA NA
## 11020 NA NA
## 11021 NA NA
## 11022 NA NA
## 11023 NA NA
## 11024 NA NA
## 11025 NA NA
## 11026 NA NA
## 11027 NA NA
## 11028 NA NA
## 11029 7.383 27.531
## 11030 7.383 27.531
## 11031 7.383 27.531
## 11032 7.383 27.531
## 11033 7.383 27.531
## 11034 7.383 27.531
## 11035 NA NA
## 11036 NA NA
## 11037 NA NA
## 11038 NA NA
## 11039 NA NA
## 11040 NA NA
## 11041 NA NA
## 11042 NA NA
## 11043 NA NA
## 11044 NA NA
## 11045 NA NA
## 11046 NA NA
## 11047 NA NA
## 11048 NA NA
## 11049 NA NA
## 11050 NA NA
## 11051 NA NA
## 11052 NA NA
## 11053 NA NA
## 11054 NA NA
## 11055 NA NA
## 11056 NA NA
## 11057 NA NA
## 11058 NA NA
## 11059 32.154 51.094
## 11060 32.154 51.094
## 11061 32.154 51.094
## 11062 32.154 51.094
## 11063 32.154 51.094
## 11064 32.154 51.094
## 11065 NA NA
## 11066 NA NA
## 11067 NA NA
## 11068 NA NA
## 11069 NA NA
## 11070 NA NA
## 11071 NA NA
## 11072 NA NA
## 11073 NA NA
## 11074 NA NA
## 11075 NA NA
## 11076 NA NA
## 11077 NA NA
## 11078 NA NA
## 11079 NA NA
## 11080 NA NA
## 11081 NA NA
## 11082 NA NA
## 11083 NA NA
## 11084 NA NA
## 11085 NA NA
## 11086 NA NA
## 11087 NA NA
## 11088 NA NA
## 11089 14.482 30.375
## 11090 14.482 30.375
## 11091 14.482 30.375
## 11092 14.482 30.375
## 11093 14.482 30.375
## 11094 14.482 30.375
## 11095 NA NA
## 11096 NA NA
## 11097 NA NA
## 11098 NA NA
## 11099 NA NA
## 11100 NA NA
## 11101 NA NA
## 11102 NA NA
## 11103 NA NA
## 11104 NA NA
## 11105 NA NA
## 11106 NA NA
## 11107 28.433 47.676
## 11108 28.433 47.676
## 11109 28.433 47.676
## 11110 28.433 47.676
## 11111 28.433 47.676
## 11112 28.433 47.676
## 11113 9.642 24.001
## 11114 9.642 24.001
## 11115 9.642 24.001
## 11116 9.642 24.001
## 11117 9.642 24.001
## 11118 9.642 24.001
## 11119 NA NA
## 11120 NA NA
## 11121 NA NA
## 11122 NA NA
## 11123 NA NA
## 11124 NA NA
## 11125 NA NA
## 11126 NA NA
## 11127 NA NA
## 11128 NA NA
## 11129 NA NA
## 11130 NA NA
## 11131 NA NA
## 11132 NA NA
## 11133 NA NA
## 11134 NA NA
## 11135 NA NA
## 11136 NA NA
## 11137 NA NA
## 11138 NA NA
## 11139 NA NA
## 11140 NA NA
## 11141 NA NA
## 11142 NA NA
## 11143 NA NA
## 11144 NA NA
## 11145 NA NA
## 11146 NA NA
## 11147 NA NA
## 11148 NA NA
## 11149 NA NA
## 11150 NA NA
## 11151 NA NA
## 11152 NA NA
## 11153 NA NA
## 11154 NA NA
## 11155 NA NA
## 11156 NA NA
## 11157 NA NA
## 11158 NA NA
## 11159 NA NA
## 11160 NA NA
## 11161 6.297 22.574
## 11162 6.297 22.574
## 11163 6.297 22.574
## 11164 6.297 22.574
## 11165 6.297 22.574
## 11166 6.297 22.574
## 11167 NA NA
## 11168 NA NA
## 11169 NA NA
## 11170 NA NA
## 11171 NA NA
## 11172 NA NA
## 11173 NA NA
## 11174 NA NA
## 11175 NA NA
## 11176 NA NA
## 11177 NA NA
## 11178 NA NA
## 11179 32.868 69.676
## 11180 32.868 69.676
## 11181 32.868 69.676
## 11182 32.868 69.676
## 11183 32.868 69.676
## 11184 32.868 69.676
## 11185 NA NA
## 11186 NA NA
## 11187 NA NA
## 11188 NA NA
## 11189 NA NA
## 11190 NA NA
## 11191 NA NA
## 11192 NA NA
## 11193 NA NA
## 11194 NA NA
## 11195 NA NA
## 11196 NA NA
## 11197 NA NA
## 11198 NA NA
## 11199 NA NA
## 11200 NA NA
## 11201 NA NA
## 11202 NA NA
## 11203 NA NA
## 11204 NA NA
## 11205 NA NA
## 11206 NA NA
## 11207 NA NA
## 11208 NA NA
## 11209 NA NA
## 11210 NA NA
## 11211 NA NA
## 11212 NA NA
## 11213 NA NA
## 11214 NA NA
## 11215 15.119 59.307
## 11216 15.119 59.307
## 11217 15.119 59.307
## 11218 15.119 59.307
## 11219 15.119 59.307
## 11220 15.119 59.307
## 11221 16.500 33.869
## 11222 16.500 33.869
## 11223 16.500 33.869
## 11224 16.500 33.869
## 11225 16.500 33.869
## 11226 16.500 33.869
## 11227 NA NA
## 11228 NA NA
## 11229 NA NA
## 11230 NA NA
## 11231 NA NA
## 11232 NA NA
## 11233 NA NA
## 11234 NA NA
## 11235 NA NA
## 11236 NA NA
## 11237 NA NA
## 11238 NA NA
## 11239 NA NA
## 11240 NA NA
## 11241 NA NA
## 11242 NA NA
## 11243 NA NA
## 11244 NA NA
## 11245 NA NA
## 11246 NA NA
## 11247 NA NA
## 11248 NA NA
## 11249 NA NA
## 11250 NA NA
## 11251 NA NA
## 11252 NA NA
## 11253 NA NA
## 11254 NA NA
## 11255 NA NA
## 11256 NA NA
## 11257 NA NA
## 11258 NA NA
## 11259 NA NA
## 11260 NA NA
## 11261 NA NA
## 11262 NA NA
## 11263 20.234 27.850
## 11264 20.234 27.850
## 11265 20.234 27.850
## 11266 20.234 27.850
## 11267 20.234 27.850
## 11268 20.234 27.850
## 11269 NA NA
## 11270 NA NA
## 11271 NA NA
## 11272 NA NA
## 11273 NA NA
## 11274 NA NA
## 11275 NA NA
## 11276 NA NA
## 11277 NA NA
## 11278 NA NA
## 11279 NA NA
## 11280 NA NA
## 11281 15.544 46.822
## 11282 15.544 46.822
## 11283 15.544 46.822
## 11284 15.544 46.822
## 11285 15.544 46.822
## 11286 15.544 46.822
## 11287 6.021 49.476
## 11288 6.021 49.476
## 11289 6.021 49.476
## 11290 6.021 49.476
## 11291 6.021 49.476
## 11292 6.021 49.476
## 11293 4.406 71.324
## 11294 4.406 71.324
## 11295 4.406 71.324
## 11296 4.406 71.324
## 11297 4.406 71.324
## 11298 4.406 71.324
## 11299 NA NA
## 11300 NA NA
## 11301 NA NA
## 11302 NA NA
## 11303 NA NA
## 11304 NA NA
## 11305 NA NA
## 11306 NA NA
## 11307 NA NA
## 11308 NA NA
## 11309 NA NA
## 11310 NA NA
## 11311 NA NA
## 11312 NA NA
## 11313 NA NA
## 11314 NA NA
## 11315 NA NA
## 11316 NA NA
## 11317 NA NA
## 11318 NA NA
## 11319 NA NA
## 11320 NA NA
## 11321 NA NA
## 11322 NA NA
## 11323 NA NA
## 11324 NA NA
## 11325 NA NA
## 11326 NA NA
## 11327 NA NA
## 11328 NA NA
## 11329 NA NA
## 11330 NA NA
## 11331 NA NA
## 11332 NA NA
## 11333 NA NA
## 11334 NA NA
## 11335 NA NA
## 11336 NA NA
## 11337 NA NA
## 11338 NA NA
## 11339 NA NA
## 11340 NA NA
## 11341 NA NA
## 11342 NA NA
## 11343 NA NA
## 11344 NA NA
## 11345 NA NA
## 11346 NA NA
## 11347 NA NA
## 11348 NA NA
## 11349 NA NA
## 11350 NA NA
## 11351 NA NA
## 11352 NA NA
## 11353 NA NA
## 11354 NA NA
## 11355 NA NA
## 11356 NA NA
## 11357 NA NA
## 11358 NA NA
## 11359 15.721 59.734
## 11360 15.721 59.734
## 11361 15.721 59.734
## 11362 15.721 59.734
## 11363 15.721 59.734
## 11364 15.721 59.734
## 11365 14.500 33.662
## 11366 14.500 33.662
## 11367 14.500 33.662
## 11368 14.500 33.662
## 11369 14.500 33.662
## 11370 14.500 33.662
## 11371 NA NA
## 11372 NA NA
## 11373 NA NA
## 11374 NA NA
## 11375 NA NA
## 11376 NA NA
## 11377 NA NA
## 11378 NA NA
## 11379 NA NA
## 11380 NA NA
## 11381 NA NA
## 11382 NA NA
## 11383 11.155 27.727
## 11384 11.155 27.727
## 11385 11.155 27.727
## 11386 11.155 27.727
## 11387 11.155 27.727
## 11388 11.155 27.727
## 11389 165.386 205.922
## 11390 165.386 205.922
## 11391 165.386 205.922
## 11392 165.386 205.922
## 11393 165.386 205.922
## 11394 165.386 205.922
## 11395 NA NA
## 11396 NA NA
## 11397 NA NA
## 11398 NA NA
## 11399 NA NA
## 11400 NA NA
## 11401 51.823 67.953
## 11402 51.823 67.953
## 11403 51.823 67.953
## 11404 51.823 67.953
## 11405 51.823 67.953
## 11406 51.823 67.953
## 11407 NA NA
## 11408 NA NA
## 11409 NA NA
## 11410 NA NA
## 11411 NA NA
## 11412 NA NA
## 11413 NA NA
## 11414 NA NA
## 11415 NA NA
## 11416 NA NA
## 11417 NA NA
## 11418 NA NA
## 11419 NA NA
## 11420 NA NA
## 11421 NA NA
## 11422 NA NA
## 11423 NA NA
## 11424 NA NA
## 11425 NA NA
## 11426 NA NA
## 11427 NA NA
## 11428 NA NA
## 11429 NA NA
## 11430 NA NA
## 11431 NA NA
## 11432 NA NA
## 11433 NA NA
## 11434 NA NA
## 11435 NA NA
## 11436 NA NA
## 11437 NA NA
## 11438 NA NA
## 11439 NA NA
## 11440 NA NA
## 11441 NA NA
## 11442 NA NA
## 11443 NA NA
## 11444 NA NA
## 11445 NA NA
## 11446 NA NA
## 11447 NA NA
## 11448 NA NA
## 11449 NA NA
## 11450 NA NA
## 11451 NA NA
## 11452 NA NA
## 11453 NA NA
## 11454 NA NA
## 11455 NA NA
## 11456 NA NA
## 11457 NA NA
## 11458 NA NA
## 11459 NA NA
## 11460 NA NA
## 11461 NA NA
## 11462 NA NA
## 11463 NA NA
## 11464 NA NA
## 11465 NA NA
## 11466 NA NA
## 11467 NA NA
## 11468 NA NA
## 11469 NA NA
## 11470 NA NA
## 11471 NA NA
## 11472 NA NA
## 11473 NA NA
## 11474 NA NA
## 11475 NA NA
## 11476 NA NA
## 11477 NA NA
## 11478 NA NA
## 11479 NA NA
## 11480 NA NA
## 11481 NA NA
## 11482 NA NA
## 11483 NA NA
## 11484 NA NA
## 11485 NA NA
## 11486 NA NA
## 11487 NA NA
## 11488 NA NA
## 11489 NA NA
## 11490 NA NA
## 11491 NA NA
## 11492 NA NA
## 11493 NA NA
## 11494 NA NA
## 11495 NA NA
## 11496 NA NA
## 11497 NA NA
## 11498 NA NA
## 11499 NA NA
## 11500 NA NA
## 11501 NA NA
## 11502 NA NA
## 11503 NA NA
## 11504 NA NA
## 11505 NA NA
## 11506 NA NA
## 11507 NA NA
## 11508 NA NA
## 11509 NA NA
## 11510 NA NA
## 11511 NA NA
## 11512 NA NA
## 11513 NA NA
## 11514 NA NA
## 11515 NA NA
## 11516 NA NA
## 11517 NA NA
## 11518 NA NA
## 11519 NA NA
## 11520 NA NA
## 11521 NA NA
## 11522 NA NA
## 11523 NA NA
## 11524 NA NA
## 11525 NA NA
## 11526 NA NA
## 11527 17.097 69.121
## 11528 17.097 69.121
## 11529 17.097 69.121
## 11530 17.097 69.121
## 11531 17.097 69.121
## 11532 17.097 69.121
## 11533 NA NA
## 11534 NA NA
## 11535 NA NA
## 11536 NA NA
## 11537 NA NA
## 11538 NA NA
## 11539 NA NA
## 11540 NA NA
## 11541 NA NA
## 11542 NA NA
## 11543 NA NA
## 11544 NA NA
## 11545 74.885 89.915
## 11546 74.885 89.915
## 11547 74.885 89.915
## 11548 74.885 89.915
## 11549 74.885 89.915
## 11550 74.885 89.915
## 11551 NA NA
## 11552 NA NA
## 11553 NA NA
## 11554 NA NA
## 11555 NA NA
## 11556 NA NA
## 11557 NA NA
## 11558 NA NA
## 11559 NA NA
## 11560 NA NA
## 11561 NA NA
## 11562 NA NA
## 11563 NA NA
## 11564 NA NA
## 11565 NA NA
## 11566 NA NA
## 11567 NA NA
## 11568 NA NA
## 11569 NA NA
## 11570 NA NA
## 11571 NA NA
## 11572 NA NA
## 11573 NA NA
## 11574 NA NA
## 11575 NA NA
## 11576 NA NA
## 11577 NA NA
## 11578 NA NA
## 11579 NA NA
## 11580 NA NA
## 11581 NA NA
## 11582 NA NA
## 11583 NA NA
## 11584 NA NA
## 11585 NA NA
## 11586 NA NA
## 11587 NA NA
## 11588 NA NA
## 11589 NA NA
## 11590 NA NA
## 11591 NA NA
## 11592 NA NA
## 11593 NA NA
## 11594 NA NA
## 11595 NA NA
## 11596 NA NA
## 11597 NA NA
## 11598 NA NA
## 11599 NA NA
## 11600 NA NA
## 11601 NA NA
## 11602 NA NA
## 11603 NA NA
## 11604 NA NA
## 11605 NA NA
## 11606 NA NA
## 11607 NA NA
## 11608 NA NA
## 11609 NA NA
## 11610 NA NA
## 11611 NA NA
## 11612 NA NA
## 11613 NA NA
## 11614 NA NA
## 11615 NA NA
## 11616 NA NA
## 11617 NA NA
## 11618 NA NA
## 11619 NA NA
## 11620 NA NA
## 11621 NA NA
## 11622 NA NA
## 11623 10.500 21.124
## 11624 10.500 21.124
## 11625 10.500 21.124
## 11626 10.500 21.124
## 11627 10.500 21.124
## 11628 10.500 21.124
## 11629 NA NA
## 11630 NA NA
## 11631 NA NA
## 11632 NA NA
## 11633 NA NA
## 11634 NA NA
## 11635 9.225 19.677
## 11636 9.225 19.677
## 11637 9.225 19.677
## 11638 9.225 19.677
## 11639 9.225 19.677
## 11640 9.225 19.677
## 11641 NA NA
## 11642 NA NA
## 11643 NA NA
## 11644 NA NA
## 11645 NA NA
## 11646 NA NA
## 11647 NA NA
## 11648 NA NA
## 11649 NA NA
## 11650 NA NA
## 11651 NA NA
## 11652 NA NA
## 11653 NA NA
## 11654 NA NA
## 11655 NA NA
## 11656 NA NA
## 11657 NA NA
## 11658 NA NA
## 11659 NA NA
## 11660 NA NA
## 11661 NA NA
## 11662 NA NA
## 11663 NA NA
## 11664 NA NA
## 11665 59.754 62.982
## 11666 59.754 62.982
## 11667 59.754 62.982
## 11668 59.754 62.982
## 11669 59.754 62.982
## 11670 59.754 62.982
## 11671 NA NA
## 11672 NA NA
## 11673 NA NA
## 11674 NA NA
## 11675 NA NA
## 11676 NA NA
## 11677 NA NA
## 11678 NA NA
## 11679 NA NA
## 11680 NA NA
## 11681 NA NA
## 11682 NA NA
## 11683 16.478 33.318
## 11684 16.478 33.318
## 11685 16.478 33.318
## 11686 16.478 33.318
## 11687 16.478 33.318
## 11688 16.478 33.318
## 11689 NA NA
## 11690 NA NA
## 11691 NA NA
## 11692 NA NA
## 11693 NA NA
## 11694 NA NA
## 11695 NA NA
## 11696 NA NA
## 11697 NA NA
## 11698 NA NA
## 11699 NA NA
## 11700 NA NA
## 11701 6.892 16.700
## 11702 6.892 16.700
## 11703 6.892 16.700
## 11704 6.892 16.700
## 11705 6.892 16.700
## 11706 6.892 16.700
## 11707 NA NA
## 11708 NA NA
## 11709 NA NA
## 11710 NA NA
## 11711 NA NA
## 11712 NA NA
## 11713 17.785 55.031
## 11714 17.785 55.031
## 11715 17.785 55.031
## 11716 17.785 55.031
## 11717 17.785 55.031
## 11718 17.785 55.031
## 11719 NA NA
## 11720 NA NA
## 11721 NA NA
## 11722 NA NA
## 11723 NA NA
## 11724 NA NA
## 11725 NA NA
## 11726 NA NA
## 11727 NA NA
## 11728 NA NA
## 11729 NA NA
## 11730 NA NA
## 11731 NA NA
## 11732 NA NA
## 11733 NA NA
## 11734 NA NA
## 11735 NA NA
## 11736 NA NA
## 11737 6.363 17.345
## 11738 6.363 17.345
## 11739 6.363 17.345
## 11740 6.363 17.345
## 11741 6.363 17.345
## 11742 6.363 17.345
## 11743 NA NA
## 11744 NA NA
## 11745 NA NA
## 11746 NA NA
## 11747 NA NA
## 11748 NA NA
## 11749 NA NA
## 11750 NA NA
## 11751 NA NA
## 11752 NA NA
## 11753 NA NA
## 11754 NA NA
## 11755 10.479 18.447
## 11756 10.479 18.447
## 11757 10.479 18.447
## 11758 10.479 18.447
## 11759 10.479 18.447
## 11760 10.479 18.447
## 11761 NA NA
## 11762 NA NA
## 11763 NA NA
## 11764 NA NA
## 11765 NA NA
## 11766 NA NA
## 11767 NA NA
## 11768 NA NA
## 11769 NA NA
## 11770 NA NA
## 11771 NA NA
## 11772 NA NA
## 11773 NA NA
## 11774 NA NA
## 11775 NA NA
## 11776 NA NA
## 11777 NA NA
## 11778 NA NA
## 11779 NA NA
## 11780 NA NA
## 11781 NA NA
## 11782 NA NA
## 11783 NA NA
## 11784 NA NA
## 11785 102.512 181.738
## 11786 102.512 181.738
## 11787 102.512 181.738
## 11788 102.512 181.738
## 11789 102.512 181.738
## 11790 102.512 181.738
## 11791 NA NA
## 11792 NA NA
## 11793 NA NA
## 11794 NA NA
## 11795 NA NA
## 11796 NA NA
## 11797 NA NA
## 11798 NA NA
## 11799 NA NA
## 11800 NA NA
## 11801 NA NA
## 11802 NA NA
## 11803 NA NA
## 11804 NA NA
## 11805 NA NA
## 11806 NA NA
## 11807 NA NA
## 11808 NA NA
## 11809 NA NA
## 11810 NA NA
## 11811 NA NA
## 11812 NA NA
## 11813 NA NA
## 11814 NA NA
## 11815 NA NA
## 11816 NA NA
## 11817 NA NA
## 11818 NA NA
## 11819 NA NA
## 11820 NA NA
## 11821 5.160 59.130
## 11822 5.160 59.130
## 11823 5.160 59.130
## 11824 5.160 59.130
## 11825 5.160 59.130
## 11826 5.160 59.130
## 11827 NA NA
## 11828 NA NA
## 11829 NA NA
## 11830 NA NA
## 11831 NA NA
## 11832 NA NA
## 11833 NA NA
## 11834 NA NA
## 11835 NA NA
## 11836 NA NA
## 11837 NA NA
## 11838 NA NA
## 11839 NA NA
## 11840 NA NA
## 11841 NA NA
## 11842 NA NA
## 11843 NA NA
## 11844 NA NA
## 11845 NA NA
## 11846 NA NA
## 11847 NA NA
## 11848 NA NA
## 11849 NA NA
## 11850 NA NA
## 11851 9.709 37.229
## 11852 9.709 37.229
## 11853 9.709 37.229
## 11854 9.709 37.229
## 11855 9.709 37.229
## 11856 9.709 37.229
## 11857 3.519 23.439
## 11858 3.519 23.439
## 11859 3.519 23.439
## 11860 3.519 23.439
## 11861 3.519 23.439
## 11862 3.519 23.439
## 11863 10.350 58.259
## 11864 10.350 58.259
## 11865 10.350 58.259
## 11866 10.350 58.259
## 11867 10.350 58.259
## 11868 10.350 58.259
## 11869 NA NA
## 11870 NA NA
## 11871 NA NA
## 11872 NA NA
## 11873 NA NA
## 11874 NA NA
## 11875 NA NA
## 11876 NA NA
## 11877 NA NA
## 11878 NA NA
## 11879 NA NA
## 11880 NA NA
## 11881 NA NA
## 11882 NA NA
## 11883 NA NA
## 11884 NA NA
## 11885 NA NA
## 11886 NA NA
## 11887 NA NA
## 11888 NA NA
## 11889 NA NA
## 11890 NA NA
## 11891 NA NA
## 11892 NA NA
## 11893 5.872 104.998
## 11894 5.872 104.998
## 11895 5.872 104.998
## 11896 5.872 104.998
## 11897 5.872 104.998
## 11898 5.872 104.998
## 11899 NA NA
## 11900 NA NA
## 11901 NA NA
## 11902 NA NA
## 11903 NA NA
## 11904 NA NA
## 11905 36.483 76.017
## 11906 36.483 76.017
## 11907 36.483 76.017
## 11908 36.483 76.017
## 11909 36.483 76.017
## 11910 36.483 76.017
## 11911 NA NA
## 11912 NA NA
## 11913 NA NA
## 11914 NA NA
## 11915 NA NA
## 11916 NA NA
## 11917 NA NA
## 11918 NA NA
## 11919 NA NA
## 11920 NA NA
## 11921 NA NA
## 11922 NA NA
## 11923 NA NA
## 11924 NA NA
## 11925 NA NA
## 11926 NA NA
## 11927 NA NA
## 11928 NA NA
## 11929 NA NA
## 11930 NA NA
## 11931 NA NA
## 11932 NA NA
## 11933 NA NA
## 11934 NA NA
## 11935 NA NA
## 11936 NA NA
## 11937 NA NA
## 11938 NA NA
## 11939 NA NA
## 11940 NA NA
## 11941 NA NA
## 11942 NA NA
## 11943 NA NA
## 11944 NA NA
## 11945 NA NA
## 11946 NA NA
## 11947 NA NA
## 11948 NA NA
## 11949 NA NA
## 11950 NA NA
## 11951 NA NA
## 11952 NA NA
## 11953 NA NA
## 11954 NA NA
## 11955 NA NA
## 11956 NA NA
## 11957 NA NA
## 11958 NA NA
## 11959 NA NA
## 11960 NA NA
## 11961 NA NA
## 11962 NA NA
## 11963 NA NA
## 11964 NA NA
## 11965 NA NA
## 11966 NA NA
## 11967 NA NA
## 11968 NA NA
## 11969 NA NA
## 11970 NA NA
## 11971 14.210 25.292
## 11972 14.210 25.292
## 11973 14.210 25.292
## 11974 14.210 25.292
## 11975 14.210 25.292
## 11976 14.210 25.292
## 11977 NA NA
## 11978 NA NA
## 11979 NA NA
## 11980 NA NA
## 11981 NA NA
## 11982 NA NA
## 11983 14.585 56.907
## 11984 14.585 56.907
## 11985 14.585 56.907
## 11986 14.585 56.907
## 11987 14.585 56.907
## 11988 14.585 56.907
## 11989 NA NA
## 11990 NA NA
## 11991 NA NA
## 11992 NA NA
## 11993 NA NA
## 11994 NA NA
## 11995 4.093 36.654
## 11996 4.093 36.654
## 11997 4.093 36.654
## 11998 4.093 36.654
## 11999 4.093 36.654
## 12000 4.093 36.654
## 12001 NA NA
## 12002 NA NA
## 12003 NA NA
## 12004 NA NA
## 12005 NA NA
## 12006 NA NA
## 12007 NA NA
## 12008 NA NA
## 12009 NA NA
## 12010 NA NA
## 12011 NA NA
## 12012 NA NA
## 12013 NA NA
## 12014 NA NA
## 12015 NA NA
## 12016 NA NA
## 12017 NA NA
## 12018 NA NA
## 12019 NA NA
## 12020 NA NA
## 12021 NA NA
## 12022 NA NA
## 12023 NA NA
## 12024 NA NA
## 12025 NA NA
## 12026 NA NA
## 12027 NA NA
## 12028 NA NA
## 12029 NA NA
## 12030 NA NA
## 12031 52.733 66.477
## 12032 52.733 66.477
## 12033 52.733 66.477
## 12034 52.733 66.477
## 12035 52.733 66.477
## 12036 52.733 66.477
## 12037 NA NA
## 12038 NA NA
## 12039 NA NA
## 12040 NA NA
## 12041 NA NA
## 12042 NA NA
## 12043 NA NA
## 12044 NA NA
## 12045 NA NA
## 12046 NA NA
## 12047 NA NA
## 12048 NA NA
## 12049 15.452 28.498
## 12050 15.452 28.498
## 12051 15.452 28.498
## 12052 15.452 28.498
## 12053 15.452 28.498
## 12054 15.452 28.498
## 12055 NA NA
## 12056 NA NA
## 12057 NA NA
## 12058 NA NA
## 12059 NA NA
## 12060 NA NA
## 12061 NA NA
## 12062 NA NA
## 12063 NA NA
## 12064 NA NA
## 12065 NA NA
## 12066 NA NA
## 12067 15.231 31.927
## 12068 15.231 31.927
## 12069 15.231 31.927
## 12070 15.231 31.927
## 12071 15.231 31.927
## 12072 15.231 31.927
## 12073 NA NA
## 12074 NA NA
## 12075 NA NA
## 12076 NA NA
## 12077 NA NA
## 12078 NA NA
## 12079 NA NA
## 12080 NA NA
## 12081 NA NA
## 12082 NA NA
## 12083 NA NA
## 12084 NA NA
## 12085 NA NA
## 12086 NA NA
## 12087 NA NA
## 12088 NA NA
## 12089 NA NA
## 12090 NA NA
## 12091 2.078 41.471
## 12092 2.078 41.471
## 12093 2.078 41.471
## 12094 2.078 41.471
## 12095 2.078 41.471
## 12096 2.078 41.471
## 12097 NA NA
## 12098 NA NA
## 12099 NA NA
## 12100 NA NA
## 12101 NA NA
## 12102 NA NA
## 12103 NA NA
## 12104 NA NA
## 12105 NA NA
## 12106 NA NA
## 12107 NA NA
## 12108 NA NA
## 12109 12.394 33.370
## 12110 12.394 33.370
## 12111 12.394 33.370
## 12112 12.394 33.370
## 12113 12.394 33.370
## 12114 12.394 33.370
## 12115 NA NA
## 12116 NA NA
## 12117 NA NA
## 12118 NA NA
## 12119 NA NA
## 12120 NA NA
## 12121 NA NA
## 12122 NA NA
## 12123 NA NA
## 12124 NA NA
## 12125 NA NA
## 12126 NA NA
## 12127 NA NA
## 12128 NA NA
## 12129 NA NA
## 12130 NA NA
## 12131 NA NA
## 12132 NA NA
## 12133 NA NA
## 12134 NA NA
## 12135 NA NA
## 12136 NA NA
## 12137 NA NA
## 12138 NA NA
## 12139 NA NA
## 12140 NA NA
## 12141 NA NA
## 12142 NA NA
## 12143 NA NA
## 12144 NA NA
## 12145 NA NA
## 12146 NA NA
## 12147 NA NA
## 12148 NA NA
## 12149 NA NA
## 12150 NA NA
## 12151 NA NA
## 12152 NA NA
## 12153 NA NA
## 12154 NA NA
## 12155 NA NA
## 12156 NA NA
## 12157 NA NA
## 12158 NA NA
## 12159 NA NA
## 12160 NA NA
## 12161 NA NA
## 12162 NA NA
## 12163 NA NA
## 12164 NA NA
## 12165 NA NA
## 12166 NA NA
## 12167 NA NA
## 12168 NA NA
## 12169 NA NA
## 12170 NA NA
## 12171 NA NA
## 12172 NA NA
## 12173 NA NA
## 12174 NA NA
## 12175 NA NA
## 12176 NA NA
## 12177 NA NA
## 12178 NA NA
## 12179 NA NA
## 12180 NA NA
## 12181 NA NA
## 12182 NA NA
## 12183 NA NA
## 12184 NA NA
## 12185 NA NA
## 12186 NA NA
## 12187 NA NA
## 12188 NA NA
## 12189 NA NA
## 12190 NA NA
## 12191 NA NA
## 12192 NA NA
## 12193 NA NA
## 12194 NA NA
## 12195 NA NA
## 12196 NA NA
## 12197 NA NA
## 12198 NA NA
## 12199 NA NA
## 12200 NA NA
## 12201 NA NA
## 12202 NA NA
## 12203 NA NA
## 12204 NA NA
## 12205 NA NA
## 12206 NA NA
## 12207 NA NA
## 12208 NA NA
## 12209 NA NA
## 12210 NA NA
## 12211 NA NA
## 12212 NA NA
## 12213 NA NA
## 12214 NA NA
## 12215 NA NA
## 12216 NA NA
## 12217 NA NA
## 12218 NA NA
## 12219 NA NA
## 12220 NA NA
## 12221 NA NA
## 12222 NA NA
## 12223 19.769 29.612
## 12224 19.769 29.612
## 12225 19.769 29.612
## 12226 19.769 29.612
## 12227 19.769 29.612
## 12228 19.769 29.612
## 12229 NA NA
## 12230 NA NA
## 12231 NA NA
## 12232 NA NA
## 12233 NA NA
## 12234 NA NA
## 12235 NA NA
## 12236 NA NA
## 12237 NA NA
## 12238 NA NA
## 12239 NA NA
## 12240 NA NA
## 12241 NA NA
## 12242 NA NA
## 12243 NA NA
## 12244 NA NA
## 12245 NA NA
## 12246 NA NA
## 12247 NA NA
## 12248 NA NA
## 12249 NA NA
## 12250 NA NA
## 12251 NA NA
## 12252 NA NA
## 12253 2.508 52.231
## 12254 2.508 52.231
## 12255 2.508 52.231
## 12256 2.508 52.231
## 12257 2.508 52.231
## 12258 2.508 52.231
## 12259 40.409 51.258
## 12260 40.409 51.258
## 12261 40.409 51.258
## 12262 40.409 51.258
## 12263 40.409 51.258
## 12264 40.409 51.258
## 12265 NA NA
## 12266 NA NA
## 12267 NA NA
## 12268 NA NA
## 12269 NA NA
## 12270 NA NA
## 12271 34.520 54.495
## 12272 34.520 54.495
## 12273 34.520 54.495
## 12274 34.520 54.495
## 12275 34.520 54.495
## 12276 34.520 54.495
## 12277 NA NA
## 12278 NA NA
## 12279 NA NA
## 12280 NA NA
## 12281 NA NA
## 12282 NA NA
## 12283 NA NA
## 12284 NA NA
## 12285 NA NA
## 12286 NA NA
## 12287 NA NA
## 12288 NA NA
## 12289 NA NA
## 12290 NA NA
## 12291 NA NA
## 12292 NA NA
## 12293 NA NA
## 12294 NA NA
## 12295 NA NA
## 12296 NA NA
## 12297 NA NA
## 12298 NA NA
## 12299 NA NA
## 12300 NA NA
## 12301 NA NA
## 12302 NA NA
## 12303 NA NA
## 12304 NA NA
## 12305 NA NA
## 12306 NA NA
## 12307 NA NA
## 12308 NA NA
## 12309 NA NA
## 12310 NA NA
## 12311 NA NA
## 12312 NA NA
## 12313 NA NA
## 12314 NA NA
## 12315 NA NA
## 12316 NA NA
## 12317 NA NA
## 12318 NA NA
## 12319 NA NA
## 12320 NA NA
## 12321 NA NA
## 12322 NA NA
## 12323 NA NA
## 12324 NA NA
## 12325 NA NA
## 12326 NA NA
## 12327 NA NA
## 12328 NA NA
## 12329 NA NA
## 12330 NA NA
## 12331 NA NA
## 12332 NA NA
## 12333 NA NA
## 12334 NA NA
## 12335 NA NA
## 12336 NA NA
## 12337 13.205 28.705
## 12338 13.205 28.705
## 12339 13.205 28.705
## 12340 13.205 28.705
## 12341 13.205 28.705
## 12342 13.205 28.705
## 12343 NA NA
## 12344 NA NA
## 12345 NA NA
## 12346 NA NA
## 12347 NA NA
## 12348 NA NA
## 12349 NA NA
## 12350 NA NA
## 12351 NA NA
## 12352 NA NA
## 12353 NA NA
## 12354 NA NA
## 12355 NA NA
## 12356 NA NA
## 12357 NA NA
## 12358 NA NA
## 12359 NA NA
## 12360 NA NA
## 12361 NA NA
## 12362 NA NA
## 12363 NA NA
## 12364 NA NA
## 12365 NA NA
## 12366 NA NA
## 12367 NA NA
## 12368 NA NA
## 12369 NA NA
## 12370 NA NA
## 12371 NA NA
## 12372 NA NA
## 12373 NA NA
## 12374 NA NA
## 12375 NA NA
## 12376 NA NA
## 12377 NA NA
## 12378 NA NA
## 12379 NA NA
## 12380 NA NA
## 12381 NA NA
## 12382 NA NA
## 12383 NA NA
## 12384 NA NA
## 12385 NA NA
## 12386 NA NA
## 12387 NA NA
## 12388 NA NA
## 12389 NA NA
## 12390 NA NA
## 12391 NA NA
## 12392 NA NA
## 12393 NA NA
## 12394 NA NA
## 12395 NA NA
## 12396 NA NA
## 12397 NA NA
## 12398 NA NA
## 12399 NA NA
## 12400 NA NA
## 12401 NA NA
## 12402 NA NA
## 12403 NA NA
## 12404 NA NA
## 12405 NA NA
## 12406 NA NA
## 12407 NA NA
## 12408 NA NA
## 12409 NA NA
## 12410 NA NA
## 12411 NA NA
## 12412 NA NA
## 12413 NA NA
## 12414 NA NA
## 12415 24.778 31.586
## 12416 24.778 31.586
## 12417 24.778 31.586
## 12418 24.778 31.586
## 12419 24.778 31.586
## 12420 24.778 31.586
## 12421 NA NA
## 12422 NA NA
## 12423 NA NA
## 12424 NA NA
## 12425 NA NA
## 12426 NA NA
## 12427 NA NA
## 12428 NA NA
## 12429 NA NA
## 12430 NA NA
## 12431 NA NA
## 12432 NA NA
## 12433 NA NA
## 12434 NA NA
## 12435 NA NA
## 12436 NA NA
## 12437 NA NA
## 12438 NA NA
## 12439 8.918 51.318
## 12440 8.918 51.318
## 12441 8.918 51.318
## 12442 8.918 51.318
## 12443 8.918 51.318
## 12444 8.918 51.318
## 12445 NA NA
## 12446 NA NA
## 12447 NA NA
## 12448 NA NA
## 12449 NA NA
## 12450 NA NA
## 12451 NA NA
## 12452 NA NA
## 12453 NA NA
## 12454 NA NA
## 12455 NA NA
## 12456 NA NA
## 12457 38.588 59.334
## 12458 38.588 59.334
## 12459 38.588 59.334
## 12460 38.588 59.334
## 12461 38.588 59.334
## 12462 38.588 59.334
## 12463 NA NA
## 12464 NA NA
## 12465 NA NA
## 12466 NA NA
## 12467 NA NA
## 12468 NA NA
## 12469 NA NA
## 12470 NA NA
## 12471 NA NA
## 12472 NA NA
## 12473 NA NA
## 12474 NA NA
## 12475 NA NA
## 12476 NA NA
## 12477 NA NA
## 12478 NA NA
## 12479 NA NA
## 12480 NA NA
## 12481 NA NA
## 12482 NA NA
## 12483 NA NA
## 12484 NA NA
## 12485 NA NA
## 12486 NA NA
## 12487 NA NA
## 12488 NA NA
## 12489 NA NA
## 12490 NA NA
## 12491 NA NA
## 12492 NA NA
## 12493 NA NA
## 12494 NA NA
## 12495 NA NA
## 12496 NA NA
## 12497 NA NA
## 12498 NA NA
## 12499 NA NA
## V1.1_B_TIME_P1_First.Click V1.1_B_TIME_P1_Last.Click
## 1 NA NA
## 2 NA NA
## 3 NA NA
## 4 NA NA
## 5 NA NA
## 6 NA NA
## 7 24.924 37.607
## 8 24.924 37.607
## 9 24.924 37.607
## 10 24.924 37.607
## 11 24.924 37.607
## 12 24.924 37.607
## 13 2.362 32.450
## 14 2.362 32.450
## 15 2.362 32.450
## 16 2.362 32.450
## 17 2.362 32.450
## 18 2.362 32.450
## 19 NA NA
## 20 NA NA
## 21 NA NA
## 22 NA NA
## 23 NA NA
## 24 NA NA
## 25 1.935 14.887
## 26 1.935 14.887
## 27 1.935 14.887
## 28 1.935 14.887
## 29 1.935 14.887
## 30 1.935 14.887
## 31 NA NA
## 32 NA NA
## 33 NA NA
## 34 NA NA
## 35 NA NA
## 36 NA NA
## 37 NA NA
## 38 NA NA
## 39 NA NA
## 40 NA NA
## 41 NA NA
## 42 NA NA
## 43 NA NA
## 44 NA NA
## 45 NA NA
## 46 NA NA
## 47 NA NA
## 48 NA NA
## 49 NA NA
## 50 NA NA
## 51 NA NA
## 52 NA NA
## 53 NA NA
## 54 NA NA
## 55 NA NA
## 56 NA NA
## 57 NA NA
## 58 NA NA
## 59 NA NA
## 60 NA NA
## 61 NA NA
## 62 NA NA
## 63 NA NA
## 64 NA NA
## 65 NA NA
## 66 NA NA
## 67 NA NA
## 68 NA NA
## 69 NA NA
## 70 NA NA
## 71 NA NA
## 72 NA NA
## 73 NA NA
## 74 NA NA
## 75 NA NA
## 76 NA NA
## 77 NA NA
## 78 NA NA
## 79 NA NA
## 80 NA NA
## 81 NA NA
## 82 NA NA
## 83 NA NA
## 84 NA NA
## 85 8.318 28.302
## 86 8.318 28.302
## 87 8.318 28.302
## 88 8.318 28.302
## 89 8.318 28.302
## 90 8.318 28.302
## 91 NA NA
## 92 NA NA
## 93 NA NA
## 94 NA NA
## 95 NA NA
## 96 NA NA
## 97 NA NA
## 98 NA NA
## 99 NA NA
## 100 NA NA
## 101 NA NA
## 102 NA NA
## 103 NA NA
## 104 NA NA
## 105 NA NA
## 106 NA NA
## 107 NA NA
## 108 NA NA
## 109 NA NA
## 110 NA NA
## 111 NA NA
## 112 NA NA
## 113 NA NA
## 114 NA NA
## 115 NA NA
## 116 NA NA
## 117 NA NA
## 118 NA NA
## 119 NA NA
## 120 NA NA
## 121 NA NA
## 122 NA NA
## 123 NA NA
## 124 NA NA
## 125 NA NA
## 126 NA NA
## 127 NA NA
## 128 NA NA
## 129 NA NA
## 130 NA NA
## 131 NA NA
## 132 NA NA
## 133 NA NA
## 134 NA NA
## 135 NA NA
## 136 NA NA
## 137 NA NA
## 138 NA NA
## 139 35.444 54.267
## 140 35.444 54.267
## 141 35.444 54.267
## 142 35.444 54.267
## 143 35.444 54.267
## 144 35.444 54.267
## 145 15.807 34.083
## 146 15.807 34.083
## 147 15.807 34.083
## 148 15.807 34.083
## 149 15.807 34.083
## 150 15.807 34.083
## 151 NA NA
## 152 NA NA
## 153 NA NA
## 154 NA NA
## 155 NA NA
## 156 NA NA
## 157 NA NA
## 158 NA NA
## 159 NA NA
## 160 NA NA
## 161 NA NA
## 162 NA NA
## 163 13.863 31.708
## 164 13.863 31.708
## 165 13.863 31.708
## 166 13.863 31.708
## 167 13.863 31.708
## 168 13.863 31.708
## 169 NA NA
## 170 NA NA
## 171 NA NA
## 172 NA NA
## 173 NA NA
## 174 NA NA
## 175 NA NA
## 176 NA NA
## 177 NA NA
## 178 NA NA
## 179 NA NA
## 180 NA NA
## 181 NA NA
## 182 NA NA
## 183 NA NA
## 184 NA NA
## 185 NA NA
## 186 NA NA
## 187 1.511 33.167
## 188 1.511 33.167
## 189 1.511 33.167
## 190 1.511 33.167
## 191 1.511 33.167
## 192 1.511 33.167
## 193 NA NA
## 194 NA NA
## 195 NA NA
## 196 NA NA
## 197 NA NA
## 198 NA NA
## 199 20.414 36.670
## 200 20.414 36.670
## 201 20.414 36.670
## 202 20.414 36.670
## 203 20.414 36.670
## 204 20.414 36.670
## 205 NA NA
## 206 NA NA
## 207 NA NA
## 208 NA NA
## 209 NA NA
## 210 NA NA
## 211 64.474 79.776
## 212 64.474 79.776
## 213 64.474 79.776
## 214 64.474 79.776
## 215 64.474 79.776
## 216 64.474 79.776
## 217 NA NA
## 218 NA NA
## 219 NA NA
## 220 NA NA
## 221 NA NA
## 222 NA NA
## 223 NA NA
## 224 NA NA
## 225 NA NA
## 226 NA NA
## 227 NA NA
## 228 NA NA
## 229 6.372 40.394
## 230 6.372 40.394
## 231 6.372 40.394
## 232 6.372 40.394
## 233 6.372 40.394
## 234 6.372 40.394
## 235 NA NA
## 236 NA NA
## 237 NA NA
## 238 NA NA
## 239 NA NA
## 240 NA NA
## 241 NA NA
## 242 NA NA
## 243 NA NA
## 244 NA NA
## 245 NA NA
## 246 NA NA
## 247 NA NA
## 248 NA NA
## 249 NA NA
## 250 NA NA
## 251 NA NA
## 252 NA NA
## 253 NA NA
## 254 NA NA
## 255 NA NA
## 256 NA NA
## 257 NA NA
## 258 NA NA
## 259 NA NA
## 260 NA NA
## 261 NA NA
## 262 NA NA
## 263 NA NA
## 264 NA NA
## 265 NA NA
## 266 NA NA
## 267 NA NA
## 268 NA NA
## 269 NA NA
## 270 NA NA
## 271 5.933 33.841
## 272 5.933 33.841
## 273 5.933 33.841
## 274 5.933 33.841
## 275 5.933 33.841
## 276 5.933 33.841
## 277 NA NA
## 278 NA NA
## 279 NA NA
## 280 NA NA
## 281 NA NA
## 282 NA NA
## 283 25.132 37.158
## 284 25.132 37.158
## 285 25.132 37.158
## 286 25.132 37.158
## 287 25.132 37.158
## 288 25.132 37.158
## 289 NA NA
## 290 NA NA
## 291 NA NA
## 292 NA NA
## 293 NA NA
## 294 NA NA
## 295 NA NA
## 296 NA NA
## 297 NA NA
## 298 NA NA
## 299 NA NA
## 300 NA NA
## 301 17.029 31.860
## 302 17.029 31.860
## 303 17.029 31.860
## 304 17.029 31.860
## 305 17.029 31.860
## 306 17.029 31.860
## 307 NA NA
## 308 NA NA
## 309 NA NA
## 310 NA NA
## 311 NA NA
## 312 NA NA
## 313 NA NA
## 314 NA NA
## 315 NA NA
## 316 NA NA
## 317 NA NA
## 318 NA NA
## 319 7.873 18.265
## 320 7.873 18.265
## 321 7.873 18.265
## 322 7.873 18.265
## 323 7.873 18.265
## 324 7.873 18.265
## 325 NA NA
## 326 NA NA
## 327 NA NA
## 328 NA NA
## 329 NA NA
## 330 NA NA
## 331 NA NA
## 332 NA NA
## 333 NA NA
## 334 NA NA
## 335 NA NA
## 336 NA NA
## 337 NA NA
## 338 NA NA
## 339 NA NA
## 340 NA NA
## 341 NA NA
## 342 NA NA
## 343 NA NA
## 344 NA NA
## 345 NA NA
## 346 NA NA
## 347 NA NA
## 348 NA NA
## 349 29.456 43.113
## 350 29.456 43.113
## 351 29.456 43.113
## 352 29.456 43.113
## 353 29.456 43.113
## 354 29.456 43.113
## 355 NA NA
## 356 NA NA
## 357 NA NA
## 358 NA NA
## 359 NA NA
## 360 NA NA
## 361 NA NA
## 362 NA NA
## 363 NA NA
## 364 NA NA
## 365 NA NA
## 366 NA NA
## 367 13.775 74.938
## 368 13.775 74.938
## 369 13.775 74.938
## 370 13.775 74.938
## 371 13.775 74.938
## 372 13.775 74.938
## 373 NA NA
## 374 NA NA
## 375 NA NA
## 376 NA NA
## 377 NA NA
## 378 NA NA
## 379 NA NA
## 380 NA NA
## 381 NA NA
## 382 NA NA
## 383 NA NA
## 384 NA NA
## 385 NA NA
## 386 NA NA
## 387 NA NA
## 388 NA NA
## 389 NA NA
## 390 NA NA
## 391 NA NA
## 392 NA NA
## 393 NA NA
## 394 NA NA
## 395 NA NA
## 396 NA NA
## 397 NA NA
## 398 NA NA
## 399 NA NA
## 400 NA NA
## 401 NA NA
## 402 NA NA
## 403 41.609 55.530
## 404 41.609 55.530
## 405 41.609 55.530
## 406 41.609 55.530
## 407 41.609 55.530
## 408 41.609 55.530
## 409 NA NA
## 410 NA NA
## 411 NA NA
## 412 NA NA
## 413 NA NA
## 414 NA NA
## 415 NA NA
## 416 NA NA
## 417 NA NA
## 418 NA NA
## 419 NA NA
## 420 NA NA
## 421 NA NA
## 422 NA NA
## 423 NA NA
## 424 NA NA
## 425 NA NA
## 426 NA NA
## 427 NA NA
## 428 NA NA
## 429 NA NA
## 430 NA NA
## 431 NA NA
## 432 NA NA
## 433 24.908 38.875
## 434 24.908 38.875
## 435 24.908 38.875
## 436 24.908 38.875
## 437 24.908 38.875
## 438 24.908 38.875
## 439 13.533 28.432
## 440 13.533 28.432
## 441 13.533 28.432
## 442 13.533 28.432
## 443 13.533 28.432
## 444 13.533 28.432
## 445 17.803 26.186
## 446 17.803 26.186
## 447 17.803 26.186
## 448 17.803 26.186
## 449 17.803 26.186
## 450 17.803 26.186
## 451 NA NA
## 452 NA NA
## 453 NA NA
## 454 NA NA
## 455 NA NA
## 456 NA NA
## 457 10.987 43.041
## 458 10.987 43.041
## 459 10.987 43.041
## 460 10.987 43.041
## 461 10.987 43.041
## 462 10.987 43.041
## 463 13.181 41.740
## 464 13.181 41.740
## 465 13.181 41.740
## 466 13.181 41.740
## 467 13.181 41.740
## 468 13.181 41.740
## 469 39.655 79.415
## 470 39.655 79.415
## 471 39.655 79.415
## 472 39.655 79.415
## 473 39.655 79.415
## 474 39.655 79.415
## 475 NA NA
## 476 NA NA
## 477 NA NA
## 478 NA NA
## 479 NA NA
## 480 NA NA
## 481 NA NA
## 482 NA NA
## 483 NA NA
## 484 NA NA
## 485 NA NA
## 486 NA NA
## 487 NA NA
## 488 NA NA
## 489 NA NA
## 490 NA NA
## 491 NA NA
## 492 NA NA
## 493 NA NA
## 494 NA NA
## 495 NA NA
## 496 NA NA
## 497 NA NA
## 498 NA NA
## 499 NA NA
## 500 NA NA
## 501 NA NA
## 502 NA NA
## 503 NA NA
## 504 NA NA
## 505 NA NA
## 506 NA NA
## 507 NA NA
## 508 NA NA
## 509 NA NA
## 510 NA NA
## 511 NA NA
## 512 NA NA
## 513 NA NA
## 514 NA NA
## 515 NA NA
## 516 NA NA
## 517 NA NA
## 518 NA NA
## 519 NA NA
## 520 NA NA
## 521 NA NA
## 522 NA NA
## 523 NA NA
## 524 NA NA
## 525 NA NA
## 526 NA NA
## 527 NA NA
## 528 NA NA
## 529 NA NA
## 530 NA NA
## 531 NA NA
## 532 NA NA
## 533 NA NA
## 534 NA NA
## 535 NA NA
## 536 NA NA
## 537 NA NA
## 538 NA NA
## 539 NA NA
## 540 NA NA
## 541 NA NA
## 542 NA NA
## 543 NA NA
## 544 NA NA
## 545 NA NA
## 546 NA NA
## 547 0.977 54.205
## 548 0.977 54.205
## 549 0.977 54.205
## 550 0.977 54.205
## 551 0.977 54.205
## 552 0.977 54.205
## 553 NA NA
## 554 NA NA
## 555 NA NA
## 556 NA NA
## 557 NA NA
## 558 NA NA
## 559 14.806 34.440
## 560 14.806 34.440
## 561 14.806 34.440
## 562 14.806 34.440
## 563 14.806 34.440
## 564 14.806 34.440
## 565 NA NA
## 566 NA NA
## 567 NA NA
## 568 NA NA
## 569 NA NA
## 570 NA NA
## 571 NA NA
## 572 NA NA
## 573 NA NA
## 574 NA NA
## 575 NA NA
## 576 NA NA
## 577 NA NA
## 578 NA NA
## 579 NA NA
## 580 NA NA
## 581 NA NA
## 582 NA NA
## 583 NA NA
## 584 NA NA
## 585 NA NA
## 586 NA NA
## 587 NA NA
## 588 NA NA
## 589 2.375 67.260
## 590 2.375 67.260
## 591 2.375 67.260
## 592 2.375 67.260
## 593 2.375 67.260
## 594 2.375 67.260
## 595 NA NA
## 596 NA NA
## 597 NA NA
## 598 NA NA
## 599 NA NA
## 600 NA NA
## 601 NA NA
## 602 NA NA
## 603 NA NA
## 604 NA NA
## 605 NA NA
## 606 NA NA
## 607 NA NA
## 608 NA NA
## 609 NA NA
## 610 NA NA
## 611 NA NA
## 612 NA NA
## 613 NA NA
## 614 NA NA
## 615 NA NA
## 616 NA NA
## 617 NA NA
## 618 NA NA
## 619 8.767 69.896
## 620 8.767 69.896
## 621 8.767 69.896
## 622 8.767 69.896
## 623 8.767 69.896
## 624 8.767 69.896
## 625 18.614 60.703
## 626 18.614 60.703
## 627 18.614 60.703
## 628 18.614 60.703
## 629 18.614 60.703
## 630 18.614 60.703
## 631 NA NA
## 632 NA NA
## 633 NA NA
## 634 NA NA
## 635 NA NA
## 636 NA NA
## 637 NA NA
## 638 NA NA
## 639 NA NA
## 640 NA NA
## 641 NA NA
## 642 NA NA
## 643 NA NA
## 644 NA NA
## 645 NA NA
## 646 NA NA
## 647 NA NA
## 648 NA NA
## 649 NA NA
## 650 NA NA
## 651 NA NA
## 652 NA NA
## 653 NA NA
## 654 NA NA
## 655 NA NA
## 656 NA NA
## 657 NA NA
## 658 NA NA
## 659 NA NA
## 660 NA NA
## 661 NA NA
## 662 NA NA
## 663 NA NA
## 664 NA NA
## 665 NA NA
## 666 NA NA
## 667 NA NA
## 668 NA NA
## 669 NA NA
## 670 NA NA
## 671 NA NA
## 672 NA NA
## 673 NA NA
## 674 NA NA
## 675 NA NA
## 676 NA NA
## 677 NA NA
## 678 NA NA
## 679 NA NA
## 680 NA NA
## 681 NA NA
## 682 NA NA
## 683 NA NA
## 684 NA NA
## 685 NA NA
## 686 NA NA
## 687 NA NA
## 688 NA NA
## 689 NA NA
## 690 NA NA
## 691 NA NA
## 692 NA NA
## 693 NA NA
## 694 NA NA
## 695 NA NA
## 696 NA NA
## 697 22.186 40.522
## 698 22.186 40.522
## 699 22.186 40.522
## 700 22.186 40.522
## 701 22.186 40.522
## 702 22.186 40.522
## 703 8.307 42.019
## 704 8.307 42.019
## 705 8.307 42.019
## 706 8.307 42.019
## 707 8.307 42.019
## 708 8.307 42.019
## 709 NA NA
## 710 NA NA
## 711 NA NA
## 712 NA NA
## 713 NA NA
## 714 NA NA
## 715 NA NA
## 716 NA NA
## 717 NA NA
## 718 NA NA
## 719 NA NA
## 720 NA NA
## 721 NA NA
## 722 NA NA
## 723 NA NA
## 724 NA NA
## 725 NA NA
## 726 NA NA
## 727 NA NA
## 728 NA NA
## 729 NA NA
## 730 NA NA
## 731 NA NA
## 732 NA NA
## 733 NA NA
## 734 NA NA
## 735 NA NA
## 736 NA NA
## 737 NA NA
## 738 NA NA
## 739 NA NA
## 740 NA NA
## 741 NA NA
## 742 NA NA
## 743 NA NA
## 744 NA NA
## 745 NA NA
## 746 NA NA
## 747 NA NA
## 748 NA NA
## 749 NA NA
## 750 NA NA
## 751 NA NA
## 752 NA NA
## 753 NA NA
## 754 NA NA
## 755 NA NA
## 756 NA NA
## 757 210.202 249.743
## 758 210.202 249.743
## 759 210.202 249.743
## 760 210.202 249.743
## 761 210.202 249.743
## 762 210.202 249.743
## 763 NA NA
## 764 NA NA
## 765 NA NA
## 766 NA NA
## 767 NA NA
## 768 NA NA
## 769 6.667 22.303
## 770 6.667 22.303
## 771 6.667 22.303
## 772 6.667 22.303
## 773 6.667 22.303
## 774 6.667 22.303
## 775 NA NA
## 776 NA NA
## 777 NA NA
## 778 NA NA
## 779 NA NA
## 780 NA NA
## 781 NA NA
## 782 NA NA
## 783 NA NA
## 784 NA NA
## 785 NA NA
## 786 NA NA
## 787 NA NA
## 788 NA NA
## 789 NA NA
## 790 NA NA
## 791 NA NA
## 792 NA NA
## 793 NA NA
## 794 NA NA
## 795 NA NA
## 796 NA NA
## 797 NA NA
## 798 NA NA
## 799 5.100 40.730
## 800 5.100 40.730
## 801 5.100 40.730
## 802 5.100 40.730
## 803 5.100 40.730
## 804 5.100 40.730
## 805 NA NA
## 806 NA NA
## 807 NA NA
## 808 NA NA
## 809 NA NA
## 810 NA NA
## 811 48.400 107.794
## 812 48.400 107.794
## 813 48.400 107.794
## 814 48.400 107.794
## 815 48.400 107.794
## 816 48.400 107.794
## 817 NA NA
## 818 NA NA
## 819 NA NA
## 820 NA NA
## 821 NA NA
## 822 NA NA
## 823 25.367 58.507
## 824 25.367 58.507
## 825 25.367 58.507
## 826 25.367 58.507
## 827 25.367 58.507
## 828 25.367 58.507
## 829 26.101 39.178
## 830 26.101 39.178
## 831 26.101 39.178
## 832 26.101 39.178
## 833 26.101 39.178
## 834 26.101 39.178
## 835 NA NA
## 836 NA NA
## 837 NA NA
## 838 NA NA
## 839 NA NA
## 840 NA NA
## 841 NA NA
## 842 NA NA
## 843 NA NA
## 844 NA NA
## 845 NA NA
## 846 NA NA
## 847 1.205 88.376
## 848 1.205 88.376
## 849 1.205 88.376
## 850 1.205 88.376
## 851 1.205 88.376
## 852 1.205 88.376
## 853 NA NA
## 854 NA NA
## 855 NA NA
## 856 NA NA
## 857 NA NA
## 858 NA NA
## 859 46.726 70.836
## 860 46.726 70.836
## 861 46.726 70.836
## 862 46.726 70.836
## 863 46.726 70.836
## 864 46.726 70.836
## 865 NA NA
## 866 NA NA
## 867 NA NA
## 868 NA NA
## 869 NA NA
## 870 NA NA
## 871 6.551 75.154
## 872 6.551 75.154
## 873 6.551 75.154
## 874 6.551 75.154
## 875 6.551 75.154
## 876 6.551 75.154
## 877 24.216 49.301
## 878 24.216 49.301
## 879 24.216 49.301
## 880 24.216 49.301
## 881 24.216 49.301
## 882 24.216 49.301
## 883 NA NA
## 884 NA NA
## 885 NA NA
## 886 NA NA
## 887 NA NA
## 888 NA NA
## 889 NA NA
## 890 NA NA
## 891 NA NA
## 892 NA NA
## 893 NA NA
## 894 NA NA
## 895 NA NA
## 896 NA NA
## 897 NA NA
## 898 NA NA
## 899 NA NA
## 900 NA NA
## 901 NA NA
## 902 NA NA
## 903 NA NA
## 904 NA NA
## 905 NA NA
## 906 NA NA
## 907 NA NA
## 908 NA NA
## 909 NA NA
## 910 NA NA
## 911 NA NA
## 912 NA NA
## 913 NA NA
## 914 NA NA
## 915 NA NA
## 916 NA NA
## 917 NA NA
## 918 NA NA
## 919 NA NA
## 920 NA NA
## 921 NA NA
## 922 NA NA
## 923 NA NA
## 924 NA NA
## 925 21.973 46.543
## 926 21.973 46.543
## 927 21.973 46.543
## 928 21.973 46.543
## 929 21.973 46.543
## 930 21.973 46.543
## 931 NA NA
## 932 NA NA
## 933 NA NA
## 934 NA NA
## 935 NA NA
## 936 NA NA
## 937 28.431 49.205
## 938 28.431 49.205
## 939 28.431 49.205
## 940 28.431 49.205
## 941 28.431 49.205
## 942 28.431 49.205
## 943 72.472 110.949
## 944 72.472 110.949
## 945 72.472 110.949
## 946 72.472 110.949
## 947 72.472 110.949
## 948 72.472 110.949
## 949 NA NA
## 950 NA NA
## 951 NA NA
## 952 NA NA
## 953 NA NA
## 954 NA NA
## 955 8.947 63.437
## 956 8.947 63.437
## 957 8.947 63.437
## 958 8.947 63.437
## 959 8.947 63.437
## 960 8.947 63.437
## 961 37.448 79.755
## 962 37.448 79.755
## 963 37.448 79.755
## 964 37.448 79.755
## 965 37.448 79.755
## 966 37.448 79.755
## 967 NA NA
## 968 NA NA
## 969 NA NA
## 970 NA NA
## 971 NA NA
## 972 NA NA
## 973 NA NA
## 974 NA NA
## 975 NA NA
## 976 NA NA
## 977 NA NA
## 978 NA NA
## 979 NA NA
## 980 NA NA
## 981 NA NA
## 982 NA NA
## 983 NA NA
## 984 NA NA
## 985 NA NA
## 986 NA NA
## 987 NA NA
## 988 NA NA
## 989 NA NA
## 990 NA NA
## 991 NA NA
## 992 NA NA
## 993 NA NA
## 994 NA NA
## 995 NA NA
## 996 NA NA
## 997 NA NA
## 998 NA NA
## 999 NA NA
## 1000 NA NA
## 1001 NA NA
## 1002 NA NA
## 1003 NA NA
## 1004 NA NA
## 1005 NA NA
## 1006 NA NA
## 1007 NA NA
## 1008 NA NA
## 1009 NA NA
## 1010 NA NA
## 1011 NA NA
## 1012 NA NA
## 1013 NA NA
## 1014 NA NA
## 1015 NA NA
## 1016 NA NA
## 1017 NA NA
## 1018 NA NA
## 1019 NA NA
## 1020 NA NA
## 1021 NA NA
## 1022 NA NA
## 1023 NA NA
## 1024 NA NA
## 1025 NA NA
## 1026 NA NA
## 1027 NA NA
## 1028 NA NA
## 1029 NA NA
## 1030 NA NA
## 1031 NA NA
## 1032 NA NA
## 1033 NA NA
## 1034 NA NA
## 1035 NA NA
## 1036 NA NA
## 1037 NA NA
## 1038 NA NA
## 1039 NA NA
## 1040 NA NA
## 1041 NA NA
## 1042 NA NA
## 1043 NA NA
## 1044 NA NA
## 1045 NA NA
## 1046 NA NA
## 1047 NA NA
## 1048 NA NA
## 1049 NA NA
## 1050 NA NA
## 1051 NA NA
## 1052 NA NA
## 1053 NA NA
## 1054 NA NA
## 1055 NA NA
## 1056 NA NA
## 1057 NA NA
## 1058 NA NA
## 1059 NA NA
## 1060 NA NA
## 1061 NA NA
## 1062 NA NA
## 1063 NA NA
## 1064 NA NA
## 1065 NA NA
## 1066 NA NA
## 1067 NA NA
## 1068 NA NA
## 1069 9.619 55.433
## 1070 9.619 55.433
## 1071 9.619 55.433
## 1072 9.619 55.433
## 1073 9.619 55.433
## 1074 9.619 55.433
## 1075 NA NA
## 1076 NA NA
## 1077 NA NA
## 1078 NA NA
## 1079 NA NA
## 1080 NA NA
## 1081 NA NA
## 1082 NA NA
## 1083 NA NA
## 1084 NA NA
## 1085 NA NA
## 1086 NA NA
## 1087 10.711 66.144
## 1088 10.711 66.144
## 1089 10.711 66.144
## 1090 10.711 66.144
## 1091 10.711 66.144
## 1092 10.711 66.144
## 1093 NA NA
## 1094 NA NA
## 1095 NA NA
## 1096 NA NA
## 1097 NA NA
## 1098 NA NA
## 1099 NA NA
## 1100 NA NA
## 1101 NA NA
## 1102 NA NA
## 1103 NA NA
## 1104 NA NA
## 1105 NA NA
## 1106 NA NA
## 1107 NA NA
## 1108 NA NA
## 1109 NA NA
## 1110 NA NA
## 1111 NA NA
## 1112 NA NA
## 1113 NA NA
## 1114 NA NA
## 1115 NA NA
## 1116 NA NA
## 1117 20.742 54.163
## 1118 20.742 54.163
## 1119 20.742 54.163
## 1120 20.742 54.163
## 1121 20.742 54.163
## 1122 20.742 54.163
## 1123 NA NA
## 1124 NA NA
## 1125 NA NA
## 1126 NA NA
## 1127 NA NA
## 1128 NA NA
## 1129 2.549 91.143
## 1130 2.549 91.143
## 1131 2.549 91.143
## 1132 2.549 91.143
## 1133 2.549 91.143
## 1134 2.549 91.143
## 1135 NA NA
## 1136 NA NA
## 1137 NA NA
## 1138 NA NA
## 1139 NA NA
## 1140 NA NA
## 1141 NA NA
## 1142 NA NA
## 1143 NA NA
## 1144 NA NA
## 1145 NA NA
## 1146 NA NA
## 1147 NA NA
## 1148 NA NA
## 1149 NA NA
## 1150 NA NA
## 1151 NA NA
## 1152 NA NA
## 1153 48.356 56.370
## 1154 48.356 56.370
## 1155 48.356 56.370
## 1156 48.356 56.370
## 1157 48.356 56.370
## 1158 48.356 56.370
## 1159 NA NA
## 1160 NA NA
## 1161 NA NA
## 1162 NA NA
## 1163 NA NA
## 1164 NA NA
## 1165 8.141 24.564
## 1166 8.141 24.564
## 1167 8.141 24.564
## 1168 8.141 24.564
## 1169 8.141 24.564
## 1170 8.141 24.564
## 1171 NA NA
## 1172 NA NA
## 1173 NA NA
## 1174 NA NA
## 1175 NA NA
## 1176 NA NA
## 1177 NA NA
## 1178 NA NA
## 1179 NA NA
## 1180 NA NA
## 1181 NA NA
## 1182 NA NA
## 1183 NA NA
## 1184 NA NA
## 1185 NA NA
## 1186 NA NA
## 1187 NA NA
## 1188 NA NA
## 1189 NA NA
## 1190 NA NA
## 1191 NA NA
## 1192 NA NA
## 1193 NA NA
## 1194 NA NA
## 1195 NA NA
## 1196 NA NA
## 1197 NA NA
## 1198 NA NA
## 1199 NA NA
## 1200 NA NA
## 1201 NA NA
## 1202 NA NA
## 1203 NA NA
## 1204 NA NA
## 1205 NA NA
## 1206 NA NA
## 1207 NA NA
## 1208 NA NA
## 1209 NA NA
## 1210 NA NA
## 1211 NA NA
## 1212 NA NA
## 1213 NA NA
## 1214 NA NA
## 1215 NA NA
## 1216 NA NA
## 1217 NA NA
## 1218 NA NA
## 1219 NA NA
## 1220 NA NA
## 1221 NA NA
## 1222 NA NA
## 1223 NA NA
## 1224 NA NA
## 1225 NA NA
## 1226 NA NA
## 1227 NA NA
## 1228 NA NA
## 1229 NA NA
## 1230 NA NA
## 1231 17.472 39.531
## 1232 17.472 39.531
## 1233 17.472 39.531
## 1234 17.472 39.531
## 1235 17.472 39.531
## 1236 17.472 39.531
## 1237 NA NA
## 1238 NA NA
## 1239 NA NA
## 1240 NA NA
## 1241 NA NA
## 1242 NA NA
## 1243 NA NA
## 1244 NA NA
## 1245 NA NA
## 1246 NA NA
## 1247 NA NA
## 1248 NA NA
## 1249 NA NA
## 1250 NA NA
## 1251 NA NA
## 1252 NA NA
## 1253 NA NA
## 1254 NA NA
## 1255 NA NA
## 1256 NA NA
## 1257 NA NA
## 1258 NA NA
## 1259 NA NA
## 1260 NA NA
## 1261 NA NA
## 1262 NA NA
## 1263 NA NA
## 1264 NA NA
## 1265 NA NA
## 1266 NA NA
## 1267 2.648 39.645
## 1268 2.648 39.645
## 1269 2.648 39.645
## 1270 2.648 39.645
## 1271 2.648 39.645
## 1272 2.648 39.645
## 1273 NA NA
## 1274 NA NA
## 1275 NA NA
## 1276 NA NA
## 1277 NA NA
## 1278 NA NA
## 1279 NA NA
## 1280 NA NA
## 1281 NA NA
## 1282 NA NA
## 1283 NA NA
## 1284 NA NA
## 1285 NA NA
## 1286 NA NA
## 1287 NA NA
## 1288 NA NA
## 1289 NA NA
## 1290 NA NA
## 1291 NA NA
## 1292 NA NA
## 1293 NA NA
## 1294 NA NA
## 1295 NA NA
## 1296 NA NA
## 1297 NA NA
## 1298 NA NA
## 1299 NA NA
## 1300 NA NA
## 1301 NA NA
## 1302 NA NA
## 1303 NA NA
## 1304 NA NA
## 1305 NA NA
## 1306 NA NA
## 1307 NA NA
## 1308 NA NA
## 1309 NA NA
## 1310 NA NA
## 1311 NA NA
## 1312 NA NA
## 1313 NA NA
## 1314 NA NA
## 1315 NA NA
## 1316 NA NA
## 1317 NA NA
## 1318 NA NA
## 1319 NA NA
## 1320 NA NA
## 1321 49.679 96.589
## 1322 49.679 96.589
## 1323 49.679 96.589
## 1324 49.679 96.589
## 1325 49.679 96.589
## 1326 49.679 96.589
## 1327 NA NA
## 1328 NA NA
## 1329 NA NA
## 1330 NA NA
## 1331 NA NA
## 1332 NA NA
## 1333 NA NA
## 1334 NA NA
## 1335 NA NA
## 1336 NA NA
## 1337 NA NA
## 1338 NA NA
## 1339 NA NA
## 1340 NA NA
## 1341 NA NA
## 1342 NA NA
## 1343 NA NA
## 1344 NA NA
## 1345 NA NA
## 1346 NA NA
## 1347 NA NA
## 1348 NA NA
## 1349 NA NA
## 1350 NA NA
## 1351 NA NA
## 1352 NA NA
## 1353 NA NA
## 1354 NA NA
## 1355 NA NA
## 1356 NA NA
## 1357 NA NA
## 1358 NA NA
## 1359 NA NA
## 1360 NA NA
## 1361 NA NA
## 1362 NA NA
## 1363 NA NA
## 1364 NA NA
## 1365 NA NA
## 1366 NA NA
## 1367 NA NA
## 1368 NA NA
## 1369 NA NA
## 1370 NA NA
## 1371 NA NA
## 1372 NA NA
## 1373 NA NA
## 1374 NA NA
## 1375 17.529 121.938
## 1376 17.529 121.938
## 1377 17.529 121.938
## 1378 17.529 121.938
## 1379 17.529 121.938
## 1380 17.529 121.938
## 1381 20.144 83.477
## 1382 20.144 83.477
## 1383 20.144 83.477
## 1384 20.144 83.477
## 1385 20.144 83.477
## 1386 20.144 83.477
## 1387 NA NA
## 1388 NA NA
## 1389 NA NA
## 1390 NA NA
## 1391 NA NA
## 1392 NA NA
## 1393 NA NA
## 1394 NA NA
## 1395 NA NA
## 1396 NA NA
## 1397 NA NA
## 1398 NA NA
## 1399 93.375 105.862
## 1400 93.375 105.862
## 1401 93.375 105.862
## 1402 93.375 105.862
## 1403 93.375 105.862
## 1404 93.375 105.862
## 1405 NA NA
## 1406 NA NA
## 1407 NA NA
## 1408 NA NA
## 1409 NA NA
## 1410 NA NA
## 1411 NA NA
## 1412 NA NA
## 1413 NA NA
## 1414 NA NA
## 1415 NA NA
## 1416 NA NA
## 1417 NA NA
## 1418 NA NA
## 1419 NA NA
## 1420 NA NA
## 1421 NA NA
## 1422 NA NA
## 1423 NA NA
## 1424 NA NA
## 1425 NA NA
## 1426 NA NA
## 1427 NA NA
## 1428 NA NA
## 1429 NA NA
## 1430 NA NA
## 1431 NA NA
## 1432 NA NA
## 1433 NA NA
## 1434 NA NA
## 1435 NA NA
## 1436 NA NA
## 1437 NA NA
## 1438 NA NA
## 1439 NA NA
## 1440 NA NA
## 1441 NA NA
## 1442 NA NA
## 1443 NA NA
## 1444 NA NA
## 1445 NA NA
## 1446 NA NA
## 1447 NA NA
## 1448 NA NA
## 1449 NA NA
## 1450 NA NA
## 1451 NA NA
## 1452 NA NA
## 1453 NA NA
## 1454 NA NA
## 1455 NA NA
## 1456 NA NA
## 1457 NA NA
## 1458 NA NA
## 1459 3.161 22.003
## 1460 3.161 22.003
## 1461 3.161 22.003
## 1462 3.161 22.003
## 1463 3.161 22.003
## 1464 3.161 22.003
## 1465 NA NA
## 1466 NA NA
## 1467 NA NA
## 1468 NA NA
## 1469 NA NA
## 1470 NA NA
## 1471 NA NA
## 1472 NA NA
## 1473 NA NA
## 1474 NA NA
## 1475 NA NA
## 1476 NA NA
## 1477 NA NA
## 1478 NA NA
## 1479 NA NA
## 1480 NA NA
## 1481 NA NA
## 1482 NA NA
## 1483 NA NA
## 1484 NA NA
## 1485 NA NA
## 1486 NA NA
## 1487 NA NA
## 1488 NA NA
## 1489 NA NA
## 1490 NA NA
## 1491 NA NA
## 1492 NA NA
## 1493 NA NA
## 1494 NA NA
## 1495 NA NA
## 1496 NA NA
## 1497 NA NA
## 1498 NA NA
## 1499 NA NA
## 1500 NA NA
## 1501 NA NA
## 1502 NA NA
## 1503 NA NA
## 1504 NA NA
## 1505 NA NA
## 1506 NA NA
## 1507 NA NA
## 1508 NA NA
## 1509 NA NA
## 1510 NA NA
## 1511 NA NA
## 1512 NA NA
## 1513 NA NA
## 1514 NA NA
## 1515 NA NA
## 1516 NA NA
## 1517 NA NA
## 1518 NA NA
## 1519 NA NA
## 1520 NA NA
## 1521 NA NA
## 1522 NA NA
## 1523 NA NA
## 1524 NA NA
## 1525 1.487 40.833
## 1526 1.487 40.833
## 1527 1.487 40.833
## 1528 1.487 40.833
## 1529 1.487 40.833
## 1530 1.487 40.833
## 1531 7.438 12.063
## 1532 7.438 12.063
## 1533 7.438 12.063
## 1534 7.438 12.063
## 1535 7.438 12.063
## 1536 7.438 12.063
## 1537 NA NA
## 1538 NA NA
## 1539 NA NA
## 1540 NA NA
## 1541 NA NA
## 1542 NA NA
## 1543 8.536 39.085
## 1544 8.536 39.085
## 1545 8.536 39.085
## 1546 8.536 39.085
## 1547 8.536 39.085
## 1548 8.536 39.085
## 1549 NA NA
## 1550 NA NA
## 1551 NA NA
## 1552 NA NA
## 1553 NA NA
## 1554 NA NA
## 1555 12.098 19.962
## 1556 12.098 19.962
## 1557 12.098 19.962
## 1558 12.098 19.962
## 1559 12.098 19.962
## 1560 12.098 19.962
## 1561 NA NA
## 1562 NA NA
## 1563 NA NA
## 1564 NA NA
## 1565 NA NA
## 1566 NA NA
## 1567 NA NA
## 1568 NA NA
## 1569 NA NA
## 1570 NA NA
## 1571 NA NA
## 1572 NA NA
## 1573 NA NA
## 1574 NA NA
## 1575 NA NA
## 1576 NA NA
## 1577 NA NA
## 1578 NA NA
## 1579 NA NA
## 1580 NA NA
## 1581 NA NA
## 1582 NA NA
## 1583 NA NA
## 1584 NA NA
## 1585 NA NA
## 1586 NA NA
## 1587 NA NA
## 1588 NA NA
## 1589 NA NA
## 1590 NA NA
## 1591 NA NA
## 1592 NA NA
## 1593 NA NA
## 1594 NA NA
## 1595 NA NA
## 1596 NA NA
## 1597 NA NA
## 1598 NA NA
## 1599 NA NA
## 1600 NA NA
## 1601 NA NA
## 1602 NA NA
## 1603 NA NA
## 1604 NA NA
## 1605 NA NA
## 1606 NA NA
## 1607 NA NA
## 1608 NA NA
## 1609 NA NA
## 1610 NA NA
## 1611 NA NA
## 1612 NA NA
## 1613 NA NA
## 1614 NA NA
## 1615 7.749 38.297
## 1616 7.749 38.297
## 1617 7.749 38.297
## 1618 7.749 38.297
## 1619 7.749 38.297
## 1620 7.749 38.297
## 1621 7.144 18.707
## 1622 7.144 18.707
## 1623 7.144 18.707
## 1624 7.144 18.707
## 1625 7.144 18.707
## 1626 7.144 18.707
## 1627 NA NA
## 1628 NA NA
## 1629 NA NA
## 1630 NA NA
## 1631 NA NA
## 1632 NA NA
## 1633 NA NA
## 1634 NA NA
## 1635 NA NA
## 1636 NA NA
## 1637 NA NA
## 1638 NA NA
## 1639 25.678 44.866
## 1640 25.678 44.866
## 1641 25.678 44.866
## 1642 25.678 44.866
## 1643 25.678 44.866
## 1644 25.678 44.866
## 1645 NA NA
## 1646 NA NA
## 1647 NA NA
## 1648 NA NA
## 1649 NA NA
## 1650 NA NA
## 1651 NA NA
## 1652 NA NA
## 1653 NA NA
## 1654 NA NA
## 1655 NA NA
## 1656 NA NA
## 1657 NA NA
## 1658 NA NA
## 1659 NA NA
## 1660 NA NA
## 1661 NA NA
## 1662 NA NA
## 1663 11.999 28.785
## 1664 11.999 28.785
## 1665 11.999 28.785
## 1666 11.999 28.785
## 1667 11.999 28.785
## 1668 11.999 28.785
## 1669 NA NA
## 1670 NA NA
## 1671 NA NA
## 1672 NA NA
## 1673 NA NA
## 1674 NA NA
## 1675 NA NA
## 1676 NA NA
## 1677 NA NA
## 1678 NA NA
## 1679 NA NA
## 1680 NA NA
## 1681 NA NA
## 1682 NA NA
## 1683 NA NA
## 1684 NA NA
## 1685 NA NA
## 1686 NA NA
## 1687 22.351 30.843
## 1688 22.351 30.843
## 1689 22.351 30.843
## 1690 22.351 30.843
## 1691 22.351 30.843
## 1692 22.351 30.843
## 1693 NA NA
## 1694 NA NA
## 1695 NA NA
## 1696 NA NA
## 1697 NA NA
## 1698 NA NA
## 1699 NA NA
## 1700 NA NA
## 1701 NA NA
## 1702 NA NA
## 1703 NA NA
## 1704 NA NA
## 1705 NA NA
## 1706 NA NA
## 1707 NA NA
## 1708 NA NA
## 1709 NA NA
## 1710 NA NA
## 1711 14.701 38.724
## 1712 14.701 38.724
## 1713 14.701 38.724
## 1714 14.701 38.724
## 1715 14.701 38.724
## 1716 14.701 38.724
## 1717 NA NA
## 1718 NA NA
## 1719 NA NA
## 1720 NA NA
## 1721 NA NA
## 1722 NA NA
## 1723 NA NA
## 1724 NA NA
## 1725 NA NA
## 1726 NA NA
## 1727 NA NA
## 1728 NA NA
## 1729 NA NA
## 1730 NA NA
## 1731 NA NA
## 1732 NA NA
## 1733 NA NA
## 1734 NA NA
## 1735 NA NA
## 1736 NA NA
## 1737 NA NA
## 1738 NA NA
## 1739 NA NA
## 1740 NA NA
## 1741 NA NA
## 1742 NA NA
## 1743 NA NA
## 1744 NA NA
## 1745 NA NA
## 1746 NA NA
## 1747 NA NA
## 1748 NA NA
## 1749 NA NA
## 1750 NA NA
## 1751 NA NA
## 1752 NA NA
## 1753 NA NA
## 1754 NA NA
## 1755 NA NA
## 1756 NA NA
## 1757 NA NA
## 1758 NA NA
## 1759 NA NA
## 1760 NA NA
## 1761 NA NA
## 1762 NA NA
## 1763 NA NA
## 1764 NA NA
## 1765 NA NA
## 1766 NA NA
## 1767 NA NA
## 1768 NA NA
## 1769 NA NA
## 1770 NA NA
## 1771 30.869 52.860
## 1772 30.869 52.860
## 1773 30.869 52.860
## 1774 30.869 52.860
## 1775 30.869 52.860
## 1776 30.869 52.860
## 1777 NA NA
## 1778 NA NA
## 1779 NA NA
## 1780 NA NA
## 1781 NA NA
## 1782 NA NA
## 1783 NA NA
## 1784 NA NA
## 1785 NA NA
## 1786 NA NA
## 1787 NA NA
## 1788 NA NA
## 1789 NA NA
## 1790 NA NA
## 1791 NA NA
## 1792 NA NA
## 1793 NA NA
## 1794 NA NA
## 1795 NA NA
## 1796 NA NA
## 1797 NA NA
## 1798 NA NA
## 1799 NA NA
## 1800 NA NA
## 1801 NA NA
## 1802 NA NA
## 1803 NA NA
## 1804 NA NA
## 1805 NA NA
## 1806 NA NA
## 1807 12.841 22.320
## 1808 12.841 22.320
## 1809 12.841 22.320
## 1810 12.841 22.320
## 1811 12.841 22.320
## 1812 12.841 22.320
## 1813 NA NA
## 1814 NA NA
## 1815 NA NA
## 1816 NA NA
## 1817 NA NA
## 1818 NA NA
## 1819 NA NA
## 1820 NA NA
## 1821 NA NA
## 1822 NA NA
## 1823 NA NA
## 1824 NA NA
## 1825 NA NA
## 1826 NA NA
## 1827 NA NA
## 1828 NA NA
## 1829 NA NA
## 1830 NA NA
## 1831 NA NA
## 1832 NA NA
## 1833 NA NA
## 1834 NA NA
## 1835 NA NA
## 1836 NA NA
## 1837 13.508 24.672
## 1838 13.508 24.672
## 1839 13.508 24.672
## 1840 13.508 24.672
## 1841 13.508 24.672
## 1842 13.508 24.672
## 1843 NA NA
## 1844 NA NA
## 1845 NA NA
## 1846 NA NA
## 1847 NA NA
## 1848 NA NA
## 1849 24.911 33.030
## 1850 24.911 33.030
## 1851 24.911 33.030
## 1852 24.911 33.030
## 1853 24.911 33.030
## 1854 24.911 33.030
## 1855 NA NA
## 1856 NA NA
## 1857 NA NA
## 1858 NA NA
## 1859 NA NA
## 1860 NA NA
## 1861 NA NA
## 1862 NA NA
## 1863 NA NA
## 1864 NA NA
## 1865 NA NA
## 1866 NA NA
## 1867 21.802 56.033
## 1868 21.802 56.033
## 1869 21.802 56.033
## 1870 21.802 56.033
## 1871 21.802 56.033
## 1872 21.802 56.033
## 1873 NA NA
## 1874 NA NA
## 1875 NA NA
## 1876 NA NA
## 1877 NA NA
## 1878 NA NA
## 1879 NA NA
## 1880 NA NA
## 1881 NA NA
## 1882 NA NA
## 1883 NA NA
## 1884 NA NA
## 1885 NA NA
## 1886 NA NA
## 1887 NA NA
## 1888 NA NA
## 1889 NA NA
## 1890 NA NA
## 1891 NA NA
## 1892 NA NA
## 1893 NA NA
## 1894 NA NA
## 1895 NA NA
## 1896 NA NA
## 1897 NA NA
## 1898 NA NA
## 1899 NA NA
## 1900 NA NA
## 1901 NA NA
## 1902 NA NA
## 1903 NA NA
## 1904 NA NA
## 1905 NA NA
## 1906 NA NA
## 1907 NA NA
## 1908 NA NA
## 1909 NA NA
## 1910 NA NA
## 1911 NA NA
## 1912 NA NA
## 1913 NA NA
## 1914 NA NA
## 1915 NA NA
## 1916 NA NA
## 1917 NA NA
## 1918 NA NA
## 1919 NA NA
## 1920 NA NA
## 1921 NA NA
## 1922 NA NA
## 1923 NA NA
## 1924 NA NA
## 1925 NA NA
## 1926 NA NA
## 1927 NA NA
## 1928 NA NA
## 1929 NA NA
## 1930 NA NA
## 1931 NA NA
## 1932 NA NA
## 1933 NA NA
## 1934 NA NA
## 1935 NA NA
## 1936 NA NA
## 1937 NA NA
## 1938 NA NA
## 1939 73.517 98.046
## 1940 73.517 98.046
## 1941 73.517 98.046
## 1942 73.517 98.046
## 1943 73.517 98.046
## 1944 73.517 98.046
## 1945 18.466 109.624
## 1946 18.466 109.624
## 1947 18.466 109.624
## 1948 18.466 109.624
## 1949 18.466 109.624
## 1950 18.466 109.624
## 1951 NA NA
## 1952 NA NA
## 1953 NA NA
## 1954 NA NA
## 1955 NA NA
## 1956 NA NA
## 1957 57.381 66.277
## 1958 57.381 66.277
## 1959 57.381 66.277
## 1960 57.381 66.277
## 1961 57.381 66.277
## 1962 57.381 66.277
## 1963 NA NA
## 1964 NA NA
## 1965 NA NA
## 1966 NA NA
## 1967 NA NA
## 1968 NA NA
## 1969 NA NA
## 1970 NA NA
## 1971 NA NA
## 1972 NA NA
## 1973 NA NA
## 1974 NA NA
## 1975 NA NA
## 1976 NA NA
## 1977 NA NA
## 1978 NA NA
## 1979 NA NA
## 1980 NA NA
## 1981 NA NA
## 1982 NA NA
## 1983 NA NA
## 1984 NA NA
## 1985 NA NA
## 1986 NA NA
## 1987 31.484 61.516
## 1988 31.484 61.516
## 1989 31.484 61.516
## 1990 31.484 61.516
## 1991 31.484 61.516
## 1992 31.484 61.516
## 1993 NA NA
## 1994 NA NA
## 1995 NA NA
## 1996 NA NA
## 1997 NA NA
## 1998 NA NA
## 1999 NA NA
## 2000 NA NA
## 2001 NA NA
## 2002 NA NA
## 2003 NA NA
## 2004 NA NA
## 2005 50.175 61.924
## 2006 50.175 61.924
## 2007 50.175 61.924
## 2008 50.175 61.924
## 2009 50.175 61.924
## 2010 50.175 61.924
## 2011 NA NA
## 2012 NA NA
## 2013 NA NA
## 2014 NA NA
## 2015 NA NA
## 2016 NA NA
## 2017 NA NA
## 2018 NA NA
## 2019 NA NA
## 2020 NA NA
## 2021 NA NA
## 2022 NA NA
## 2023 NA NA
## 2024 NA NA
## 2025 NA NA
## 2026 NA NA
## 2027 NA NA
## 2028 NA NA
## 2029 NA NA
## 2030 NA NA
## 2031 NA NA
## 2032 NA NA
## 2033 NA NA
## 2034 NA NA
## 2035 NA NA
## 2036 NA NA
## 2037 NA NA
## 2038 NA NA
## 2039 NA NA
## 2040 NA NA
## 2041 NA NA
## 2042 NA NA
## 2043 NA NA
## 2044 NA NA
## 2045 NA NA
## 2046 NA NA
## 2047 NA NA
## 2048 NA NA
## 2049 NA NA
## 2050 NA NA
## 2051 NA NA
## 2052 NA NA
## 2053 NA NA
## 2054 NA NA
## 2055 NA NA
## 2056 NA NA
## 2057 NA NA
## 2058 NA NA
## 2059 NA NA
## 2060 NA NA
## 2061 NA NA
## 2062 NA NA
## 2063 NA NA
## 2064 NA NA
## 2065 NA NA
## 2066 NA NA
## 2067 NA NA
## 2068 NA NA
## 2069 NA NA
## 2070 NA NA
## 2071 2.509 58.482
## 2072 2.509 58.482
## 2073 2.509 58.482
## 2074 2.509 58.482
## 2075 2.509 58.482
## 2076 2.509 58.482
## 2077 NA NA
## 2078 NA NA
## 2079 NA NA
## 2080 NA NA
## 2081 NA NA
## 2082 NA NA
## 2083 NA NA
## 2084 NA NA
## 2085 NA NA
## 2086 NA NA
## 2087 NA NA
## 2088 NA NA
## 2089 NA NA
## 2090 NA NA
## 2091 NA NA
## 2092 NA NA
## 2093 NA NA
## 2094 NA NA
## 2095 NA NA
## 2096 NA NA
## 2097 NA NA
## 2098 NA NA
## 2099 NA NA
## 2100 NA NA
## 2101 NA NA
## 2102 NA NA
## 2103 NA NA
## 2104 NA NA
## 2105 NA NA
## 2106 NA NA
## 2107 9.915 23.302
## 2108 9.915 23.302
## 2109 9.915 23.302
## 2110 9.915 23.302
## 2111 9.915 23.302
## 2112 9.915 23.302
## 2113 27.967 43.434
## 2114 27.967 43.434
## 2115 27.967 43.434
## 2116 27.967 43.434
## 2117 27.967 43.434
## 2118 27.967 43.434
## 2119 NA NA
## 2120 NA NA
## 2121 NA NA
## 2122 NA NA
## 2123 NA NA
## 2124 NA NA
## 2125 NA NA
## 2126 NA NA
## 2127 NA NA
## 2128 NA NA
## 2129 NA NA
## 2130 NA NA
## 2131 NA NA
## 2132 NA NA
## 2133 NA NA
## 2134 NA NA
## 2135 NA NA
## 2136 NA NA
## 2137 15.014 29.370
## 2138 15.014 29.370
## 2139 15.014 29.370
## 2140 15.014 29.370
## 2141 15.014 29.370
## 2142 15.014 29.370
## 2143 12.857 138.529
## 2144 12.857 138.529
## 2145 12.857 138.529
## 2146 12.857 138.529
## 2147 12.857 138.529
## 2148 12.857 138.529
## 2149 NA NA
## 2150 NA NA
## 2151 NA NA
## 2152 NA NA
## 2153 NA NA
## 2154 NA NA
## 2155 11.201 50.165
## 2156 11.201 50.165
## 2157 11.201 50.165
## 2158 11.201 50.165
## 2159 11.201 50.165
## 2160 11.201 50.165
## 2161 1.675 7.686
## 2162 1.675 7.686
## 2163 1.675 7.686
## 2164 1.675 7.686
## 2165 1.675 7.686
## 2166 1.675 7.686
## 2167 NA NA
## 2168 NA NA
## 2169 NA NA
## 2170 NA NA
## 2171 NA NA
## 2172 NA NA
## 2173 13.370 52.158
## 2174 13.370 52.158
## 2175 13.370 52.158
## 2176 13.370 52.158
## 2177 13.370 52.158
## 2178 13.370 52.158
## 2179 10.224 23.312
## 2180 10.224 23.312
## 2181 10.224 23.312
## 2182 10.224 23.312
## 2183 10.224 23.312
## 2184 10.224 23.312
## 2185 NA NA
## 2186 NA NA
## 2187 NA NA
## 2188 NA NA
## 2189 NA NA
## 2190 NA NA
## 2191 NA NA
## 2192 NA NA
## 2193 NA NA
## 2194 NA NA
## 2195 NA NA
## 2196 NA NA
## 2197 NA NA
## 2198 NA NA
## 2199 NA NA
## 2200 NA NA
## 2201 NA NA
## 2202 NA NA
## 2203 NA NA
## 2204 NA NA
## 2205 NA NA
## 2206 NA NA
## 2207 NA NA
## 2208 NA NA
## 2209 23.176 33.464
## 2210 23.176 33.464
## 2211 23.176 33.464
## 2212 23.176 33.464
## 2213 23.176 33.464
## 2214 23.176 33.464
## 2215 10.275 61.747
## 2216 10.275 61.747
## 2217 10.275 61.747
## 2218 10.275 61.747
## 2219 10.275 61.747
## 2220 10.275 61.747
## 2221 23.172 31.122
## 2222 23.172 31.122
## 2223 23.172 31.122
## 2224 23.172 31.122
## 2225 23.172 31.122
## 2226 23.172 31.122
## 2227 7.820 16.971
## 2228 7.820 16.971
## 2229 7.820 16.971
## 2230 7.820 16.971
## 2231 7.820 16.971
## 2232 7.820 16.971
## 2233 NA NA
## 2234 NA NA
## 2235 NA NA
## 2236 NA NA
## 2237 NA NA
## 2238 NA NA
## 2239 36.606 48.688
## 2240 36.606 48.688
## 2241 36.606 48.688
## 2242 36.606 48.688
## 2243 36.606 48.688
## 2244 36.606 48.688
## 2245 NA NA
## 2246 NA NA
## 2247 NA NA
## 2248 NA NA
## 2249 NA NA
## 2250 NA NA
## 2251 NA NA
## 2252 NA NA
## 2253 NA NA
## 2254 NA NA
## 2255 NA NA
## 2256 NA NA
## 2257 NA NA
## 2258 NA NA
## 2259 NA NA
## 2260 NA NA
## 2261 NA NA
## 2262 NA NA
## 2263 NA NA
## 2264 NA NA
## 2265 NA NA
## 2266 NA NA
## 2267 NA NA
## 2268 NA NA
## 2269 43.170 66.606
## 2270 43.170 66.606
## 2271 43.170 66.606
## 2272 43.170 66.606
## 2273 43.170 66.606
## 2274 43.170 66.606
## 2275 NA NA
## 2276 NA NA
## 2277 NA NA
## 2278 NA NA
## 2279 NA NA
## 2280 NA NA
## 2281 9.134 62.302
## 2282 9.134 62.302
## 2283 9.134 62.302
## 2284 9.134 62.302
## 2285 9.134 62.302
## 2286 9.134 62.302
## 2287 14.248 17.647
## 2288 14.248 17.647
## 2289 14.248 17.647
## 2290 14.248 17.647
## 2291 14.248 17.647
## 2292 14.248 17.647
## 2293 NA NA
## 2294 NA NA
## 2295 NA NA
## 2296 NA NA
## 2297 NA NA
## 2298 NA NA
## 2299 NA NA
## 2300 NA NA
## 2301 NA NA
## 2302 NA NA
## 2303 NA NA
## 2304 NA NA
## 2305 NA NA
## 2306 NA NA
## 2307 NA NA
## 2308 NA NA
## 2309 NA NA
## 2310 NA NA
## 2311 2.293 69.098
## 2312 2.293 69.098
## 2313 2.293 69.098
## 2314 2.293 69.098
## 2315 2.293 69.098
## 2316 2.293 69.098
## 2317 22.404 39.202
## 2318 22.404 39.202
## 2319 22.404 39.202
## 2320 22.404 39.202
## 2321 22.404 39.202
## 2322 22.404 39.202
## 2323 5.438 24.493
## 2324 5.438 24.493
## 2325 5.438 24.493
## 2326 5.438 24.493
## 2327 5.438 24.493
## 2328 5.438 24.493
## 2329 NA NA
## 2330 NA NA
## 2331 NA NA
## 2332 NA NA
## 2333 NA NA
## 2334 NA NA
## 2335 9.482 20.202
## 2336 9.482 20.202
## 2337 9.482 20.202
## 2338 9.482 20.202
## 2339 9.482 20.202
## 2340 9.482 20.202
## 2341 NA NA
## 2342 NA NA
## 2343 NA NA
## 2344 NA NA
## 2345 NA NA
## 2346 NA NA
## 2347 NA NA
## 2348 NA NA
## 2349 NA NA
## 2350 NA NA
## 2351 NA NA
## 2352 NA NA
## 2353 NA NA
## 2354 NA NA
## 2355 NA NA
## 2356 NA NA
## 2357 NA NA
## 2358 NA NA
## 2359 NA NA
## 2360 NA NA
## 2361 NA NA
## 2362 NA NA
## 2363 NA NA
## 2364 NA NA
## 2365 NA NA
## 2366 NA NA
## 2367 NA NA
## 2368 NA NA
## 2369 NA NA
## 2370 NA NA
## 2371 NA NA
## 2372 NA NA
## 2373 NA NA
## 2374 NA NA
## 2375 NA NA
## 2376 NA NA
## 2377 30.641 57.894
## 2378 30.641 57.894
## 2379 30.641 57.894
## 2380 30.641 57.894
## 2381 30.641 57.894
## 2382 30.641 57.894
## 2383 NA NA
## 2384 NA NA
## 2385 NA NA
## 2386 NA NA
## 2387 NA NA
## 2388 NA NA
## 2389 NA NA
## 2390 NA NA
## 2391 NA NA
## 2392 NA NA
## 2393 NA NA
## 2394 NA NA
## 2395 NA NA
## 2396 NA NA
## 2397 NA NA
## 2398 NA NA
## 2399 NA NA
## 2400 NA NA
## 2401 NA NA
## 2402 NA NA
## 2403 NA NA
## 2404 NA NA
## 2405 NA NA
## 2406 NA NA
## 2407 NA NA
## 2408 NA NA
## 2409 NA NA
## 2410 NA NA
## 2411 NA NA
## 2412 NA NA
## 2413 NA NA
## 2414 NA NA
## 2415 NA NA
## 2416 NA NA
## 2417 NA NA
## 2418 NA NA
## 2419 NA NA
## 2420 NA NA
## 2421 NA NA
## 2422 NA NA
## 2423 NA NA
## 2424 NA NA
## 2425 NA NA
## 2426 NA NA
## 2427 NA NA
## 2428 NA NA
## 2429 NA NA
## 2430 NA NA
## 2431 NA NA
## 2432 NA NA
## 2433 NA NA
## 2434 NA NA
## 2435 NA NA
## 2436 NA NA
## 2437 33.195 89.770
## 2438 33.195 89.770
## 2439 33.195 89.770
## 2440 33.195 89.770
## 2441 33.195 89.770
## 2442 33.195 89.770
## 2443 NA NA
## 2444 NA NA
## 2445 NA NA
## 2446 NA NA
## 2447 NA NA
## 2448 NA NA
## 2449 NA NA
## 2450 NA NA
## 2451 NA NA
## 2452 NA NA
## 2453 NA NA
## 2454 NA NA
## 2455 NA NA
## 2456 NA NA
## 2457 NA NA
## 2458 NA NA
## 2459 NA NA
## 2460 NA NA
## 2461 NA NA
## 2462 NA NA
## 2463 NA NA
## 2464 NA NA
## 2465 NA NA
## 2466 NA NA
## 2467 NA NA
## 2468 NA NA
## 2469 NA NA
## 2470 NA NA
## 2471 NA NA
## 2472 NA NA
## 2473 11.575 22.999
## 2474 11.575 22.999
## 2475 11.575 22.999
## 2476 11.575 22.999
## 2477 11.575 22.999
## 2478 11.575 22.999
## 2479 27.089 60.100
## 2480 27.089 60.100
## 2481 27.089 60.100
## 2482 27.089 60.100
## 2483 27.089 60.100
## 2484 27.089 60.100
## 2485 NA NA
## 2486 NA NA
## 2487 NA NA
## 2488 NA NA
## 2489 NA NA
## 2490 NA NA
## 2491 9.861 16.813
## 2492 9.861 16.813
## 2493 9.861 16.813
## 2494 9.861 16.813
## 2495 9.861 16.813
## 2496 9.861 16.813
## 2497 NA NA
## 2498 NA NA
## 2499 NA NA
## 2500 NA NA
## 2501 NA NA
## 2502 NA NA
## 2503 NA NA
## 2504 NA NA
## 2505 NA NA
## 2506 NA NA
## 2507 NA NA
## 2508 NA NA
## 2509 15.060 21.515
## 2510 15.060 21.515
## 2511 15.060 21.515
## 2512 15.060 21.515
## 2513 15.060 21.515
## 2514 15.060 21.515
## 2515 NA NA
## 2516 NA NA
## 2517 NA NA
## 2518 NA NA
## 2519 NA NA
## 2520 NA NA
## 2521 NA NA
## 2522 NA NA
## 2523 NA NA
## 2524 NA NA
## 2525 NA NA
## 2526 NA NA
## 2527 NA NA
## 2528 NA NA
## 2529 NA NA
## 2530 NA NA
## 2531 NA NA
## 2532 NA NA
## 2533 14.612 29.590
## 2534 14.612 29.590
## 2535 14.612 29.590
## 2536 14.612 29.590
## 2537 14.612 29.590
## 2538 14.612 29.590
## 2539 24.512 44.662
## 2540 24.512 44.662
## 2541 24.512 44.662
## 2542 24.512 44.662
## 2543 24.512 44.662
## 2544 24.512 44.662
## 2545 NA NA
## 2546 NA NA
## 2547 NA NA
## 2548 NA NA
## 2549 NA NA
## 2550 NA NA
## 2551 NA NA
## 2552 NA NA
## 2553 NA NA
## 2554 NA NA
## 2555 NA NA
## 2556 NA NA
## 2557 NA NA
## 2558 NA NA
## 2559 NA NA
## 2560 NA NA
## 2561 NA NA
## 2562 NA NA
## 2563 NA NA
## 2564 NA NA
## 2565 NA NA
## 2566 NA NA
## 2567 NA NA
## 2568 NA NA
## 2569 NA NA
## 2570 NA NA
## 2571 NA NA
## 2572 NA NA
## 2573 NA NA
## 2574 NA NA
## 2575 NA NA
## 2576 NA NA
## 2577 NA NA
## 2578 NA NA
## 2579 NA NA
## 2580 NA NA
## 2581 NA NA
## 2582 NA NA
## 2583 NA NA
## 2584 NA NA
## 2585 NA NA
## 2586 NA NA
## 2587 13.857 32.002
## 2588 13.857 32.002
## 2589 13.857 32.002
## 2590 13.857 32.002
## 2591 13.857 32.002
## 2592 13.857 32.002
## 2593 NA NA
## 2594 NA NA
## 2595 NA NA
## 2596 NA NA
## 2597 NA NA
## 2598 NA NA
## 2599 NA NA
## 2600 NA NA
## 2601 NA NA
## 2602 NA NA
## 2603 NA NA
## 2604 NA NA
## 2605 11.445 38.073
## 2606 11.445 38.073
## 2607 11.445 38.073
## 2608 11.445 38.073
## 2609 11.445 38.073
## 2610 11.445 38.073
## 2611 10.428 77.341
## 2612 10.428 77.341
## 2613 10.428 77.341
## 2614 10.428 77.341
## 2615 10.428 77.341
## 2616 10.428 77.341
## 2617 NA NA
## 2618 NA NA
## 2619 NA NA
## 2620 NA NA
## 2621 NA NA
## 2622 NA NA
## 2623 NA NA
## 2624 NA NA
## 2625 NA NA
## 2626 NA NA
## 2627 NA NA
## 2628 NA NA
## 2629 NA NA
## 2630 NA NA
## 2631 NA NA
## 2632 NA NA
## 2633 NA NA
## 2634 NA NA
## 2635 NA NA
## 2636 NA NA
## 2637 NA NA
## 2638 NA NA
## 2639 NA NA
## 2640 NA NA
## 2641 NA NA
## 2642 NA NA
## 2643 NA NA
## 2644 NA NA
## 2645 NA NA
## 2646 NA NA
## 2647 NA NA
## 2648 NA NA
## 2649 NA NA
## 2650 NA NA
## 2651 NA NA
## 2652 NA NA
## 2653 NA NA
## 2654 NA NA
## 2655 NA NA
## 2656 NA NA
## 2657 NA NA
## 2658 NA NA
## 2659 NA NA
## 2660 NA NA
## 2661 NA NA
## 2662 NA NA
## 2663 NA NA
## 2664 NA NA
## 2665 NA NA
## 2666 NA NA
## 2667 NA NA
## 2668 NA NA
## 2669 NA NA
## 2670 NA NA
## 2671 NA NA
## 2672 NA NA
## 2673 NA NA
## 2674 NA NA
## 2675 NA NA
## 2676 NA NA
## 2677 3.210 74.110
## 2678 3.210 74.110
## 2679 3.210 74.110
## 2680 3.210 74.110
## 2681 3.210 74.110
## 2682 3.210 74.110
## 2683 18.138 36.533
## 2684 18.138 36.533
## 2685 18.138 36.533
## 2686 18.138 36.533
## 2687 18.138 36.533
## 2688 18.138 36.533
## 2689 23.815 38.996
## 2690 23.815 38.996
## 2691 23.815 38.996
## 2692 23.815 38.996
## 2693 23.815 38.996
## 2694 23.815 38.996
## 2695 NA NA
## 2696 NA NA
## 2697 NA NA
## 2698 NA NA
## 2699 NA NA
## 2700 NA NA
## 2701 NA NA
## 2702 NA NA
## 2703 NA NA
## 2704 NA NA
## 2705 NA NA
## 2706 NA NA
## 2707 NA NA
## 2708 NA NA
## 2709 NA NA
## 2710 NA NA
## 2711 NA NA
## 2712 NA NA
## 2713 NA NA
## 2714 NA NA
## 2715 NA NA
## 2716 NA NA
## 2717 NA NA
## 2718 NA NA
## 2719 NA NA
## 2720 NA NA
## 2721 NA NA
## 2722 NA NA
## 2723 NA NA
## 2724 NA NA
## 2725 NA NA
## 2726 NA NA
## 2727 NA NA
## 2728 NA NA
## 2729 NA NA
## 2730 NA NA
## 2731 16.786 30.526
## 2732 16.786 30.526
## 2733 16.786 30.526
## 2734 16.786 30.526
## 2735 16.786 30.526
## 2736 16.786 30.526
## 2737 NA NA
## 2738 NA NA
## 2739 NA NA
## 2740 NA NA
## 2741 NA NA
## 2742 NA NA
## 2743 NA NA
## 2744 NA NA
## 2745 NA NA
## 2746 NA NA
## 2747 NA NA
## 2748 NA NA
## 2749 NA NA
## 2750 NA NA
## 2751 NA NA
## 2752 NA NA
## 2753 NA NA
## 2754 NA NA
## 2755 11.584 25.576
## 2756 11.584 25.576
## 2757 11.584 25.576
## 2758 11.584 25.576
## 2759 11.584 25.576
## 2760 11.584 25.576
## 2761 NA NA
## 2762 NA NA
## 2763 NA NA
## 2764 NA NA
## 2765 NA NA
## 2766 NA NA
## 2767 NA NA
## 2768 NA NA
## 2769 NA NA
## 2770 NA NA
## 2771 NA NA
## 2772 NA NA
## 2773 NA NA
## 2774 NA NA
## 2775 NA NA
## 2776 NA NA
## 2777 NA NA
## 2778 NA NA
## 2779 2.880 20.025
## 2780 2.880 20.025
## 2781 2.880 20.025
## 2782 2.880 20.025
## 2783 2.880 20.025
## 2784 2.880 20.025
## 2785 NA NA
## 2786 NA NA
## 2787 NA NA
## 2788 NA NA
## 2789 NA NA
## 2790 NA NA
## 2791 NA NA
## 2792 NA NA
## 2793 NA NA
## 2794 NA NA
## 2795 NA NA
## 2796 NA NA
## 2797 NA NA
## 2798 NA NA
## 2799 NA NA
## 2800 NA NA
## 2801 NA NA
## 2802 NA NA
## 2803 NA NA
## 2804 NA NA
## 2805 NA NA
## 2806 NA NA
## 2807 NA NA
## 2808 NA NA
## 2809 16.347 36.491
## 2810 16.347 36.491
## 2811 16.347 36.491
## 2812 16.347 36.491
## 2813 16.347 36.491
## 2814 16.347 36.491
## 2815 NA NA
## 2816 NA NA
## 2817 NA NA
## 2818 NA NA
## 2819 NA NA
## 2820 NA NA
## 2821 NA NA
## 2822 NA NA
## 2823 NA NA
## 2824 NA NA
## 2825 NA NA
## 2826 NA NA
## 2827 NA NA
## 2828 NA NA
## 2829 NA NA
## 2830 NA NA
## 2831 NA NA
## 2832 NA NA
## 2833 25.811 30.835
## 2834 25.811 30.835
## 2835 25.811 30.835
## 2836 25.811 30.835
## 2837 25.811 30.835
## 2838 25.811 30.835
## 2839 NA NA
## 2840 NA NA
## 2841 NA NA
## 2842 NA NA
## 2843 NA NA
## 2844 NA NA
## 2845 33.434 151.968
## 2846 33.434 151.968
## 2847 33.434 151.968
## 2848 33.434 151.968
## 2849 33.434 151.968
## 2850 33.434 151.968
## 2851 NA NA
## 2852 NA NA
## 2853 NA NA
## 2854 NA NA
## 2855 NA NA
## 2856 NA NA
## 2857 NA NA
## 2858 NA NA
## 2859 NA NA
## 2860 NA NA
## 2861 NA NA
## 2862 NA NA
## 2863 11.822 21.100
## 2864 11.822 21.100
## 2865 11.822 21.100
## 2866 11.822 21.100
## 2867 11.822 21.100
## 2868 11.822 21.100
## 2869 NA NA
## 2870 NA NA
## 2871 NA NA
## 2872 NA NA
## 2873 NA NA
## 2874 NA NA
## 2875 NA NA
## 2876 NA NA
## 2877 NA NA
## 2878 NA NA
## 2879 NA NA
## 2880 NA NA
## 2881 NA NA
## 2882 NA NA
## 2883 NA NA
## 2884 NA NA
## 2885 NA NA
## 2886 NA NA
## 2887 NA NA
## 2888 NA NA
## 2889 NA NA
## 2890 NA NA
## 2891 NA NA
## 2892 NA NA
## 2893 NA NA
## 2894 NA NA
## 2895 NA NA
## 2896 NA NA
## 2897 NA NA
## 2898 NA NA
## 2899 9.074 36.164
## 2900 9.074 36.164
## 2901 9.074 36.164
## 2902 9.074 36.164
## 2903 9.074 36.164
## 2904 9.074 36.164
## 2905 NA NA
## 2906 NA NA
## 2907 NA NA
## 2908 NA NA
## 2909 NA NA
## 2910 NA NA
## 2911 NA NA
## 2912 NA NA
## 2913 NA NA
## 2914 NA NA
## 2915 NA NA
## 2916 NA NA
## 2917 5.861 24.094
## 2918 5.861 24.094
## 2919 5.861 24.094
## 2920 5.861 24.094
## 2921 5.861 24.094
## 2922 5.861 24.094
## 2923 NA NA
## 2924 NA NA
## 2925 NA NA
## 2926 NA NA
## 2927 NA NA
## 2928 NA NA
## 2929 NA NA
## 2930 NA NA
## 2931 NA NA
## 2932 NA NA
## 2933 NA NA
## 2934 NA NA
## 2935 NA NA
## 2936 NA NA
## 2937 NA NA
## 2938 NA NA
## 2939 NA NA
## 2940 NA NA
## 2941 22.400 48.625
## 2942 22.400 48.625
## 2943 22.400 48.625
## 2944 22.400 48.625
## 2945 22.400 48.625
## 2946 22.400 48.625
## 2947 NA NA
## 2948 NA NA
## 2949 NA NA
## 2950 NA NA
## 2951 NA NA
## 2952 NA NA
## 2953 NA NA
## 2954 NA NA
## 2955 NA NA
## 2956 NA NA
## 2957 NA NA
## 2958 NA NA
## 2959 110.110 149.576
## 2960 110.110 149.576
## 2961 110.110 149.576
## 2962 110.110 149.576
## 2963 110.110 149.576
## 2964 110.110 149.576
## 2965 NA NA
## 2966 NA NA
## 2967 NA NA
## 2968 NA NA
## 2969 NA NA
## 2970 NA NA
## 2971 4.001 46.138
## 2972 4.001 46.138
## 2973 4.001 46.138
## 2974 4.001 46.138
## 2975 4.001 46.138
## 2976 4.001 46.138
## 2977 NA NA
## 2978 NA NA
## 2979 NA NA
## 2980 NA NA
## 2981 NA NA
## 2982 NA NA
## 2983 NA NA
## 2984 NA NA
## 2985 NA NA
## 2986 NA NA
## 2987 NA NA
## 2988 NA NA
## 2989 NA NA
## 2990 NA NA
## 2991 NA NA
## 2992 NA NA
## 2993 NA NA
## 2994 NA NA
## 2995 18.201 30.701
## 2996 18.201 30.701
## 2997 18.201 30.701
## 2998 18.201 30.701
## 2999 18.201 30.701
## 3000 18.201 30.701
## 3001 NA NA
## 3002 NA NA
## 3003 NA NA
## 3004 NA NA
## 3005 NA NA
## 3006 NA NA
## 3007 66.962 76.052
## 3008 66.962 76.052
## 3009 66.962 76.052
## 3010 66.962 76.052
## 3011 66.962 76.052
## 3012 66.962 76.052
## 3013 NA NA
## 3014 NA NA
## 3015 NA NA
## 3016 NA NA
## 3017 NA NA
## 3018 NA NA
## 3019 NA NA
## 3020 NA NA
## 3021 NA NA
## 3022 NA NA
## 3023 NA NA
## 3024 NA NA
## 3025 NA NA
## 3026 NA NA
## 3027 NA NA
## 3028 NA NA
## 3029 NA NA
## 3030 NA NA
## 3031 25.954 48.106
## 3032 25.954 48.106
## 3033 25.954 48.106
## 3034 25.954 48.106
## 3035 25.954 48.106
## 3036 25.954 48.106
## 3037 NA NA
## 3038 NA NA
## 3039 NA NA
## 3040 NA NA
## 3041 NA NA
## 3042 NA NA
## 3043 28.040 49.872
## 3044 28.040 49.872
## 3045 28.040 49.872
## 3046 28.040 49.872
## 3047 28.040 49.872
## 3048 28.040 49.872
## 3049 NA NA
## 3050 NA NA
## 3051 NA NA
## 3052 NA NA
## 3053 NA NA
## 3054 NA NA
## 3055 NA NA
## 3056 NA NA
## 3057 NA NA
## 3058 NA NA
## 3059 NA NA
## 3060 NA NA
## 3061 NA NA
## 3062 NA NA
## 3063 NA NA
## 3064 NA NA
## 3065 NA NA
## 3066 NA NA
## 3067 11.315 24.346
## 3068 11.315 24.346
## 3069 11.315 24.346
## 3070 11.315 24.346
## 3071 11.315 24.346
## 3072 11.315 24.346
## 3073 NA NA
## 3074 NA NA
## 3075 NA NA
## 3076 NA NA
## 3077 NA NA
## 3078 NA NA
## 3079 23.125 38.193
## 3080 23.125 38.193
## 3081 23.125 38.193
## 3082 23.125 38.193
## 3083 23.125 38.193
## 3084 23.125 38.193
## 3085 NA NA
## 3086 NA NA
## 3087 NA NA
## 3088 NA NA
## 3089 NA NA
## 3090 NA NA
## 3091 NA NA
## 3092 NA NA
## 3093 NA NA
## 3094 NA NA
## 3095 NA NA
## 3096 NA NA
## 3097 NA NA
## 3098 NA NA
## 3099 NA NA
## 3100 NA NA
## 3101 NA NA
## 3102 NA NA
## 3103 NA NA
## 3104 NA NA
## 3105 NA NA
## 3106 NA NA
## 3107 NA NA
## 3108 NA NA
## 3109 15.508 31.331
## 3110 15.508 31.331
## 3111 15.508 31.331
## 3112 15.508 31.331
## 3113 15.508 31.331
## 3114 15.508 31.331
## 3115 NA NA
## 3116 NA NA
## 3117 NA NA
## 3118 NA NA
## 3119 NA NA
## 3120 NA NA
## 3121 29.084 54.726
## 3122 29.084 54.726
## 3123 29.084 54.726
## 3124 29.084 54.726
## 3125 29.084 54.726
## 3126 29.084 54.726
## 3127 NA NA
## 3128 NA NA
## 3129 NA NA
## 3130 NA NA
## 3131 NA NA
## 3132 NA NA
## 3133 NA NA
## 3134 NA NA
## 3135 NA NA
## 3136 NA NA
## 3137 NA NA
## 3138 NA NA
## 3139 16.036 21.397
## 3140 16.036 21.397
## 3141 16.036 21.397
## 3142 16.036 21.397
## 3143 16.036 21.397
## 3144 16.036 21.397
## 3145 NA NA
## 3146 NA NA
## 3147 NA NA
## 3148 NA NA
## 3149 NA NA
## 3150 NA NA
## 3151 NA NA
## 3152 NA NA
## 3153 NA NA
## 3154 NA NA
## 3155 NA NA
## 3156 NA NA
## 3157 NA NA
## 3158 NA NA
## 3159 NA NA
## 3160 NA NA
## 3161 NA NA
## 3162 NA NA
## 3163 NA NA
## 3164 NA NA
## 3165 NA NA
## 3166 NA NA
## 3167 NA NA
## 3168 NA NA
## 3169 NA NA
## 3170 NA NA
## 3171 NA NA
## 3172 NA NA
## 3173 NA NA
## 3174 NA NA
## 3175 NA NA
## 3176 NA NA
## 3177 NA NA
## 3178 NA NA
## 3179 NA NA
## 3180 NA NA
## 3181 NA NA
## 3182 NA NA
## 3183 NA NA
## 3184 NA NA
## 3185 NA NA
## 3186 NA NA
## 3187 13.624 20.411
## 3188 13.624 20.411
## 3189 13.624 20.411
## 3190 13.624 20.411
## 3191 13.624 20.411
## 3192 13.624 20.411
## 3193 NA NA
## 3194 NA NA
## 3195 NA NA
## 3196 NA NA
## 3197 NA NA
## 3198 NA NA
## 3199 NA NA
## 3200 NA NA
## 3201 NA NA
## 3202 NA NA
## 3203 NA NA
## 3204 NA NA
## 3205 NA NA
## 3206 NA NA
## 3207 NA NA
## 3208 NA NA
## 3209 NA NA
## 3210 NA NA
## 3211 NA NA
## 3212 NA NA
## 3213 NA NA
## 3214 NA NA
## 3215 NA NA
## 3216 NA NA
## 3217 NA NA
## 3218 NA NA
## 3219 NA NA
## 3220 NA NA
## 3221 NA NA
## 3222 NA NA
## 3223 NA NA
## 3224 NA NA
## 3225 NA NA
## 3226 NA NA
## 3227 NA NA
## 3228 NA NA
## 3229 NA NA
## 3230 NA NA
## 3231 NA NA
## 3232 NA NA
## 3233 NA NA
## 3234 NA NA
## 3235 NA NA
## 3236 NA NA
## 3237 NA NA
## 3238 NA NA
## 3239 NA NA
## 3240 NA NA
## 3241 NA NA
## 3242 NA NA
## 3243 NA NA
## 3244 NA NA
## 3245 NA NA
## 3246 NA NA
## 3247 NA NA
## 3248 NA NA
## 3249 NA NA
## 3250 NA NA
## 3251 NA NA
## 3252 NA NA
## 3253 18.167 23.530
## 3254 18.167 23.530
## 3255 18.167 23.530
## 3256 18.167 23.530
## 3257 18.167 23.530
## 3258 18.167 23.530
## 3259 19.725 38.796
## 3260 19.725 38.796
## 3261 19.725 38.796
## 3262 19.725 38.796
## 3263 19.725 38.796
## 3264 19.725 38.796
## 3265 NA NA
## 3266 NA NA
## 3267 NA NA
## 3268 NA NA
## 3269 NA NA
## 3270 NA NA
## 3271 NA NA
## 3272 NA NA
## 3273 NA NA
## 3274 NA NA
## 3275 NA NA
## 3276 NA NA
## 3277 NA NA
## 3278 NA NA
## 3279 NA NA
## 3280 NA NA
## 3281 NA NA
## 3282 NA NA
## 3283 64.038 71.099
## 3284 64.038 71.099
## 3285 64.038 71.099
## 3286 64.038 71.099
## 3287 64.038 71.099
## 3288 64.038 71.099
## 3289 NA NA
## 3290 NA NA
## 3291 NA NA
## 3292 NA NA
## 3293 NA NA
## 3294 NA NA
## 3295 32.453 41.680
## 3296 32.453 41.680
## 3297 32.453 41.680
## 3298 32.453 41.680
## 3299 32.453 41.680
## 3300 32.453 41.680
## 3301 NA NA
## 3302 NA NA
## 3303 NA NA
## 3304 NA NA
## 3305 NA NA
## 3306 NA NA
## 3307 15.733 21.601
## 3308 15.733 21.601
## 3309 15.733 21.601
## 3310 15.733 21.601
## 3311 15.733 21.601
## 3312 15.733 21.601
## 3313 NA NA
## 3314 NA NA
## 3315 NA NA
## 3316 NA NA
## 3317 NA NA
## 3318 NA NA
## 3319 NA NA
## 3320 NA NA
## 3321 NA NA
## 3322 NA NA
## 3323 NA NA
## 3324 NA NA
## 3325 NA NA
## 3326 NA NA
## 3327 NA NA
## 3328 NA NA
## 3329 NA NA
## 3330 NA NA
## 3331 NA NA
## 3332 NA NA
## 3333 NA NA
## 3334 NA NA
## 3335 NA NA
## 3336 NA NA
## 3337 NA NA
## 3338 NA NA
## 3339 NA NA
## 3340 NA NA
## 3341 NA NA
## 3342 NA NA
## 3343 NA NA
## 3344 NA NA
## 3345 NA NA
## 3346 NA NA
## 3347 NA NA
## 3348 NA NA
## 3349 NA NA
## 3350 NA NA
## 3351 NA NA
## 3352 NA NA
## 3353 NA NA
## 3354 NA NA
## 3355 14.663 46.240
## 3356 14.663 46.240
## 3357 14.663 46.240
## 3358 14.663 46.240
## 3359 14.663 46.240
## 3360 14.663 46.240
## 3361 NA NA
## 3362 NA NA
## 3363 NA NA
## 3364 NA NA
## 3365 NA NA
## 3366 NA NA
## 3367 NA NA
## 3368 NA NA
## 3369 NA NA
## 3370 NA NA
## 3371 NA NA
## 3372 NA NA
## 3373 3.670 23.210
## 3374 3.670 23.210
## 3375 3.670 23.210
## 3376 3.670 23.210
## 3377 3.670 23.210
## 3378 3.670 23.210
## 3379 NA NA
## 3380 NA NA
## 3381 NA NA
## 3382 NA NA
## 3383 NA NA
## 3384 NA NA
## 3385 NA NA
## 3386 NA NA
## 3387 NA NA
## 3388 NA NA
## 3389 NA NA
## 3390 NA NA
## 3391 NA NA
## 3392 NA NA
## 3393 NA NA
## 3394 NA NA
## 3395 NA NA
## 3396 NA NA
## 3397 NA NA
## 3398 NA NA
## 3399 NA NA
## 3400 NA NA
## 3401 NA NA
## 3402 NA NA
## 3403 59.040 64.057
## 3404 59.040 64.057
## 3405 59.040 64.057
## 3406 59.040 64.057
## 3407 59.040 64.057
## 3408 59.040 64.057
## 3409 NA NA
## 3410 NA NA
## 3411 NA NA
## 3412 NA NA
## 3413 NA NA
## 3414 NA NA
## 3415 NA NA
## 3416 NA NA
## 3417 NA NA
## 3418 NA NA
## 3419 NA NA
## 3420 NA NA
## 3421 NA NA
## 3422 NA NA
## 3423 NA NA
## 3424 NA NA
## 3425 NA NA
## 3426 NA NA
## 3427 NA NA
## 3428 NA NA
## 3429 NA NA
## 3430 NA NA
## 3431 NA NA
## 3432 NA NA
## 3433 NA NA
## 3434 NA NA
## 3435 NA NA
## 3436 NA NA
## 3437 NA NA
## 3438 NA NA
## 3439 NA NA
## 3440 NA NA
## 3441 NA NA
## 3442 NA NA
## 3443 NA NA
## 3444 NA NA
## 3445 NA NA
## 3446 NA NA
## 3447 NA NA
## 3448 NA NA
## 3449 NA NA
## 3450 NA NA
## 3451 NA NA
## 3452 NA NA
## 3453 NA NA
## 3454 NA NA
## 3455 NA NA
## 3456 NA NA
## 3457 NA NA
## 3458 NA NA
## 3459 NA NA
## 3460 NA NA
## 3461 NA NA
## 3462 NA NA
## 3463 NA NA
## 3464 NA NA
## 3465 NA NA
## 3466 NA NA
## 3467 NA NA
## 3468 NA NA
## 3469 12.632 23.672
## 3470 12.632 23.672
## 3471 12.632 23.672
## 3472 12.632 23.672
## 3473 12.632 23.672
## 3474 12.632 23.672
## 3475 NA NA
## 3476 NA NA
## 3477 NA NA
## 3478 NA NA
## 3479 NA NA
## 3480 NA NA
## 3481 NA NA
## 3482 NA NA
## 3483 NA NA
## 3484 NA NA
## 3485 NA NA
## 3486 NA NA
## 3487 NA NA
## 3488 NA NA
## 3489 NA NA
## 3490 NA NA
## 3491 NA NA
## 3492 NA NA
## 3493 NA NA
## 3494 NA NA
## 3495 NA NA
## 3496 NA NA
## 3497 NA NA
## 3498 NA NA
## 3499 19.077 33.076
## 3500 19.077 33.076
## 3501 19.077 33.076
## 3502 19.077 33.076
## 3503 19.077 33.076
## 3504 19.077 33.076
## 3505 8.285 17.570
## 3506 8.285 17.570
## 3507 8.285 17.570
## 3508 8.285 17.570
## 3509 8.285 17.570
## 3510 8.285 17.570
## 3511 NA NA
## 3512 NA NA
## 3513 NA NA
## 3514 NA NA
## 3515 NA NA
## 3516 NA NA
## 3517 NA NA
## 3518 NA NA
## 3519 NA NA
## 3520 NA NA
## 3521 NA NA
## 3522 NA NA
## 3523 NA NA
## 3524 NA NA
## 3525 NA NA
## 3526 NA NA
## 3527 NA NA
## 3528 NA NA
## 3529 NA NA
## 3530 NA NA
## 3531 NA NA
## 3532 NA NA
## 3533 NA NA
## 3534 NA NA
## 3535 NA NA
## 3536 NA NA
## 3537 NA NA
## 3538 NA NA
## 3539 NA NA
## 3540 NA NA
## 3541 4.826 25.539
## 3542 4.826 25.539
## 3543 4.826 25.539
## 3544 4.826 25.539
## 3545 4.826 25.539
## 3546 4.826 25.539
## 3547 16.996 52.502
## 3548 16.996 52.502
## 3549 16.996 52.502
## 3550 16.996 52.502
## 3551 16.996 52.502
## 3552 16.996 52.502
## 3553 8.113 2446.091
## 3554 8.113 2446.091
## 3555 8.113 2446.091
## 3556 8.113 2446.091
## 3557 8.113 2446.091
## 3558 8.113 2446.091
## 3559 NA NA
## 3560 NA NA
## 3561 NA NA
## 3562 NA NA
## 3563 NA NA
## 3564 NA NA
## 3565 53.189 88.532
## 3566 53.189 88.532
## 3567 53.189 88.532
## 3568 53.189 88.532
## 3569 53.189 88.532
## 3570 53.189 88.532
## 3571 NA NA
## 3572 NA NA
## 3573 NA NA
## 3574 NA NA
## 3575 NA NA
## 3576 NA NA
## 3577 NA NA
## 3578 NA NA
## 3579 NA NA
## 3580 NA NA
## 3581 NA NA
## 3582 NA NA
## 3583 NA NA
## 3584 NA NA
## 3585 NA NA
## 3586 NA NA
## 3587 NA NA
## 3588 NA NA
## 3589 NA NA
## 3590 NA NA
## 3591 NA NA
## 3592 NA NA
## 3593 NA NA
## 3594 NA NA
## 3595 NA NA
## 3596 NA NA
## 3597 NA NA
## 3598 NA NA
## 3599 NA NA
## 3600 NA NA
## 3601 NA NA
## 3602 NA NA
## 3603 NA NA
## 3604 NA NA
## 3605 NA NA
## 3606 NA NA
## 3607 NA NA
## 3608 NA NA
## 3609 NA NA
## 3610 NA NA
## 3611 NA NA
## 3612 NA NA
## 3613 2.244 29.345
## 3614 2.244 29.345
## 3615 2.244 29.345
## 3616 2.244 29.345
## 3617 2.244 29.345
## 3618 2.244 29.345
## 3619 NA NA
## 3620 NA NA
## 3621 NA NA
## 3622 NA NA
## 3623 NA NA
## 3624 NA NA
## 3625 NA NA
## 3626 NA NA
## 3627 NA NA
## 3628 NA NA
## 3629 NA NA
## 3630 NA NA
## 3631 NA NA
## 3632 NA NA
## 3633 NA NA
## 3634 NA NA
## 3635 NA NA
## 3636 NA NA
## 3637 20.317 49.787
## 3638 20.317 49.787
## 3639 20.317 49.787
## 3640 20.317 49.787
## 3641 20.317 49.787
## 3642 20.317 49.787
## 3643 NA NA
## 3644 NA NA
## 3645 NA NA
## 3646 NA NA
## 3647 NA NA
## 3648 NA NA
## 3649 NA NA
## 3650 NA NA
## 3651 NA NA
## 3652 NA NA
## 3653 NA NA
## 3654 NA NA
## 3655 NA NA
## 3656 NA NA
## 3657 NA NA
## 3658 NA NA
## 3659 NA NA
## 3660 NA NA
## 3661 10.200 23.584
## 3662 10.200 23.584
## 3663 10.200 23.584
## 3664 10.200 23.584
## 3665 10.200 23.584
## 3666 10.200 23.584
## 3667 NA NA
## 3668 NA NA
## 3669 NA NA
## 3670 NA NA
## 3671 NA NA
## 3672 NA NA
## 3673 58.451 64.414
## 3674 58.451 64.414
## 3675 58.451 64.414
## 3676 58.451 64.414
## 3677 58.451 64.414
## 3678 58.451 64.414
## 3679 NA NA
## 3680 NA NA
## 3681 NA NA
## 3682 NA NA
## 3683 NA NA
## 3684 NA NA
## 3685 NA NA
## 3686 NA NA
## 3687 NA NA
## 3688 NA NA
## 3689 NA NA
## 3690 NA NA
## 3691 NA NA
## 3692 NA NA
## 3693 NA NA
## 3694 NA NA
## 3695 NA NA
## 3696 NA NA
## 3697 NA NA
## 3698 NA NA
## 3699 NA NA
## 3700 NA NA
## 3701 NA NA
## 3702 NA NA
## 3703 NA NA
## 3704 NA NA
## 3705 NA NA
## 3706 NA NA
## 3707 NA NA
## 3708 NA NA
## 3709 NA NA
## 3710 NA NA
## 3711 NA NA
## 3712 NA NA
## 3713 NA NA
## 3714 NA NA
## 3715 122.001 128.651
## 3716 122.001 128.651
## 3717 122.001 128.651
## 3718 122.001 128.651
## 3719 122.001 128.651
## 3720 122.001 128.651
## 3721 NA NA
## 3722 NA NA
## 3723 NA NA
## 3724 NA NA
## 3725 NA NA
## 3726 NA NA
## 3727 NA NA
## 3728 NA NA
## 3729 NA NA
## 3730 NA NA
## 3731 NA NA
## 3732 NA NA
## 3733 NA NA
## 3734 NA NA
## 3735 NA NA
## 3736 NA NA
## 3737 NA NA
## 3738 NA NA
## 3739 NA NA
## 3740 NA NA
## 3741 NA NA
## 3742 NA NA
## 3743 NA NA
## 3744 NA NA
## 3745 NA NA
## 3746 NA NA
## 3747 NA NA
## 3748 NA NA
## 3749 NA NA
## 3750 NA NA
## 3751 NA NA
## 3752 NA NA
## 3753 NA NA
## 3754 NA NA
## 3755 NA NA
## 3756 NA NA
## 3757 NA NA
## 3758 NA NA
## 3759 NA NA
## 3760 NA NA
## 3761 NA NA
## 3762 NA NA
## 3763 12.247 35.827
## 3764 12.247 35.827
## 3765 12.247 35.827
## 3766 12.247 35.827
## 3767 12.247 35.827
## 3768 12.247 35.827
## 3769 NA NA
## 3770 NA NA
## 3771 NA NA
## 3772 NA NA
## 3773 NA NA
## 3774 NA NA
## 3775 20.976 33.936
## 3776 20.976 33.936
## 3777 20.976 33.936
## 3778 20.976 33.936
## 3779 20.976 33.936
## 3780 20.976 33.936
## 3781 53.548 85.037
## 3782 53.548 85.037
## 3783 53.548 85.037
## 3784 53.548 85.037
## 3785 53.548 85.037
## 3786 53.548 85.037
## 3787 NA NA
## 3788 NA NA
## 3789 NA NA
## 3790 NA NA
## 3791 NA NA
## 3792 NA NA
## 3793 NA NA
## 3794 NA NA
## 3795 NA NA
## 3796 NA NA
## 3797 NA NA
## 3798 NA NA
## 3799 4.067 33.987
## 3800 4.067 33.987
## 3801 4.067 33.987
## 3802 4.067 33.987
## 3803 4.067 33.987
## 3804 4.067 33.987
## 3805 49.717 74.370
## 3806 49.717 74.370
## 3807 49.717 74.370
## 3808 49.717 74.370
## 3809 49.717 74.370
## 3810 49.717 74.370
## 3811 NA NA
## 3812 NA NA
## 3813 NA NA
## 3814 NA NA
## 3815 NA NA
## 3816 NA NA
## 3817 NA NA
## 3818 NA NA
## 3819 NA NA
## 3820 NA NA
## 3821 NA NA
## 3822 NA NA
## 3823 40.703 59.855
## 3824 40.703 59.855
## 3825 40.703 59.855
## 3826 40.703 59.855
## 3827 40.703 59.855
## 3828 40.703 59.855
## 3829 NA NA
## 3830 NA NA
## 3831 NA NA
## 3832 NA NA
## 3833 NA NA
## 3834 NA NA
## 3835 NA NA
## 3836 NA NA
## 3837 NA NA
## 3838 NA NA
## 3839 NA NA
## 3840 NA NA
## 3841 NA NA
## 3842 NA NA
## 3843 NA NA
## 3844 NA NA
## 3845 NA NA
## 3846 NA NA
## 3847 1.972 18.603
## 3848 1.972 18.603
## 3849 1.972 18.603
## 3850 1.972 18.603
## 3851 1.972 18.603
## 3852 1.972 18.603
## 3853 NA NA
## 3854 NA NA
## 3855 NA NA
## 3856 NA NA
## 3857 NA NA
## 3858 NA NA
## 3859 NA NA
## 3860 NA NA
## 3861 NA NA
## 3862 NA NA
## 3863 NA NA
## 3864 NA NA
## 3865 NA NA
## 3866 NA NA
## 3867 NA NA
## 3868 NA NA
## 3869 NA NA
## 3870 NA NA
## 3871 NA NA
## 3872 NA NA
## 3873 NA NA
## 3874 NA NA
## 3875 NA NA
## 3876 NA NA
## 3877 NA NA
## 3878 NA NA
## 3879 NA NA
## 3880 NA NA
## 3881 NA NA
## 3882 NA NA
## 3883 NA NA
## 3884 NA NA
## 3885 NA NA
## 3886 NA NA
## 3887 NA NA
## 3888 NA NA
## 3889 NA NA
## 3890 NA NA
## 3891 NA NA
## 3892 NA NA
## 3893 NA NA
## 3894 NA NA
## 3895 NA NA
## 3896 NA NA
## 3897 NA NA
## 3898 NA NA
## 3899 NA NA
## 3900 NA NA
## 3901 NA NA
## 3902 NA NA
## 3903 NA NA
## 3904 NA NA
## 3905 NA NA
## 3906 NA NA
## 3907 NA NA
## 3908 NA NA
## 3909 NA NA
## 3910 NA NA
## 3911 NA NA
## 3912 NA NA
## 3913 NA NA
## 3914 NA NA
## 3915 NA NA
## 3916 NA NA
## 3917 NA NA
## 3918 NA NA
## 3919 NA NA
## 3920 NA NA
## 3921 NA NA
## 3922 NA NA
## 3923 NA NA
## 3924 NA NA
## 3925 NA NA
## 3926 NA NA
## 3927 NA NA
## 3928 NA NA
## 3929 NA NA
## 3930 NA NA
## 3931 NA NA
## 3932 NA NA
## 3933 NA NA
## 3934 NA NA
## 3935 NA NA
## 3936 NA NA
## 3937 NA NA
## 3938 NA NA
## 3939 NA NA
## 3940 NA NA
## 3941 NA NA
## 3942 NA NA
## 3943 NA NA
## 3944 NA NA
## 3945 NA NA
## 3946 NA NA
## 3947 NA NA
## 3948 NA NA
## 3949 NA NA
## 3950 NA NA
## 3951 NA NA
## 3952 NA NA
## 3953 NA NA
## 3954 NA NA
## 3955 41.886 67.026
## 3956 41.886 67.026
## 3957 41.886 67.026
## 3958 41.886 67.026
## 3959 41.886 67.026
## 3960 41.886 67.026
## 3961 NA NA
## 3962 NA NA
## 3963 NA NA
## 3964 NA NA
## 3965 NA NA
## 3966 NA NA
## 3967 NA NA
## 3968 NA NA
## 3969 NA NA
## 3970 NA NA
## 3971 NA NA
## 3972 NA NA
## 3973 NA NA
## 3974 NA NA
## 3975 NA NA
## 3976 NA NA
## 3977 NA NA
## 3978 NA NA
## 3979 24.924 37.607
## 3980 24.924 37.607
## 3981 24.924 37.607
## 3982 24.924 37.607
## 3983 24.924 37.607
## 3984 24.924 37.607
## 3985 2.362 32.450
## 3986 2.362 32.450
## 3987 2.362 32.450
## 3988 2.362 32.450
## 3989 2.362 32.450
## 3990 2.362 32.450
## 3991 NA NA
## 3992 NA NA
## 3993 NA NA
## 3994 NA NA
## 3995 NA NA
## 3996 NA NA
## 3997 1.935 14.887
## 3998 1.935 14.887
## 3999 1.935 14.887
## 4000 1.935 14.887
## 4001 1.935 14.887
## 4002 1.935 14.887
## 4003 NA NA
## 4004 NA NA
## 4005 NA NA
## 4006 NA NA
## 4007 NA NA
## 4008 NA NA
## 4009 NA NA
## 4010 NA NA
## 4011 NA NA
## 4012 NA NA
## 4013 NA NA
## 4014 NA NA
## 4015 NA NA
## 4016 NA NA
## 4017 NA NA
## 4018 NA NA
## 4019 NA NA
## 4020 NA NA
## 4021 NA NA
## 4022 NA NA
## 4023 NA NA
## 4024 NA NA
## 4025 NA NA
## 4026 NA NA
## 4027 NA NA
## 4028 NA NA
## 4029 NA NA
## 4030 NA NA
## 4031 NA NA
## 4032 NA NA
## 4033 NA NA
## 4034 NA NA
## 4035 NA NA
## 4036 NA NA
## 4037 NA NA
## 4038 NA NA
## 4039 NA NA
## 4040 NA NA
## 4041 NA NA
## 4042 NA NA
## 4043 NA NA
## 4044 NA NA
## 4045 NA NA
## 4046 NA NA
## 4047 NA NA
## 4048 NA NA
## 4049 NA NA
## 4050 NA NA
## 4051 NA NA
## 4052 NA NA
## 4053 NA NA
## 4054 NA NA
## 4055 NA NA
## 4056 NA NA
## 4057 8.318 28.302
## 4058 8.318 28.302
## 4059 8.318 28.302
## 4060 8.318 28.302
## 4061 8.318 28.302
## 4062 8.318 28.302
## 4063 NA NA
## 4064 NA NA
## 4065 NA NA
## 4066 NA NA
## 4067 NA NA
## 4068 NA NA
## 4069 NA NA
## 4070 NA NA
## 4071 NA NA
## 4072 NA NA
## 4073 NA NA
## 4074 NA NA
## 4075 NA NA
## 4076 NA NA
## 4077 NA NA
## 4078 NA NA
## 4079 NA NA
## 4080 NA NA
## 4081 NA NA
## 4082 NA NA
## 4083 NA NA
## 4084 NA NA
## 4085 NA NA
## 4086 NA NA
## 4087 NA NA
## 4088 NA NA
## 4089 NA NA
## 4090 NA NA
## 4091 NA NA
## 4092 NA NA
## 4093 NA NA
## 4094 NA NA
## 4095 NA NA
## 4096 NA NA
## 4097 NA NA
## 4098 NA NA
## 4099 NA NA
## 4100 NA NA
## 4101 NA NA
## 4102 NA NA
## 4103 NA NA
## 4104 NA NA
## 4105 NA NA
## 4106 NA NA
## 4107 NA NA
## 4108 NA NA
## 4109 NA NA
## 4110 NA NA
## 4111 35.444 54.267
## 4112 35.444 54.267
## 4113 35.444 54.267
## 4114 35.444 54.267
## 4115 35.444 54.267
## 4116 35.444 54.267
## 4117 15.807 34.083
## 4118 15.807 34.083
## 4119 15.807 34.083
## 4120 15.807 34.083
## 4121 15.807 34.083
## 4122 15.807 34.083
## 4123 NA NA
## 4124 NA NA
## 4125 NA NA
## 4126 NA NA
## 4127 NA NA
## 4128 NA NA
## 4129 NA NA
## 4130 NA NA
## 4131 NA NA
## 4132 NA NA
## 4133 NA NA
## 4134 NA NA
## 4135 13.863 31.708
## 4136 13.863 31.708
## 4137 13.863 31.708
## 4138 13.863 31.708
## 4139 13.863 31.708
## 4140 13.863 31.708
## 4141 NA NA
## 4142 NA NA
## 4143 NA NA
## 4144 NA NA
## 4145 NA NA
## 4146 NA NA
## 4147 NA NA
## 4148 NA NA
## 4149 NA NA
## 4150 NA NA
## 4151 NA NA
## 4152 NA NA
## 4153 NA NA
## 4154 NA NA
## 4155 NA NA
## 4156 NA NA
## 4157 NA NA
## 4158 NA NA
## 4159 1.511 33.167
## 4160 1.511 33.167
## 4161 1.511 33.167
## 4162 1.511 33.167
## 4163 1.511 33.167
## 4164 1.511 33.167
## 4165 NA NA
## 4166 NA NA
## 4167 NA NA
## 4168 NA NA
## 4169 NA NA
## 4170 NA NA
## 4171 20.414 36.670
## 4172 20.414 36.670
## 4173 20.414 36.670
## 4174 20.414 36.670
## 4175 20.414 36.670
## 4176 20.414 36.670
## 4177 NA NA
## 4178 NA NA
## 4179 NA NA
## 4180 NA NA
## 4181 NA NA
## 4182 NA NA
## 4183 64.474 79.776
## 4184 64.474 79.776
## 4185 64.474 79.776
## 4186 64.474 79.776
## 4187 64.474 79.776
## 4188 64.474 79.776
## 4189 NA NA
## 4190 NA NA
## 4191 NA NA
## 4192 NA NA
## 4193 NA NA
## 4194 NA NA
## 4195 NA NA
## 4196 NA NA
## 4197 NA NA
## 4198 NA NA
## 4199 NA NA
## 4200 NA NA
## 4201 6.372 40.394
## 4202 6.372 40.394
## 4203 6.372 40.394
## 4204 6.372 40.394
## 4205 6.372 40.394
## 4206 6.372 40.394
## 4207 NA NA
## 4208 NA NA
## 4209 NA NA
## 4210 NA NA
## 4211 NA NA
## 4212 NA NA
## 4213 NA NA
## 4214 NA NA
## 4215 NA NA
## 4216 NA NA
## 4217 NA NA
## 4218 NA NA
## 4219 NA NA
## 4220 NA NA
## 4221 NA NA
## 4222 NA NA
## 4223 NA NA
## 4224 NA NA
## 4225 NA NA
## 4226 NA NA
## 4227 NA NA
## 4228 NA NA
## 4229 NA NA
## 4230 NA NA
## 4231 NA NA
## 4232 NA NA
## 4233 NA NA
## 4234 NA NA
## 4235 NA NA
## 4236 NA NA
## 4237 NA NA
## 4238 NA NA
## 4239 NA NA
## 4240 NA NA
## 4241 NA NA
## 4242 NA NA
## 4243 5.933 33.841
## 4244 5.933 33.841
## 4245 5.933 33.841
## 4246 5.933 33.841
## 4247 5.933 33.841
## 4248 5.933 33.841
## 4249 NA NA
## 4250 NA NA
## 4251 NA NA
## 4252 NA NA
## 4253 NA NA
## 4254 NA NA
## 4255 25.132 37.158
## 4256 25.132 37.158
## 4257 25.132 37.158
## 4258 25.132 37.158
## 4259 25.132 37.158
## 4260 25.132 37.158
## 4261 NA NA
## 4262 NA NA
## 4263 NA NA
## 4264 NA NA
## 4265 NA NA
## 4266 NA NA
## 4267 NA NA
## 4268 NA NA
## 4269 NA NA
## 4270 NA NA
## 4271 NA NA
## 4272 NA NA
## 4273 17.029 31.860
## 4274 17.029 31.860
## 4275 17.029 31.860
## 4276 17.029 31.860
## 4277 17.029 31.860
## 4278 17.029 31.860
## 4279 NA NA
## 4280 NA NA
## 4281 NA NA
## 4282 NA NA
## 4283 NA NA
## 4284 NA NA
## 4285 NA NA
## 4286 NA NA
## 4287 NA NA
## 4288 NA NA
## 4289 NA NA
## 4290 NA NA
## 4291 7.873 18.265
## 4292 7.873 18.265
## 4293 7.873 18.265
## 4294 7.873 18.265
## 4295 7.873 18.265
## 4296 7.873 18.265
## 4297 NA NA
## 4298 NA NA
## 4299 NA NA
## 4300 NA NA
## 4301 NA NA
## 4302 NA NA
## 4303 NA NA
## 4304 NA NA
## 4305 NA NA
## 4306 NA NA
## 4307 NA NA
## 4308 NA NA
## 4309 NA NA
## 4310 NA NA
## 4311 NA NA
## 4312 NA NA
## 4313 NA NA
## 4314 NA NA
## 4315 NA NA
## 4316 NA NA
## 4317 NA NA
## 4318 NA NA
## 4319 NA NA
## 4320 NA NA
## 4321 29.456 43.113
## 4322 29.456 43.113
## 4323 29.456 43.113
## 4324 29.456 43.113
## 4325 29.456 43.113
## 4326 29.456 43.113
## 4327 NA NA
## 4328 NA NA
## 4329 NA NA
## 4330 NA NA
## 4331 NA NA
## 4332 NA NA
## 4333 NA NA
## 4334 NA NA
## 4335 NA NA
## 4336 NA NA
## 4337 NA NA
## 4338 NA NA
## 4339 13.775 74.938
## 4340 13.775 74.938
## 4341 13.775 74.938
## 4342 13.775 74.938
## 4343 13.775 74.938
## 4344 13.775 74.938
## 4345 NA NA
## 4346 NA NA
## 4347 NA NA
## 4348 NA NA
## 4349 NA NA
## 4350 NA NA
## 4351 NA NA
## 4352 NA NA
## 4353 NA NA
## 4354 NA NA
## 4355 NA NA
## 4356 NA NA
## 4357 NA NA
## 4358 NA NA
## 4359 NA NA
## 4360 NA NA
## 4361 NA NA
## 4362 NA NA
## 4363 NA NA
## 4364 NA NA
## 4365 NA NA
## 4366 NA NA
## 4367 NA NA
## 4368 NA NA
## 4369 NA NA
## 4370 NA NA
## 4371 NA NA
## 4372 NA NA
## 4373 NA NA
## 4374 NA NA
## 4375 41.609 55.530
## 4376 41.609 55.530
## 4377 41.609 55.530
## 4378 41.609 55.530
## 4379 41.609 55.530
## 4380 41.609 55.530
## 4381 NA NA
## 4382 NA NA
## 4383 NA NA
## 4384 NA NA
## 4385 NA NA
## 4386 NA NA
## 4387 NA NA
## 4388 NA NA
## 4389 NA NA
## 4390 NA NA
## 4391 NA NA
## 4392 NA NA
## 4393 NA NA
## 4394 NA NA
## 4395 NA NA
## 4396 NA NA
## 4397 NA NA
## 4398 NA NA
## 4399 NA NA
## 4400 NA NA
## 4401 NA NA
## 4402 NA NA
## 4403 NA NA
## 4404 NA NA
## 4405 24.908 38.875
## 4406 24.908 38.875
## 4407 24.908 38.875
## 4408 24.908 38.875
## 4409 24.908 38.875
## 4410 24.908 38.875
## 4411 13.533 28.432
## 4412 13.533 28.432
## 4413 13.533 28.432
## 4414 13.533 28.432
## 4415 13.533 28.432
## 4416 13.533 28.432
## 4417 17.803 26.186
## 4418 17.803 26.186
## 4419 17.803 26.186
## 4420 17.803 26.186
## 4421 17.803 26.186
## 4422 17.803 26.186
## 4423 NA NA
## 4424 NA NA
## 4425 NA NA
## 4426 NA NA
## 4427 NA NA
## 4428 NA NA
## 4429 10.987 43.041
## 4430 10.987 43.041
## 4431 10.987 43.041
## 4432 10.987 43.041
## 4433 10.987 43.041
## 4434 10.987 43.041
## 4435 13.181 41.740
## 4436 13.181 41.740
## 4437 13.181 41.740
## 4438 13.181 41.740
## 4439 13.181 41.740
## 4440 13.181 41.740
## 4441 39.655 79.415
## 4442 39.655 79.415
## 4443 39.655 79.415
## 4444 39.655 79.415
## 4445 39.655 79.415
## 4446 39.655 79.415
## 4447 NA NA
## 4448 NA NA
## 4449 NA NA
## 4450 NA NA
## 4451 NA NA
## 4452 NA NA
## 4453 NA NA
## 4454 NA NA
## 4455 NA NA
## 4456 NA NA
## 4457 NA NA
## 4458 NA NA
## 4459 NA NA
## 4460 NA NA
## 4461 NA NA
## 4462 NA NA
## 4463 NA NA
## 4464 NA NA
## 4465 NA NA
## 4466 NA NA
## 4467 NA NA
## 4468 NA NA
## 4469 NA NA
## 4470 NA NA
## 4471 NA NA
## 4472 NA NA
## 4473 NA NA
## 4474 NA NA
## 4475 NA NA
## 4476 NA NA
## 4477 NA NA
## 4478 NA NA
## 4479 NA NA
## 4480 NA NA
## 4481 NA NA
## 4482 NA NA
## 4483 NA NA
## 4484 NA NA
## 4485 NA NA
## 4486 NA NA
## 4487 NA NA
## 4488 NA NA
## 4489 NA NA
## 4490 NA NA
## 4491 NA NA
## 4492 NA NA
## 4493 NA NA
## 4494 NA NA
## 4495 NA NA
## 4496 NA NA
## 4497 NA NA
## 4498 NA NA
## 4499 NA NA
## 4500 NA NA
## 4501 NA NA
## 4502 NA NA
## 4503 NA NA
## 4504 NA NA
## 4505 NA NA
## 4506 NA NA
## 4507 NA NA
## 4508 NA NA
## 4509 NA NA
## 4510 NA NA
## 4511 NA NA
## 4512 NA NA
## 4513 NA NA
## 4514 NA NA
## 4515 NA NA
## 4516 NA NA
## 4517 NA NA
## 4518 NA NA
## 4519 0.977 54.205
## 4520 0.977 54.205
## 4521 0.977 54.205
## 4522 0.977 54.205
## 4523 0.977 54.205
## 4524 0.977 54.205
## 4525 NA NA
## 4526 NA NA
## 4527 NA NA
## 4528 NA NA
## 4529 NA NA
## 4530 NA NA
## 4531 14.806 34.440
## 4532 14.806 34.440
## 4533 14.806 34.440
## 4534 14.806 34.440
## 4535 14.806 34.440
## 4536 14.806 34.440
## 4537 NA NA
## 4538 NA NA
## 4539 NA NA
## 4540 NA NA
## 4541 NA NA
## 4542 NA NA
## 4543 NA NA
## 4544 NA NA
## 4545 NA NA
## 4546 NA NA
## 4547 NA NA
## 4548 NA NA
## 4549 NA NA
## 4550 NA NA
## 4551 NA NA
## 4552 NA NA
## 4553 NA NA
## 4554 NA NA
## 4555 NA NA
## 4556 NA NA
## 4557 NA NA
## 4558 NA NA
## 4559 NA NA
## 4560 NA NA
## 4561 2.375 67.260
## 4562 2.375 67.260
## 4563 2.375 67.260
## 4564 2.375 67.260
## 4565 2.375 67.260
## 4566 2.375 67.260
## 4567 NA NA
## 4568 NA NA
## 4569 NA NA
## 4570 NA NA
## 4571 NA NA
## 4572 NA NA
## 4573 NA NA
## 4574 NA NA
## 4575 NA NA
## 4576 NA NA
## 4577 NA NA
## 4578 NA NA
## 4579 NA NA
## 4580 NA NA
## 4581 NA NA
## 4582 NA NA
## 4583 NA NA
## 4584 NA NA
## 4585 NA NA
## 4586 NA NA
## 4587 NA NA
## 4588 NA NA
## 4589 NA NA
## 4590 NA NA
## 4591 8.767 69.896
## 4592 8.767 69.896
## 4593 8.767 69.896
## 4594 8.767 69.896
## 4595 8.767 69.896
## 4596 8.767 69.896
## 4597 18.614 60.703
## 4598 18.614 60.703
## 4599 18.614 60.703
## 4600 18.614 60.703
## 4601 18.614 60.703
## 4602 18.614 60.703
## 4603 NA NA
## 4604 NA NA
## 4605 NA NA
## 4606 NA NA
## 4607 NA NA
## 4608 NA NA
## 4609 NA NA
## 4610 NA NA
## 4611 NA NA
## 4612 NA NA
## 4613 NA NA
## 4614 NA NA
## 4615 NA NA
## 4616 NA NA
## 4617 NA NA
## 4618 NA NA
## 4619 NA NA
## 4620 NA NA
## 4621 NA NA
## 4622 NA NA
## 4623 NA NA
## 4624 NA NA
## 4625 NA NA
## 4626 NA NA
## 4627 NA NA
## 4628 NA NA
## 4629 NA NA
## 4630 NA NA
## 4631 NA NA
## 4632 NA NA
## 4633 NA NA
## 4634 NA NA
## 4635 NA NA
## 4636 NA NA
## 4637 NA NA
## 4638 NA NA
## 4639 NA NA
## 4640 NA NA
## 4641 NA NA
## 4642 NA NA
## 4643 NA NA
## 4644 NA NA
## 4645 NA NA
## 4646 NA NA
## 4647 NA NA
## 4648 NA NA
## 4649 NA NA
## 4650 NA NA
## 4651 NA NA
## 4652 NA NA
## 4653 NA NA
## 4654 NA NA
## 4655 NA NA
## 4656 NA NA
## 4657 NA NA
## 4658 NA NA
## 4659 NA NA
## 4660 NA NA
## 4661 NA NA
## 4662 NA NA
## 4663 NA NA
## 4664 NA NA
## 4665 NA NA
## 4666 NA NA
## 4667 NA NA
## 4668 NA NA
## 4669 22.186 40.522
## 4670 22.186 40.522
## 4671 22.186 40.522
## 4672 22.186 40.522
## 4673 22.186 40.522
## 4674 22.186 40.522
## 4675 8.307 42.019
## 4676 8.307 42.019
## 4677 8.307 42.019
## 4678 8.307 42.019
## 4679 8.307 42.019
## 4680 8.307 42.019
## 4681 NA NA
## 4682 NA NA
## 4683 NA NA
## 4684 NA NA
## 4685 NA NA
## 4686 NA NA
## 4687 NA NA
## 4688 NA NA
## 4689 NA NA
## 4690 NA NA
## 4691 NA NA
## 4692 NA NA
## 4693 NA NA
## 4694 NA NA
## 4695 NA NA
## 4696 NA NA
## 4697 NA NA
## 4698 NA NA
## 4699 NA NA
## 4700 NA NA
## 4701 NA NA
## 4702 NA NA
## 4703 NA NA
## 4704 NA NA
## 4705 NA NA
## 4706 NA NA
## 4707 NA NA
## 4708 NA NA
## 4709 NA NA
## 4710 NA NA
## 4711 NA NA
## 4712 NA NA
## 4713 NA NA
## 4714 NA NA
## 4715 NA NA
## 4716 NA NA
## 4717 NA NA
## 4718 NA NA
## 4719 NA NA
## 4720 NA NA
## 4721 NA NA
## 4722 NA NA
## 4723 NA NA
## 4724 NA NA
## 4725 NA NA
## 4726 NA NA
## 4727 NA NA
## 4728 NA NA
## 4729 210.202 249.743
## 4730 210.202 249.743
## 4731 210.202 249.743
## 4732 210.202 249.743
## 4733 210.202 249.743
## 4734 210.202 249.743
## 4735 NA NA
## 4736 NA NA
## 4737 NA NA
## 4738 NA NA
## 4739 NA NA
## 4740 NA NA
## 4741 6.667 22.303
## 4742 6.667 22.303
## 4743 6.667 22.303
## 4744 6.667 22.303
## 4745 6.667 22.303
## 4746 6.667 22.303
## 4747 NA NA
## 4748 NA NA
## 4749 NA NA
## 4750 NA NA
## 4751 NA NA
## 4752 NA NA
## 4753 NA NA
## 4754 NA NA
## 4755 NA NA
## 4756 NA NA
## 4757 NA NA
## 4758 NA NA
## 4759 NA NA
## 4760 NA NA
## 4761 NA NA
## 4762 NA NA
## 4763 NA NA
## 4764 NA NA
## 4765 NA NA
## 4766 NA NA
## 4767 NA NA
## 4768 NA NA
## 4769 NA NA
## 4770 NA NA
## 4771 5.100 40.730
## 4772 5.100 40.730
## 4773 5.100 40.730
## 4774 5.100 40.730
## 4775 5.100 40.730
## 4776 5.100 40.730
## 4777 NA NA
## 4778 NA NA
## 4779 NA NA
## 4780 NA NA
## 4781 NA NA
## 4782 NA NA
## 4783 48.400 107.794
## 4784 48.400 107.794
## 4785 48.400 107.794
## 4786 48.400 107.794
## 4787 48.400 107.794
## 4788 48.400 107.794
## 4789 NA NA
## 4790 NA NA
## 4791 NA NA
## 4792 NA NA
## 4793 NA NA
## 4794 NA NA
## 4795 25.367 58.507
## 4796 25.367 58.507
## 4797 25.367 58.507
## 4798 25.367 58.507
## 4799 25.367 58.507
## 4800 25.367 58.507
## 4801 26.101 39.178
## 4802 26.101 39.178
## 4803 26.101 39.178
## 4804 26.101 39.178
## 4805 26.101 39.178
## 4806 26.101 39.178
## 4807 NA NA
## 4808 NA NA
## 4809 NA NA
## 4810 NA NA
## 4811 NA NA
## 4812 NA NA
## 4813 NA NA
## 4814 NA NA
## 4815 NA NA
## 4816 NA NA
## 4817 NA NA
## 4818 NA NA
## 4819 1.205 88.376
## 4820 1.205 88.376
## 4821 1.205 88.376
## 4822 1.205 88.376
## 4823 1.205 88.376
## 4824 1.205 88.376
## 4825 NA NA
## 4826 NA NA
## 4827 NA NA
## 4828 NA NA
## 4829 NA NA
## 4830 NA NA
## 4831 46.726 70.836
## 4832 46.726 70.836
## 4833 46.726 70.836
## 4834 46.726 70.836
## 4835 46.726 70.836
## 4836 46.726 70.836
## 4837 NA NA
## 4838 NA NA
## 4839 NA NA
## 4840 NA NA
## 4841 NA NA
## 4842 NA NA
## 4843 6.551 75.154
## 4844 6.551 75.154
## 4845 6.551 75.154
## 4846 6.551 75.154
## 4847 6.551 75.154
## 4848 6.551 75.154
## 4849 24.216 49.301
## 4850 24.216 49.301
## 4851 24.216 49.301
## 4852 24.216 49.301
## 4853 24.216 49.301
## 4854 24.216 49.301
## 4855 NA NA
## 4856 NA NA
## 4857 NA NA
## 4858 NA NA
## 4859 NA NA
## 4860 NA NA
## 4861 NA NA
## 4862 NA NA
## 4863 NA NA
## 4864 NA NA
## 4865 NA NA
## 4866 NA NA
## 4867 NA NA
## 4868 NA NA
## 4869 NA NA
## 4870 NA NA
## 4871 NA NA
## 4872 NA NA
## 4873 NA NA
## 4874 NA NA
## 4875 NA NA
## 4876 NA NA
## 4877 NA NA
## 4878 NA NA
## 4879 NA NA
## 4880 NA NA
## 4881 NA NA
## 4882 NA NA
## 4883 NA NA
## 4884 NA NA
## 4885 NA NA
## 4886 NA NA
## 4887 NA NA
## 4888 NA NA
## 4889 NA NA
## 4890 NA NA
## 4891 NA NA
## 4892 NA NA
## 4893 NA NA
## 4894 NA NA
## 4895 NA NA
## 4896 NA NA
## 4897 21.973 46.543
## 4898 21.973 46.543
## 4899 21.973 46.543
## 4900 21.973 46.543
## 4901 21.973 46.543
## 4902 21.973 46.543
## 4903 NA NA
## 4904 NA NA
## 4905 NA NA
## 4906 NA NA
## 4907 NA NA
## 4908 NA NA
## 4909 28.431 49.205
## 4910 28.431 49.205
## 4911 28.431 49.205
## 4912 28.431 49.205
## 4913 28.431 49.205
## 4914 28.431 49.205
## 4915 72.472 110.949
## 4916 72.472 110.949
## 4917 72.472 110.949
## 4918 72.472 110.949
## 4919 72.472 110.949
## 4920 72.472 110.949
## 4921 NA NA
## 4922 NA NA
## 4923 NA NA
## 4924 NA NA
## 4925 NA NA
## 4926 NA NA
## 4927 8.947 63.437
## 4928 8.947 63.437
## 4929 8.947 63.437
## 4930 8.947 63.437
## 4931 8.947 63.437
## 4932 8.947 63.437
## 4933 37.448 79.755
## 4934 37.448 79.755
## 4935 37.448 79.755
## 4936 37.448 79.755
## 4937 37.448 79.755
## 4938 37.448 79.755
## 4939 NA NA
## 4940 NA NA
## 4941 NA NA
## 4942 NA NA
## 4943 NA NA
## 4944 NA NA
## 4945 NA NA
## 4946 NA NA
## 4947 NA NA
## 4948 NA NA
## 4949 NA NA
## 4950 NA NA
## 4951 NA NA
## 4952 NA NA
## 4953 NA NA
## 4954 NA NA
## 4955 NA NA
## 4956 NA NA
## 4957 NA NA
## 4958 NA NA
## 4959 NA NA
## 4960 NA NA
## 4961 NA NA
## 4962 NA NA
## 4963 NA NA
## 4964 NA NA
## 4965 NA NA
## 4966 NA NA
## 4967 NA NA
## 4968 NA NA
## 4969 NA NA
## 4970 NA NA
## 4971 NA NA
## 4972 NA NA
## 4973 NA NA
## 4974 NA NA
## 4975 NA NA
## 4976 NA NA
## 4977 NA NA
## 4978 NA NA
## 4979 NA NA
## 4980 NA NA
## 4981 NA NA
## 4982 NA NA
## 4983 NA NA
## 4984 NA NA
## 4985 NA NA
## 4986 NA NA
## 4987 NA NA
## 4988 NA NA
## 4989 NA NA
## 4990 NA NA
## 4991 NA NA
## 4992 NA NA
## 4993 NA NA
## 4994 NA NA
## 4995 NA NA
## 4996 NA NA
## 4997 NA NA
## 4998 NA NA
## 4999 NA NA
## 5000 NA NA
## 5001 NA NA
## 5002 NA NA
## 5003 NA NA
## 5004 NA NA
## 5005 NA NA
## 5006 NA NA
## 5007 NA NA
## 5008 NA NA
## 5009 NA NA
## 5010 NA NA
## 5011 NA NA
## 5012 NA NA
## 5013 NA NA
## 5014 NA NA
## 5015 NA NA
## 5016 NA NA
## 5017 NA NA
## 5018 NA NA
## 5019 NA NA
## 5020 NA NA
## 5021 NA NA
## 5022 NA NA
## 5023 NA NA
## 5024 NA NA
## 5025 NA NA
## 5026 NA NA
## 5027 NA NA
## 5028 NA NA
## 5029 NA NA
## 5030 NA NA
## 5031 NA NA
## 5032 NA NA
## 5033 NA NA
## 5034 NA NA
## 5035 NA NA
## 5036 NA NA
## 5037 NA NA
## 5038 NA NA
## 5039 NA NA
## 5040 NA NA
## 5041 9.619 55.433
## 5042 9.619 55.433
## 5043 9.619 55.433
## 5044 9.619 55.433
## 5045 9.619 55.433
## 5046 9.619 55.433
## 5047 NA NA
## 5048 NA NA
## 5049 NA NA
## 5050 NA NA
## 5051 NA NA
## 5052 NA NA
## 5053 NA NA
## 5054 NA NA
## 5055 NA NA
## 5056 NA NA
## 5057 NA NA
## 5058 NA NA
## 5059 10.711 66.144
## 5060 10.711 66.144
## 5061 10.711 66.144
## 5062 10.711 66.144
## 5063 10.711 66.144
## 5064 10.711 66.144
## 5065 NA NA
## 5066 NA NA
## 5067 NA NA
## 5068 NA NA
## 5069 NA NA
## 5070 NA NA
## 5071 NA NA
## 5072 NA NA
## 5073 NA NA
## 5074 NA NA
## 5075 NA NA
## 5076 NA NA
## 5077 NA NA
## 5078 NA NA
## 5079 NA NA
## 5080 NA NA
## 5081 NA NA
## 5082 NA NA
## 5083 NA NA
## 5084 NA NA
## 5085 NA NA
## 5086 NA NA
## 5087 NA NA
## 5088 NA NA
## 5089 20.742 54.163
## 5090 20.742 54.163
## 5091 20.742 54.163
## 5092 20.742 54.163
## 5093 20.742 54.163
## 5094 20.742 54.163
## 5095 NA NA
## 5096 NA NA
## 5097 NA NA
## 5098 NA NA
## 5099 NA NA
## 5100 NA NA
## 5101 2.549 91.143
## 5102 2.549 91.143
## 5103 2.549 91.143
## 5104 2.549 91.143
## 5105 2.549 91.143
## 5106 2.549 91.143
## 5107 NA NA
## 5108 NA NA
## 5109 NA NA
## 5110 NA NA
## 5111 NA NA
## 5112 NA NA
## 5113 NA NA
## 5114 NA NA
## 5115 NA NA
## 5116 NA NA
## 5117 NA NA
## 5118 NA NA
## 5119 NA NA
## 5120 NA NA
## 5121 NA NA
## 5122 NA NA
## 5123 NA NA
## 5124 NA NA
## 5125 48.356 56.370
## 5126 48.356 56.370
## 5127 48.356 56.370
## 5128 48.356 56.370
## 5129 48.356 56.370
## 5130 48.356 56.370
## 5131 NA NA
## 5132 NA NA
## 5133 NA NA
## 5134 NA NA
## 5135 NA NA
## 5136 NA NA
## 5137 8.141 24.564
## 5138 8.141 24.564
## 5139 8.141 24.564
## 5140 8.141 24.564
## 5141 8.141 24.564
## 5142 8.141 24.564
## 5143 NA NA
## 5144 NA NA
## 5145 NA NA
## 5146 NA NA
## 5147 NA NA
## 5148 NA NA
## 5149 NA NA
## 5150 NA NA
## 5151 NA NA
## 5152 NA NA
## 5153 NA NA
## 5154 NA NA
## 5155 NA NA
## 5156 NA NA
## 5157 NA NA
## 5158 NA NA
## 5159 NA NA
## 5160 NA NA
## 5161 NA NA
## 5162 NA NA
## 5163 NA NA
## 5164 NA NA
## 5165 NA NA
## 5166 NA NA
## 5167 NA NA
## 5168 NA NA
## 5169 NA NA
## 5170 NA NA
## 5171 NA NA
## 5172 NA NA
## 5173 NA NA
## 5174 NA NA
## 5175 NA NA
## 5176 NA NA
## 5177 NA NA
## 5178 NA NA
## 5179 NA NA
## 5180 NA NA
## 5181 NA NA
## 5182 NA NA
## 5183 NA NA
## 5184 NA NA
## 5185 NA NA
## 5186 NA NA
## 5187 NA NA
## 5188 NA NA
## 5189 NA NA
## 5190 NA NA
## 5191 NA NA
## 5192 NA NA
## 5193 NA NA
## 5194 NA NA
## 5195 NA NA
## 5196 NA NA
## 5197 NA NA
## 5198 NA NA
## 5199 NA NA
## 5200 NA NA
## 5201 NA NA
## 5202 NA NA
## 5203 17.472 39.531
## 5204 17.472 39.531
## 5205 17.472 39.531
## 5206 17.472 39.531
## 5207 17.472 39.531
## 5208 17.472 39.531
## 5209 NA NA
## 5210 NA NA
## 5211 NA NA
## 5212 NA NA
## 5213 NA NA
## 5214 NA NA
## 5215 NA NA
## 5216 NA NA
## 5217 NA NA
## 5218 NA NA
## 5219 NA NA
## 5220 NA NA
## 5221 NA NA
## 5222 NA NA
## 5223 NA NA
## 5224 NA NA
## 5225 NA NA
## 5226 NA NA
## 5227 NA NA
## 5228 NA NA
## 5229 NA NA
## 5230 NA NA
## 5231 NA NA
## 5232 NA NA
## 5233 NA NA
## 5234 NA NA
## 5235 NA NA
## 5236 NA NA
## 5237 NA NA
## 5238 NA NA
## 5239 2.648 39.645
## 5240 2.648 39.645
## 5241 2.648 39.645
## 5242 2.648 39.645
## 5243 2.648 39.645
## 5244 2.648 39.645
## 5245 NA NA
## 5246 NA NA
## 5247 NA NA
## 5248 NA NA
## 5249 NA NA
## 5250 NA NA
## 5251 NA NA
## 5252 NA NA
## 5253 NA NA
## 5254 NA NA
## 5255 NA NA
## 5256 NA NA
## 5257 NA NA
## 5258 NA NA
## 5259 NA NA
## 5260 NA NA
## 5261 NA NA
## 5262 NA NA
## 5263 NA NA
## 5264 NA NA
## 5265 NA NA
## 5266 NA NA
## 5267 NA NA
## 5268 NA NA
## 5269 NA NA
## 5270 NA NA
## 5271 NA NA
## 5272 NA NA
## 5273 NA NA
## 5274 NA NA
## 5275 NA NA
## 5276 NA NA
## 5277 NA NA
## 5278 NA NA
## 5279 NA NA
## 5280 NA NA
## 5281 NA NA
## 5282 NA NA
## 5283 NA NA
## 5284 NA NA
## 5285 NA NA
## 5286 NA NA
## 5287 NA NA
## 5288 NA NA
## 5289 NA NA
## 5290 NA NA
## 5291 NA NA
## 5292 NA NA
## 5293 49.679 96.589
## 5294 49.679 96.589
## 5295 49.679 96.589
## 5296 49.679 96.589
## 5297 49.679 96.589
## 5298 49.679 96.589
## 5299 NA NA
## 5300 NA NA
## 5301 NA NA
## 5302 NA NA
## 5303 NA NA
## 5304 NA NA
## 5305 NA NA
## 5306 NA NA
## 5307 NA NA
## 5308 NA NA
## 5309 NA NA
## 5310 NA NA
## 5311 NA NA
## 5312 NA NA
## 5313 NA NA
## 5314 NA NA
## 5315 NA NA
## 5316 NA NA
## 5317 NA NA
## 5318 NA NA
## 5319 NA NA
## 5320 NA NA
## 5321 NA NA
## 5322 NA NA
## 5323 NA NA
## 5324 NA NA
## 5325 NA NA
## 5326 NA NA
## 5327 NA NA
## 5328 NA NA
## 5329 NA NA
## 5330 NA NA
## 5331 NA NA
## 5332 NA NA
## 5333 NA NA
## 5334 NA NA
## 5335 NA NA
## 5336 NA NA
## 5337 NA NA
## 5338 NA NA
## 5339 NA NA
## 5340 NA NA
## 5341 NA NA
## 5342 NA NA
## 5343 NA NA
## 5344 NA NA
## 5345 NA NA
## 5346 NA NA
## 5347 17.529 121.938
## 5348 17.529 121.938
## 5349 17.529 121.938
## 5350 17.529 121.938
## 5351 17.529 121.938
## 5352 17.529 121.938
## 5353 20.144 83.477
## 5354 20.144 83.477
## 5355 20.144 83.477
## 5356 20.144 83.477
## 5357 20.144 83.477
## 5358 20.144 83.477
## 5359 NA NA
## 5360 NA NA
## 5361 NA NA
## 5362 NA NA
## 5363 NA NA
## 5364 NA NA
## 5365 NA NA
## 5366 NA NA
## 5367 NA NA
## 5368 NA NA
## 5369 NA NA
## 5370 NA NA
## 5371 93.375 105.862
## 5372 93.375 105.862
## 5373 93.375 105.862
## 5374 93.375 105.862
## 5375 93.375 105.862
## 5376 93.375 105.862
## 5377 NA NA
## 5378 NA NA
## 5379 NA NA
## 5380 NA NA
## 5381 NA NA
## 5382 NA NA
## 5383 NA NA
## 5384 NA NA
## 5385 NA NA
## 5386 NA NA
## 5387 NA NA
## 5388 NA NA
## 5389 NA NA
## 5390 NA NA
## 5391 NA NA
## 5392 NA NA
## 5393 NA NA
## 5394 NA NA
## 5395 NA NA
## 5396 NA NA
## 5397 NA NA
## 5398 NA NA
## 5399 NA NA
## 5400 NA NA
## 5401 NA NA
## 5402 NA NA
## 5403 NA NA
## 5404 NA NA
## 5405 NA NA
## 5406 NA NA
## 5407 NA NA
## 5408 NA NA
## 5409 NA NA
## 5410 NA NA
## 5411 NA NA
## 5412 NA NA
## 5413 NA NA
## 5414 NA NA
## 5415 NA NA
## 5416 NA NA
## 5417 NA NA
## 5418 NA NA
## 5419 NA NA
## 5420 NA NA
## 5421 NA NA
## 5422 NA NA
## 5423 NA NA
## 5424 NA NA
## 5425 NA NA
## 5426 NA NA
## 5427 NA NA
## 5428 NA NA
## 5429 NA NA
## 5430 NA NA
## 5431 3.161 22.003
## 5432 3.161 22.003
## 5433 3.161 22.003
## 5434 3.161 22.003
## 5435 3.161 22.003
## 5436 3.161 22.003
## 5437 NA NA
## 5438 NA NA
## 5439 NA NA
## 5440 NA NA
## 5441 NA NA
## 5442 NA NA
## 5443 NA NA
## 5444 NA NA
## 5445 NA NA
## 5446 NA NA
## 5447 NA NA
## 5448 NA NA
## 5449 NA NA
## 5450 NA NA
## 5451 NA NA
## 5452 NA NA
## 5453 NA NA
## 5454 NA NA
## 5455 NA NA
## 5456 NA NA
## 5457 NA NA
## 5458 NA NA
## 5459 NA NA
## 5460 NA NA
## 5461 NA NA
## 5462 NA NA
## 5463 NA NA
## 5464 NA NA
## 5465 NA NA
## 5466 NA NA
## 5467 NA NA
## 5468 NA NA
## 5469 NA NA
## 5470 NA NA
## 5471 NA NA
## 5472 NA NA
## 5473 NA NA
## 5474 NA NA
## 5475 NA NA
## 5476 NA NA
## 5477 NA NA
## 5478 NA NA
## 5479 NA NA
## 5480 NA NA
## 5481 NA NA
## 5482 NA NA
## 5483 NA NA
## 5484 NA NA
## 5485 NA NA
## 5486 NA NA
## 5487 NA NA
## 5488 NA NA
## 5489 NA NA
## 5490 NA NA
## 5491 NA NA
## 5492 NA NA
## 5493 NA NA
## 5494 NA NA
## 5495 NA NA
## 5496 NA NA
## 5497 1.487 40.833
## 5498 1.487 40.833
## 5499 1.487 40.833
## 5500 1.487 40.833
## 5501 1.487 40.833
## 5502 1.487 40.833
## 5503 7.438 12.063
## 5504 7.438 12.063
## 5505 7.438 12.063
## 5506 7.438 12.063
## 5507 7.438 12.063
## 5508 7.438 12.063
## 5509 NA NA
## 5510 NA NA
## 5511 NA NA
## 5512 NA NA
## 5513 NA NA
## 5514 NA NA
## 5515 8.536 39.085
## 5516 8.536 39.085
## 5517 8.536 39.085
## 5518 8.536 39.085
## 5519 8.536 39.085
## 5520 8.536 39.085
## 5521 NA NA
## 5522 NA NA
## 5523 NA NA
## 5524 NA NA
## 5525 NA NA
## 5526 NA NA
## 5527 12.098 19.962
## 5528 12.098 19.962
## 5529 12.098 19.962
## 5530 12.098 19.962
## 5531 12.098 19.962
## 5532 12.098 19.962
## 5533 NA NA
## 5534 NA NA
## 5535 NA NA
## 5536 NA NA
## 5537 NA NA
## 5538 NA NA
## 5539 NA NA
## 5540 NA NA
## 5541 NA NA
## 5542 NA NA
## 5543 NA NA
## 5544 NA NA
## 5545 NA NA
## 5546 NA NA
## 5547 NA NA
## 5548 NA NA
## 5549 NA NA
## 5550 NA NA
## 5551 NA NA
## 5552 NA NA
## 5553 NA NA
## 5554 NA NA
## 5555 NA NA
## 5556 NA NA
## 5557 NA NA
## 5558 NA NA
## 5559 NA NA
## 5560 NA NA
## 5561 NA NA
## 5562 NA NA
## 5563 NA NA
## 5564 NA NA
## 5565 NA NA
## 5566 NA NA
## 5567 NA NA
## 5568 NA NA
## 5569 NA NA
## 5570 NA NA
## 5571 NA NA
## 5572 NA NA
## 5573 NA NA
## 5574 NA NA
## 5575 NA NA
## 5576 NA NA
## 5577 NA NA
## 5578 NA NA
## 5579 NA NA
## 5580 NA NA
## 5581 NA NA
## 5582 NA NA
## 5583 NA NA
## 5584 NA NA
## 5585 NA NA
## 5586 NA NA
## 5587 7.749 38.297
## 5588 7.749 38.297
## 5589 7.749 38.297
## 5590 7.749 38.297
## 5591 7.749 38.297
## 5592 7.749 38.297
## 5593 7.144 18.707
## 5594 7.144 18.707
## 5595 7.144 18.707
## 5596 7.144 18.707
## 5597 7.144 18.707
## 5598 7.144 18.707
## 5599 NA NA
## 5600 NA NA
## 5601 NA NA
## 5602 NA NA
## 5603 NA NA
## 5604 NA NA
## 5605 NA NA
## 5606 NA NA
## 5607 NA NA
## 5608 NA NA
## 5609 NA NA
## 5610 NA NA
## 5611 25.678 44.866
## 5612 25.678 44.866
## 5613 25.678 44.866
## 5614 25.678 44.866
## 5615 25.678 44.866
## 5616 25.678 44.866
## 5617 NA NA
## 5618 NA NA
## 5619 NA NA
## 5620 NA NA
## 5621 NA NA
## 5622 NA NA
## 5623 NA NA
## 5624 NA NA
## 5625 NA NA
## 5626 NA NA
## 5627 NA NA
## 5628 NA NA
## 5629 NA NA
## 5630 NA NA
## 5631 NA NA
## 5632 NA NA
## 5633 NA NA
## 5634 NA NA
## 5635 11.999 28.785
## 5636 11.999 28.785
## 5637 11.999 28.785
## 5638 11.999 28.785
## 5639 11.999 28.785
## 5640 11.999 28.785
## 5641 NA NA
## 5642 NA NA
## 5643 NA NA
## 5644 NA NA
## 5645 NA NA
## 5646 NA NA
## 5647 NA NA
## 5648 NA NA
## 5649 NA NA
## 5650 NA NA
## 5651 NA NA
## 5652 NA NA
## 5653 NA NA
## 5654 NA NA
## 5655 NA NA
## 5656 NA NA
## 5657 NA NA
## 5658 NA NA
## 5659 22.351 30.843
## 5660 22.351 30.843
## 5661 22.351 30.843
## 5662 22.351 30.843
## 5663 22.351 30.843
## 5664 22.351 30.843
## 5665 NA NA
## 5666 NA NA
## 5667 NA NA
## 5668 NA NA
## 5669 NA NA
## 5670 NA NA
## 5671 NA NA
## 5672 NA NA
## 5673 NA NA
## 5674 NA NA
## 5675 NA NA
## 5676 NA NA
## 5677 NA NA
## 5678 NA NA
## 5679 NA NA
## 5680 NA NA
## 5681 NA NA
## 5682 NA NA
## 5683 14.701 38.724
## 5684 14.701 38.724
## 5685 14.701 38.724
## 5686 14.701 38.724
## 5687 14.701 38.724
## 5688 14.701 38.724
## 5689 NA NA
## 5690 NA NA
## 5691 NA NA
## 5692 NA NA
## 5693 NA NA
## 5694 NA NA
## 5695 NA NA
## 5696 NA NA
## 5697 NA NA
## 5698 NA NA
## 5699 NA NA
## 5700 NA NA
## 5701 NA NA
## 5702 NA NA
## 5703 NA NA
## 5704 NA NA
## 5705 NA NA
## 5706 NA NA
## 5707 NA NA
## 5708 NA NA
## 5709 NA NA
## 5710 NA NA
## 5711 NA NA
## 5712 NA NA
## 5713 NA NA
## 5714 NA NA
## 5715 NA NA
## 5716 NA NA
## 5717 NA NA
## 5718 NA NA
## 5719 NA NA
## 5720 NA NA
## 5721 NA NA
## 5722 NA NA
## 5723 NA NA
## 5724 NA NA
## 5725 NA NA
## 5726 NA NA
## 5727 NA NA
## 5728 NA NA
## 5729 NA NA
## 5730 NA NA
## 5731 NA NA
## 5732 NA NA
## 5733 NA NA
## 5734 NA NA
## 5735 NA NA
## 5736 NA NA
## 5737 NA NA
## 5738 NA NA
## 5739 NA NA
## 5740 NA NA
## 5741 NA NA
## 5742 NA NA
## 5743 30.869 52.860
## 5744 30.869 52.860
## 5745 30.869 52.860
## 5746 30.869 52.860
## 5747 30.869 52.860
## 5748 30.869 52.860
## 5749 NA NA
## 5750 NA NA
## 5751 NA NA
## 5752 NA NA
## 5753 NA NA
## 5754 NA NA
## 5755 NA NA
## 5756 NA NA
## 5757 NA NA
## 5758 NA NA
## 5759 NA NA
## 5760 NA NA
## 5761 NA NA
## 5762 NA NA
## 5763 NA NA
## 5764 NA NA
## 5765 NA NA
## 5766 NA NA
## 5767 NA NA
## 5768 NA NA
## 5769 NA NA
## 5770 NA NA
## 5771 NA NA
## 5772 NA NA
## 5773 NA NA
## 5774 NA NA
## 5775 NA NA
## 5776 NA NA
## 5777 NA NA
## 5778 NA NA
## 5779 12.841 22.320
## 5780 12.841 22.320
## 5781 12.841 22.320
## 5782 12.841 22.320
## 5783 12.841 22.320
## 5784 12.841 22.320
## 5785 NA NA
## 5786 NA NA
## 5787 NA NA
## 5788 NA NA
## 5789 NA NA
## 5790 NA NA
## 5791 NA NA
## 5792 NA NA
## 5793 NA NA
## 5794 NA NA
## 5795 NA NA
## 5796 NA NA
## 5797 NA NA
## 5798 NA NA
## 5799 NA NA
## 5800 NA NA
## 5801 NA NA
## 5802 NA NA
## 5803 NA NA
## 5804 NA NA
## 5805 NA NA
## 5806 NA NA
## 5807 NA NA
## 5808 NA NA
## 5809 13.508 24.672
## 5810 13.508 24.672
## 5811 13.508 24.672
## 5812 13.508 24.672
## 5813 13.508 24.672
## 5814 13.508 24.672
## 5815 NA NA
## 5816 NA NA
## 5817 NA NA
## 5818 NA NA
## 5819 NA NA
## 5820 NA NA
## 5821 24.911 33.030
## 5822 24.911 33.030
## 5823 24.911 33.030
## 5824 24.911 33.030
## 5825 24.911 33.030
## 5826 24.911 33.030
## 5827 NA NA
## 5828 NA NA
## 5829 NA NA
## 5830 NA NA
## 5831 NA NA
## 5832 NA NA
## 5833 NA NA
## 5834 NA NA
## 5835 NA NA
## 5836 NA NA
## 5837 NA NA
## 5838 NA NA
## 5839 21.802 56.033
## 5840 21.802 56.033
## 5841 21.802 56.033
## 5842 21.802 56.033
## 5843 21.802 56.033
## 5844 21.802 56.033
## 5845 NA NA
## 5846 NA NA
## 5847 NA NA
## 5848 NA NA
## 5849 NA NA
## 5850 NA NA
## 5851 NA NA
## 5852 NA NA
## 5853 NA NA
## 5854 NA NA
## 5855 NA NA
## 5856 NA NA
## 5857 NA NA
## 5858 NA NA
## 5859 NA NA
## 5860 NA NA
## 5861 NA NA
## 5862 NA NA
## 5863 NA NA
## 5864 NA NA
## 5865 NA NA
## 5866 NA NA
## 5867 NA NA
## 5868 NA NA
## 5869 NA NA
## 5870 NA NA
## 5871 NA NA
## 5872 NA NA
## 5873 NA NA
## 5874 NA NA
## 5875 NA NA
## 5876 NA NA
## 5877 NA NA
## 5878 NA NA
## 5879 NA NA
## 5880 NA NA
## 5881 NA NA
## 5882 NA NA
## 5883 NA NA
## 5884 NA NA
## 5885 NA NA
## 5886 NA NA
## 5887 NA NA
## 5888 NA NA
## 5889 NA NA
## 5890 NA NA
## 5891 NA NA
## 5892 NA NA
## 5893 NA NA
## 5894 NA NA
## 5895 NA NA
## 5896 NA NA
## 5897 NA NA
## 5898 NA NA
## 5899 NA NA
## 5900 NA NA
## 5901 NA NA
## 5902 NA NA
## 5903 NA NA
## 5904 NA NA
## 5905 NA NA
## 5906 NA NA
## 5907 NA NA
## 5908 NA NA
## 5909 NA NA
## 5910 NA NA
## 5911 73.517 98.046
## 5912 73.517 98.046
## 5913 73.517 98.046
## 5914 73.517 98.046
## 5915 73.517 98.046
## 5916 73.517 98.046
## 5917 18.466 109.624
## 5918 18.466 109.624
## 5919 18.466 109.624
## 5920 18.466 109.624
## 5921 18.466 109.624
## 5922 18.466 109.624
## 5923 NA NA
## 5924 NA NA
## 5925 NA NA
## 5926 NA NA
## 5927 NA NA
## 5928 NA NA
## 5929 57.381 66.277
## 5930 57.381 66.277
## 5931 57.381 66.277
## 5932 57.381 66.277
## 5933 57.381 66.277
## 5934 57.381 66.277
## 5935 NA NA
## 5936 NA NA
## 5937 NA NA
## 5938 NA NA
## 5939 NA NA
## 5940 NA NA
## 5941 NA NA
## 5942 NA NA
## 5943 NA NA
## 5944 NA NA
## 5945 NA NA
## 5946 NA NA
## 5947 NA NA
## 5948 NA NA
## 5949 NA NA
## 5950 NA NA
## 5951 NA NA
## 5952 NA NA
## 5953 NA NA
## 5954 NA NA
## 5955 NA NA
## 5956 NA NA
## 5957 NA NA
## 5958 NA NA
## 5959 31.484 61.516
## 5960 31.484 61.516
## 5961 31.484 61.516
## 5962 31.484 61.516
## 5963 31.484 61.516
## 5964 31.484 61.516
## 5965 NA NA
## 5966 NA NA
## 5967 NA NA
## 5968 NA NA
## 5969 NA NA
## 5970 NA NA
## 5971 NA NA
## 5972 NA NA
## 5973 NA NA
## 5974 NA NA
## 5975 NA NA
## 5976 NA NA
## 5977 50.175 61.924
## 5978 50.175 61.924
## 5979 50.175 61.924
## 5980 50.175 61.924
## 5981 50.175 61.924
## 5982 50.175 61.924
## 5983 NA NA
## 5984 NA NA
## 5985 NA NA
## 5986 NA NA
## 5987 NA NA
## 5988 NA NA
## 5989 NA NA
## 5990 NA NA
## 5991 NA NA
## 5992 NA NA
## 5993 NA NA
## 5994 NA NA
## 5995 NA NA
## 5996 NA NA
## 5997 NA NA
## 5998 NA NA
## 5999 NA NA
## 6000 NA NA
## 6001 NA NA
## 6002 NA NA
## 6003 NA NA
## 6004 NA NA
## 6005 NA NA
## 6006 NA NA
## 6007 NA NA
## 6008 NA NA
## 6009 NA NA
## 6010 NA NA
## 6011 NA NA
## 6012 NA NA
## 6013 NA NA
## 6014 NA NA
## 6015 NA NA
## 6016 NA NA
## 6017 NA NA
## 6018 NA NA
## 6019 NA NA
## 6020 NA NA
## 6021 NA NA
## 6022 NA NA
## 6023 NA NA
## 6024 NA NA
## 6025 NA NA
## 6026 NA NA
## 6027 NA NA
## 6028 NA NA
## 6029 NA NA
## 6030 NA NA
## 6031 NA NA
## 6032 NA NA
## 6033 NA NA
## 6034 NA NA
## 6035 NA NA
## 6036 NA NA
## 6037 NA NA
## 6038 NA NA
## 6039 NA NA
## 6040 NA NA
## 6041 NA NA
## 6042 NA NA
## 6043 2.509 58.482
## 6044 2.509 58.482
## 6045 2.509 58.482
## 6046 2.509 58.482
## 6047 2.509 58.482
## 6048 2.509 58.482
## 6049 NA NA
## 6050 NA NA
## 6051 NA NA
## 6052 NA NA
## 6053 NA NA
## 6054 NA NA
## 6055 NA NA
## 6056 NA NA
## 6057 NA NA
## 6058 NA NA
## 6059 NA NA
## 6060 NA NA
## 6061 NA NA
## 6062 NA NA
## 6063 NA NA
## 6064 NA NA
## 6065 NA NA
## 6066 NA NA
## 6067 NA NA
## 6068 NA NA
## 6069 NA NA
## 6070 NA NA
## 6071 NA NA
## 6072 NA NA
## 6073 NA NA
## 6074 NA NA
## 6075 NA NA
## 6076 NA NA
## 6077 NA NA
## 6078 NA NA
## 6079 9.915 23.302
## 6080 9.915 23.302
## 6081 9.915 23.302
## 6082 9.915 23.302
## 6083 9.915 23.302
## 6084 9.915 23.302
## 6085 27.967 43.434
## 6086 27.967 43.434
## 6087 27.967 43.434
## 6088 27.967 43.434
## 6089 27.967 43.434
## 6090 27.967 43.434
## 6091 NA NA
## 6092 NA NA
## 6093 NA NA
## 6094 NA NA
## 6095 NA NA
## 6096 NA NA
## 6097 NA NA
## 6098 NA NA
## 6099 NA NA
## 6100 NA NA
## 6101 NA NA
## 6102 NA NA
## 6103 NA NA
## 6104 NA NA
## 6105 NA NA
## 6106 NA NA
## 6107 NA NA
## 6108 NA NA
## 6109 15.014 29.370
## 6110 15.014 29.370
## 6111 15.014 29.370
## 6112 15.014 29.370
## 6113 15.014 29.370
## 6114 15.014 29.370
## 6115 12.857 138.529
## 6116 12.857 138.529
## 6117 12.857 138.529
## 6118 12.857 138.529
## 6119 12.857 138.529
## 6120 12.857 138.529
## 6121 NA NA
## 6122 NA NA
## 6123 NA NA
## 6124 NA NA
## 6125 NA NA
## 6126 NA NA
## 6127 11.201 50.165
## 6128 11.201 50.165
## 6129 11.201 50.165
## 6130 11.201 50.165
## 6131 11.201 50.165
## 6132 11.201 50.165
## 6133 1.675 7.686
## 6134 1.675 7.686
## 6135 1.675 7.686
## 6136 1.675 7.686
## 6137 1.675 7.686
## 6138 1.675 7.686
## 6139 NA NA
## 6140 NA NA
## 6141 NA NA
## 6142 NA NA
## 6143 NA NA
## 6144 NA NA
## 6145 13.370 52.158
## 6146 13.370 52.158
## 6147 13.370 52.158
## 6148 13.370 52.158
## 6149 13.370 52.158
## 6150 13.370 52.158
## 6151 10.224 23.312
## 6152 10.224 23.312
## 6153 10.224 23.312
## 6154 10.224 23.312
## 6155 10.224 23.312
## 6156 10.224 23.312
## 6157 NA NA
## 6158 NA NA
## 6159 NA NA
## 6160 NA NA
## 6161 NA NA
## 6162 NA NA
## 6163 NA NA
## 6164 NA NA
## 6165 NA NA
## 6166 NA NA
## 6167 NA NA
## 6168 NA NA
## 6169 NA NA
## 6170 NA NA
## 6171 NA NA
## 6172 NA NA
## 6173 NA NA
## 6174 NA NA
## 6175 NA NA
## 6176 NA NA
## 6177 NA NA
## 6178 NA NA
## 6179 NA NA
## 6180 NA NA
## 6181 23.176 33.464
## 6182 23.176 33.464
## 6183 23.176 33.464
## 6184 23.176 33.464
## 6185 23.176 33.464
## 6186 23.176 33.464
## 6187 10.275 61.747
## 6188 10.275 61.747
## 6189 10.275 61.747
## 6190 10.275 61.747
## 6191 10.275 61.747
## 6192 10.275 61.747
## 6193 23.172 31.122
## 6194 23.172 31.122
## 6195 23.172 31.122
## 6196 23.172 31.122
## 6197 23.172 31.122
## 6198 23.172 31.122
## 6199 7.820 16.971
## 6200 7.820 16.971
## 6201 7.820 16.971
## 6202 7.820 16.971
## 6203 7.820 16.971
## 6204 7.820 16.971
## 6205 NA NA
## 6206 NA NA
## 6207 NA NA
## 6208 NA NA
## 6209 NA NA
## 6210 NA NA
## 6211 36.606 48.688
## 6212 36.606 48.688
## 6213 36.606 48.688
## 6214 36.606 48.688
## 6215 36.606 48.688
## 6216 36.606 48.688
## 6217 NA NA
## 6218 NA NA
## 6219 NA NA
## 6220 NA NA
## 6221 NA NA
## 6222 NA NA
## 6223 NA NA
## 6224 NA NA
## 6225 NA NA
## 6226 NA NA
## 6227 NA NA
## 6228 NA NA
## 6229 NA NA
## 6230 NA NA
## 6231 NA NA
## 6232 NA NA
## 6233 NA NA
## 6234 NA NA
## 6235 NA NA
## 6236 NA NA
## 6237 NA NA
## 6238 NA NA
## 6239 NA NA
## 6240 NA NA
## 6241 43.170 66.606
## 6242 43.170 66.606
## 6243 43.170 66.606
## 6244 43.170 66.606
## 6245 43.170 66.606
## 6246 43.170 66.606
## 6247 NA NA
## 6248 NA NA
## 6249 NA NA
## 6250 NA NA
## 6251 NA NA
## 6252 NA NA
## 6253 9.134 62.302
## 6254 9.134 62.302
## 6255 9.134 62.302
## 6256 9.134 62.302
## 6257 9.134 62.302
## 6258 9.134 62.302
## 6259 14.248 17.647
## 6260 14.248 17.647
## 6261 14.248 17.647
## 6262 14.248 17.647
## 6263 14.248 17.647
## 6264 14.248 17.647
## 6265 NA NA
## 6266 NA NA
## 6267 NA NA
## 6268 NA NA
## 6269 NA NA
## 6270 NA NA
## 6271 NA NA
## 6272 NA NA
## 6273 NA NA
## 6274 NA NA
## 6275 NA NA
## 6276 NA NA
## 6277 NA NA
## 6278 NA NA
## 6279 NA NA
## 6280 NA NA
## 6281 NA NA
## 6282 NA NA
## 6283 2.293 69.098
## 6284 2.293 69.098
## 6285 2.293 69.098
## 6286 2.293 69.098
## 6287 2.293 69.098
## 6288 2.293 69.098
## 6289 22.404 39.202
## 6290 22.404 39.202
## 6291 22.404 39.202
## 6292 22.404 39.202
## 6293 22.404 39.202
## 6294 22.404 39.202
## 6295 5.438 24.493
## 6296 5.438 24.493
## 6297 5.438 24.493
## 6298 5.438 24.493
## 6299 5.438 24.493
## 6300 5.438 24.493
## 6301 NA NA
## 6302 NA NA
## 6303 NA NA
## 6304 NA NA
## 6305 NA NA
## 6306 NA NA
## 6307 9.482 20.202
## 6308 9.482 20.202
## 6309 9.482 20.202
## 6310 9.482 20.202
## 6311 9.482 20.202
## 6312 9.482 20.202
## 6313 NA NA
## 6314 NA NA
## 6315 NA NA
## 6316 NA NA
## 6317 NA NA
## 6318 NA NA
## 6319 NA NA
## 6320 NA NA
## 6321 NA NA
## 6322 NA NA
## 6323 NA NA
## 6324 NA NA
## 6325 NA NA
## 6326 NA NA
## 6327 NA NA
## 6328 NA NA
## 6329 NA NA
## 6330 NA NA
## 6331 NA NA
## 6332 NA NA
## 6333 NA NA
## 6334 NA NA
## 6335 NA NA
## 6336 NA NA
## 6337 NA NA
## 6338 NA NA
## 6339 NA NA
## 6340 NA NA
## 6341 NA NA
## 6342 NA NA
## 6343 NA NA
## 6344 NA NA
## 6345 NA NA
## 6346 NA NA
## 6347 NA NA
## 6348 NA NA
## 6349 30.641 57.894
## 6350 30.641 57.894
## 6351 30.641 57.894
## 6352 30.641 57.894
## 6353 30.641 57.894
## 6354 30.641 57.894
## 6355 NA NA
## 6356 NA NA
## 6357 NA NA
## 6358 NA NA
## 6359 NA NA
## 6360 NA NA
## 6361 NA NA
## 6362 NA NA
## 6363 NA NA
## 6364 NA NA
## 6365 NA NA
## 6366 NA NA
## 6367 NA NA
## 6368 NA NA
## 6369 NA NA
## 6370 NA NA
## 6371 NA NA
## 6372 NA NA
## 6373 NA NA
## 6374 NA NA
## 6375 NA NA
## 6376 NA NA
## 6377 NA NA
## 6378 NA NA
## 6379 NA NA
## 6380 NA NA
## 6381 NA NA
## 6382 NA NA
## 6383 NA NA
## 6384 NA NA
## 6385 NA NA
## 6386 NA NA
## 6387 NA NA
## 6388 NA NA
## 6389 NA NA
## 6390 NA NA
## 6391 NA NA
## 6392 NA NA
## 6393 NA NA
## 6394 NA NA
## 6395 NA NA
## 6396 NA NA
## 6397 NA NA
## 6398 NA NA
## 6399 NA NA
## 6400 NA NA
## 6401 NA NA
## 6402 NA NA
## 6403 NA NA
## 6404 NA NA
## 6405 NA NA
## 6406 NA NA
## 6407 NA NA
## 6408 NA NA
## 6409 33.195 89.770
## 6410 33.195 89.770
## 6411 33.195 89.770
## 6412 33.195 89.770
## 6413 33.195 89.770
## 6414 33.195 89.770
## 6415 NA NA
## 6416 NA NA
## 6417 NA NA
## 6418 NA NA
## 6419 NA NA
## 6420 NA NA
## 6421 NA NA
## 6422 NA NA
## 6423 NA NA
## 6424 NA NA
## 6425 NA NA
## 6426 NA NA
## 6427 NA NA
## 6428 NA NA
## 6429 NA NA
## 6430 NA NA
## 6431 NA NA
## 6432 NA NA
## 6433 NA NA
## 6434 NA NA
## 6435 NA NA
## 6436 NA NA
## 6437 NA NA
## 6438 NA NA
## 6439 NA NA
## 6440 NA NA
## 6441 NA NA
## 6442 NA NA
## 6443 NA NA
## 6444 NA NA
## 6445 11.575 22.999
## 6446 11.575 22.999
## 6447 11.575 22.999
## 6448 11.575 22.999
## 6449 11.575 22.999
## 6450 11.575 22.999
## 6451 27.089 60.100
## 6452 27.089 60.100
## 6453 27.089 60.100
## 6454 27.089 60.100
## 6455 27.089 60.100
## 6456 27.089 60.100
## 6457 NA NA
## 6458 NA NA
## 6459 NA NA
## 6460 NA NA
## 6461 NA NA
## 6462 NA NA
## 6463 9.861 16.813
## 6464 9.861 16.813
## 6465 9.861 16.813
## 6466 9.861 16.813
## 6467 9.861 16.813
## 6468 9.861 16.813
## 6469 NA NA
## 6470 NA NA
## 6471 NA NA
## 6472 NA NA
## 6473 NA NA
## 6474 NA NA
## 6475 NA NA
## 6476 NA NA
## 6477 NA NA
## 6478 NA NA
## 6479 NA NA
## 6480 NA NA
## 6481 15.060 21.515
## 6482 15.060 21.515
## 6483 15.060 21.515
## 6484 15.060 21.515
## 6485 15.060 21.515
## 6486 15.060 21.515
## 6487 NA NA
## 6488 NA NA
## 6489 NA NA
## 6490 NA NA
## 6491 NA NA
## 6492 NA NA
## 6493 NA NA
## 6494 NA NA
## 6495 NA NA
## 6496 NA NA
## 6497 NA NA
## 6498 NA NA
## 6499 NA NA
## 6500 NA NA
## 6501 NA NA
## 6502 NA NA
## 6503 NA NA
## 6504 NA NA
## 6505 14.612 29.590
## 6506 14.612 29.590
## 6507 14.612 29.590
## 6508 14.612 29.590
## 6509 14.612 29.590
## 6510 14.612 29.590
## 6511 24.512 44.662
## 6512 24.512 44.662
## 6513 24.512 44.662
## 6514 24.512 44.662
## 6515 24.512 44.662
## 6516 24.512 44.662
## 6517 NA NA
## 6518 NA NA
## 6519 NA NA
## 6520 NA NA
## 6521 NA NA
## 6522 NA NA
## 6523 NA NA
## 6524 NA NA
## 6525 NA NA
## 6526 NA NA
## 6527 NA NA
## 6528 NA NA
## 6529 NA NA
## 6530 NA NA
## 6531 NA NA
## 6532 NA NA
## 6533 NA NA
## 6534 NA NA
## 6535 NA NA
## 6536 NA NA
## 6537 NA NA
## 6538 NA NA
## 6539 NA NA
## 6540 NA NA
## 6541 NA NA
## 6542 NA NA
## 6543 NA NA
## 6544 NA NA
## 6545 NA NA
## 6546 NA NA
## 6547 NA NA
## 6548 NA NA
## 6549 NA NA
## 6550 NA NA
## 6551 NA NA
## 6552 NA NA
## 6553 NA NA
## 6554 NA NA
## 6555 NA NA
## 6556 NA NA
## 6557 NA NA
## 6558 NA NA
## 6559 13.857 32.002
## 6560 13.857 32.002
## 6561 13.857 32.002
## 6562 13.857 32.002
## 6563 13.857 32.002
## 6564 13.857 32.002
## 6565 NA NA
## 6566 NA NA
## 6567 NA NA
## 6568 NA NA
## 6569 NA NA
## 6570 NA NA
## 6571 NA NA
## 6572 NA NA
## 6573 NA NA
## 6574 NA NA
## 6575 NA NA
## 6576 NA NA
## 6577 11.445 38.073
## 6578 11.445 38.073
## 6579 11.445 38.073
## 6580 11.445 38.073
## 6581 11.445 38.073
## 6582 11.445 38.073
## 6583 10.428 77.341
## 6584 10.428 77.341
## 6585 10.428 77.341
## 6586 10.428 77.341
## 6587 10.428 77.341
## 6588 10.428 77.341
## 6589 NA NA
## 6590 NA NA
## 6591 NA NA
## 6592 NA NA
## 6593 NA NA
## 6594 NA NA
## 6595 NA NA
## 6596 NA NA
## 6597 NA NA
## 6598 NA NA
## 6599 NA NA
## 6600 NA NA
## 6601 NA NA
## 6602 NA NA
## 6603 NA NA
## 6604 NA NA
## 6605 NA NA
## 6606 NA NA
## 6607 NA NA
## 6608 NA NA
## 6609 NA NA
## 6610 NA NA
## 6611 NA NA
## 6612 NA NA
## 6613 NA NA
## 6614 NA NA
## 6615 NA NA
## 6616 NA NA
## 6617 NA NA
## 6618 NA NA
## 6619 NA NA
## 6620 NA NA
## 6621 NA NA
## 6622 NA NA
## 6623 NA NA
## 6624 NA NA
## 6625 NA NA
## 6626 NA NA
## 6627 NA NA
## 6628 NA NA
## 6629 NA NA
## 6630 NA NA
## 6631 NA NA
## 6632 NA NA
## 6633 NA NA
## 6634 NA NA
## 6635 NA NA
## 6636 NA NA
## 6637 NA NA
## 6638 NA NA
## 6639 NA NA
## 6640 NA NA
## 6641 NA NA
## 6642 NA NA
## 6643 NA NA
## 6644 NA NA
## 6645 NA NA
## 6646 NA NA
## 6647 NA NA
## 6648 NA NA
## 6649 3.210 74.110
## 6650 3.210 74.110
## 6651 3.210 74.110
## 6652 3.210 74.110
## 6653 3.210 74.110
## 6654 3.210 74.110
## 6655 18.138 36.533
## 6656 18.138 36.533
## 6657 18.138 36.533
## 6658 18.138 36.533
## 6659 18.138 36.533
## 6660 18.138 36.533
## 6661 23.815 38.996
## 6662 23.815 38.996
## 6663 23.815 38.996
## 6664 23.815 38.996
## 6665 23.815 38.996
## 6666 23.815 38.996
## 6667 NA NA
## 6668 NA NA
## 6669 NA NA
## 6670 NA NA
## 6671 NA NA
## 6672 NA NA
## 6673 NA NA
## 6674 NA NA
## 6675 NA NA
## 6676 NA NA
## 6677 NA NA
## 6678 NA NA
## 6679 NA NA
## 6680 NA NA
## 6681 NA NA
## 6682 NA NA
## 6683 NA NA
## 6684 NA NA
## 6685 NA NA
## 6686 NA NA
## 6687 NA NA
## 6688 NA NA
## 6689 NA NA
## 6690 NA NA
## 6691 NA NA
## 6692 NA NA
## 6693 NA NA
## 6694 NA NA
## 6695 NA NA
## 6696 NA NA
## 6697 NA NA
## 6698 NA NA
## 6699 NA NA
## 6700 NA NA
## 6701 NA NA
## 6702 NA NA
## 6703 16.786 30.526
## 6704 16.786 30.526
## 6705 16.786 30.526
## 6706 16.786 30.526
## 6707 16.786 30.526
## 6708 16.786 30.526
## 6709 NA NA
## 6710 NA NA
## 6711 NA NA
## 6712 NA NA
## 6713 NA NA
## 6714 NA NA
## 6715 NA NA
## 6716 NA NA
## 6717 NA NA
## 6718 NA NA
## 6719 NA NA
## 6720 NA NA
## 6721 NA NA
## 6722 NA NA
## 6723 NA NA
## 6724 NA NA
## 6725 NA NA
## 6726 NA NA
## 6727 11.584 25.576
## 6728 11.584 25.576
## 6729 11.584 25.576
## 6730 11.584 25.576
## 6731 11.584 25.576
## 6732 11.584 25.576
## 6733 NA NA
## 6734 NA NA
## 6735 NA NA
## 6736 NA NA
## 6737 NA NA
## 6738 NA NA
## 6739 NA NA
## 6740 NA NA
## 6741 NA NA
## 6742 NA NA
## 6743 NA NA
## 6744 NA NA
## 6745 NA NA
## 6746 NA NA
## 6747 NA NA
## 6748 NA NA
## 6749 NA NA
## 6750 NA NA
## 6751 2.880 20.025
## 6752 2.880 20.025
## 6753 2.880 20.025
## 6754 2.880 20.025
## 6755 2.880 20.025
## 6756 2.880 20.025
## 6757 NA NA
## 6758 NA NA
## 6759 NA NA
## 6760 NA NA
## 6761 NA NA
## 6762 NA NA
## 6763 NA NA
## 6764 NA NA
## 6765 NA NA
## 6766 NA NA
## 6767 NA NA
## 6768 NA NA
## 6769 NA NA
## 6770 NA NA
## 6771 NA NA
## 6772 NA NA
## 6773 NA NA
## 6774 NA NA
## 6775 NA NA
## 6776 NA NA
## 6777 NA NA
## 6778 NA NA
## 6779 NA NA
## 6780 NA NA
## 6781 16.347 36.491
## 6782 16.347 36.491
## 6783 16.347 36.491
## 6784 16.347 36.491
## 6785 16.347 36.491
## 6786 16.347 36.491
## 6787 NA NA
## 6788 NA NA
## 6789 NA NA
## 6790 NA NA
## 6791 NA NA
## 6792 NA NA
## 6793 NA NA
## 6794 NA NA
## 6795 NA NA
## 6796 NA NA
## 6797 NA NA
## 6798 NA NA
## 6799 NA NA
## 6800 NA NA
## 6801 NA NA
## 6802 NA NA
## 6803 NA NA
## 6804 NA NA
## 6805 25.811 30.835
## 6806 25.811 30.835
## 6807 25.811 30.835
## 6808 25.811 30.835
## 6809 25.811 30.835
## 6810 25.811 30.835
## 6811 NA NA
## 6812 NA NA
## 6813 NA NA
## 6814 NA NA
## 6815 NA NA
## 6816 NA NA
## 6817 33.434 151.968
## 6818 33.434 151.968
## 6819 33.434 151.968
## 6820 33.434 151.968
## 6821 33.434 151.968
## 6822 33.434 151.968
## 6823 NA NA
## 6824 NA NA
## 6825 NA NA
## 6826 NA NA
## 6827 NA NA
## 6828 NA NA
## 6829 NA NA
## 6830 NA NA
## 6831 NA NA
## 6832 NA NA
## 6833 NA NA
## 6834 NA NA
## 6835 11.822 21.100
## 6836 11.822 21.100
## 6837 11.822 21.100
## 6838 11.822 21.100
## 6839 11.822 21.100
## 6840 11.822 21.100
## 6841 NA NA
## 6842 NA NA
## 6843 NA NA
## 6844 NA NA
## 6845 NA NA
## 6846 NA NA
## 6847 NA NA
## 6848 NA NA
## 6849 NA NA
## 6850 NA NA
## 6851 NA NA
## 6852 NA NA
## 6853 NA NA
## 6854 NA NA
## 6855 NA NA
## 6856 NA NA
## 6857 NA NA
## 6858 NA NA
## 6859 NA NA
## 6860 NA NA
## 6861 NA NA
## 6862 NA NA
## 6863 NA NA
## 6864 NA NA
## 6865 NA NA
## 6866 NA NA
## 6867 NA NA
## 6868 NA NA
## 6869 NA NA
## 6870 NA NA
## 6871 9.074 36.164
## 6872 9.074 36.164
## 6873 9.074 36.164
## 6874 9.074 36.164
## 6875 9.074 36.164
## 6876 9.074 36.164
## 6877 NA NA
## 6878 NA NA
## 6879 NA NA
## 6880 NA NA
## 6881 NA NA
## 6882 NA NA
## 6883 NA NA
## 6884 NA NA
## 6885 NA NA
## 6886 NA NA
## 6887 NA NA
## 6888 NA NA
## 6889 5.861 24.094
## 6890 5.861 24.094
## 6891 5.861 24.094
## 6892 5.861 24.094
## 6893 5.861 24.094
## 6894 5.861 24.094
## 6895 NA NA
## 6896 NA NA
## 6897 NA NA
## 6898 NA NA
## 6899 NA NA
## 6900 NA NA
## 6901 NA NA
## 6902 NA NA
## 6903 NA NA
## 6904 NA NA
## 6905 NA NA
## 6906 NA NA
## 6907 NA NA
## 6908 NA NA
## 6909 NA NA
## 6910 NA NA
## 6911 NA NA
## 6912 NA NA
## 6913 22.400 48.625
## 6914 22.400 48.625
## 6915 22.400 48.625
## 6916 22.400 48.625
## 6917 22.400 48.625
## 6918 22.400 48.625
## 6919 NA NA
## 6920 NA NA
## 6921 NA NA
## 6922 NA NA
## 6923 NA NA
## 6924 NA NA
## 6925 NA NA
## 6926 NA NA
## 6927 NA NA
## 6928 NA NA
## 6929 NA NA
## 6930 NA NA
## 6931 110.110 149.576
## 6932 110.110 149.576
## 6933 110.110 149.576
## 6934 110.110 149.576
## 6935 110.110 149.576
## 6936 110.110 149.576
## 6937 NA NA
## 6938 NA NA
## 6939 NA NA
## 6940 NA NA
## 6941 NA NA
## 6942 NA NA
## 6943 4.001 46.138
## 6944 4.001 46.138
## 6945 4.001 46.138
## 6946 4.001 46.138
## 6947 4.001 46.138
## 6948 4.001 46.138
## 6949 NA NA
## 6950 NA NA
## 6951 NA NA
## 6952 NA NA
## 6953 NA NA
## 6954 NA NA
## 6955 NA NA
## 6956 NA NA
## 6957 NA NA
## 6958 NA NA
## 6959 NA NA
## 6960 NA NA
## 6961 NA NA
## 6962 NA NA
## 6963 NA NA
## 6964 NA NA
## 6965 NA NA
## 6966 NA NA
## 6967 18.201 30.701
## 6968 18.201 30.701
## 6969 18.201 30.701
## 6970 18.201 30.701
## 6971 18.201 30.701
## 6972 18.201 30.701
## 6973 NA NA
## 6974 NA NA
## 6975 NA NA
## 6976 NA NA
## 6977 NA NA
## 6978 NA NA
## 6979 66.962 76.052
## 6980 66.962 76.052
## 6981 66.962 76.052
## 6982 66.962 76.052
## 6983 66.962 76.052
## 6984 66.962 76.052
## 6985 NA NA
## 6986 NA NA
## 6987 NA NA
## 6988 NA NA
## 6989 NA NA
## 6990 NA NA
## 6991 NA NA
## 6992 NA NA
## 6993 NA NA
## 6994 NA NA
## 6995 NA NA
## 6996 NA NA
## 6997 NA NA
## 6998 NA NA
## 6999 NA NA
## 7000 NA NA
## 7001 NA NA
## 7002 NA NA
## 7003 25.954 48.106
## 7004 25.954 48.106
## 7005 25.954 48.106
## 7006 25.954 48.106
## 7007 25.954 48.106
## 7008 25.954 48.106
## 7009 NA NA
## 7010 NA NA
## 7011 NA NA
## 7012 NA NA
## 7013 NA NA
## 7014 NA NA
## 7015 28.040 49.872
## 7016 28.040 49.872
## 7017 28.040 49.872
## 7018 28.040 49.872
## 7019 28.040 49.872
## 7020 28.040 49.872
## 7021 NA NA
## 7022 NA NA
## 7023 NA NA
## 7024 NA NA
## 7025 NA NA
## 7026 NA NA
## 7027 NA NA
## 7028 NA NA
## 7029 NA NA
## 7030 NA NA
## 7031 NA NA
## 7032 NA NA
## 7033 NA NA
## 7034 NA NA
## 7035 NA NA
## 7036 NA NA
## 7037 NA NA
## 7038 NA NA
## 7039 11.315 24.346
## 7040 11.315 24.346
## 7041 11.315 24.346
## 7042 11.315 24.346
## 7043 11.315 24.346
## 7044 11.315 24.346
## 7045 NA NA
## 7046 NA NA
## 7047 NA NA
## 7048 NA NA
## 7049 NA NA
## 7050 NA NA
## 7051 23.125 38.193
## 7052 23.125 38.193
## 7053 23.125 38.193
## 7054 23.125 38.193
## 7055 23.125 38.193
## 7056 23.125 38.193
## 7057 NA NA
## 7058 NA NA
## 7059 NA NA
## 7060 NA NA
## 7061 NA NA
## 7062 NA NA
## 7063 NA NA
## 7064 NA NA
## 7065 NA NA
## 7066 NA NA
## 7067 NA NA
## 7068 NA NA
## 7069 NA NA
## 7070 NA NA
## 7071 NA NA
## 7072 NA NA
## 7073 NA NA
## 7074 NA NA
## 7075 NA NA
## 7076 NA NA
## 7077 NA NA
## 7078 NA NA
## 7079 NA NA
## 7080 NA NA
## 7081 15.508 31.331
## 7082 15.508 31.331
## 7083 15.508 31.331
## 7084 15.508 31.331
## 7085 15.508 31.331
## 7086 15.508 31.331
## 7087 NA NA
## 7088 NA NA
## 7089 NA NA
## 7090 NA NA
## 7091 NA NA
## 7092 NA NA
## 7093 29.084 54.726
## 7094 29.084 54.726
## 7095 29.084 54.726
## 7096 29.084 54.726
## 7097 29.084 54.726
## 7098 29.084 54.726
## 7099 NA NA
## 7100 NA NA
## 7101 NA NA
## 7102 NA NA
## 7103 NA NA
## 7104 NA NA
## 7105 NA NA
## 7106 NA NA
## 7107 NA NA
## 7108 NA NA
## 7109 NA NA
## 7110 NA NA
## 7111 16.036 21.397
## 7112 16.036 21.397
## 7113 16.036 21.397
## 7114 16.036 21.397
## 7115 16.036 21.397
## 7116 16.036 21.397
## 7117 NA NA
## 7118 NA NA
## 7119 NA NA
## 7120 NA NA
## 7121 NA NA
## 7122 NA NA
## 7123 NA NA
## 7124 NA NA
## 7125 NA NA
## 7126 NA NA
## 7127 NA NA
## 7128 NA NA
## 7129 NA NA
## 7130 NA NA
## 7131 NA NA
## 7132 NA NA
## 7133 NA NA
## 7134 NA NA
## 7135 NA NA
## 7136 NA NA
## 7137 NA NA
## 7138 NA NA
## 7139 NA NA
## 7140 NA NA
## 7141 NA NA
## 7142 NA NA
## 7143 NA NA
## 7144 NA NA
## 7145 NA NA
## 7146 NA NA
## 7147 NA NA
## 7148 NA NA
## 7149 NA NA
## 7150 NA NA
## 7151 NA NA
## 7152 NA NA
## 7153 NA NA
## 7154 NA NA
## 7155 NA NA
## 7156 NA NA
## 7157 NA NA
## 7158 NA NA
## 7159 13.624 20.411
## 7160 13.624 20.411
## 7161 13.624 20.411
## 7162 13.624 20.411
## 7163 13.624 20.411
## 7164 13.624 20.411
## 7165 NA NA
## 7166 NA NA
## 7167 NA NA
## 7168 NA NA
## 7169 NA NA
## 7170 NA NA
## 7171 NA NA
## 7172 NA NA
## 7173 NA NA
## 7174 NA NA
## 7175 NA NA
## 7176 NA NA
## 7177 NA NA
## 7178 NA NA
## 7179 NA NA
## 7180 NA NA
## 7181 NA NA
## 7182 NA NA
## 7183 NA NA
## 7184 NA NA
## 7185 NA NA
## 7186 NA NA
## 7187 NA NA
## 7188 NA NA
## 7189 NA NA
## 7190 NA NA
## 7191 NA NA
## 7192 NA NA
## 7193 NA NA
## 7194 NA NA
## 7195 NA NA
## 7196 NA NA
## 7197 NA NA
## 7198 NA NA
## 7199 NA NA
## 7200 NA NA
## 7201 NA NA
## 7202 NA NA
## 7203 NA NA
## 7204 NA NA
## 7205 NA NA
## 7206 NA NA
## 7207 NA NA
## 7208 NA NA
## 7209 NA NA
## 7210 NA NA
## 7211 NA NA
## 7212 NA NA
## 7213 NA NA
## 7214 NA NA
## 7215 NA NA
## 7216 NA NA
## 7217 NA NA
## 7218 NA NA
## 7219 NA NA
## 7220 NA NA
## 7221 NA NA
## 7222 NA NA
## 7223 NA NA
## 7224 NA NA
## 7225 18.167 23.530
## 7226 18.167 23.530
## 7227 18.167 23.530
## 7228 18.167 23.530
## 7229 18.167 23.530
## 7230 18.167 23.530
## 7231 19.725 38.796
## 7232 19.725 38.796
## 7233 19.725 38.796
## 7234 19.725 38.796
## 7235 19.725 38.796
## 7236 19.725 38.796
## 7237 NA NA
## 7238 NA NA
## 7239 NA NA
## 7240 NA NA
## 7241 NA NA
## 7242 NA NA
## 7243 NA NA
## 7244 NA NA
## 7245 NA NA
## 7246 NA NA
## 7247 NA NA
## 7248 NA NA
## 7249 NA NA
## 7250 NA NA
## 7251 NA NA
## 7252 NA NA
## 7253 NA NA
## 7254 NA NA
## 7255 64.038 71.099
## 7256 64.038 71.099
## 7257 64.038 71.099
## 7258 64.038 71.099
## 7259 64.038 71.099
## 7260 64.038 71.099
## 7261 NA NA
## 7262 NA NA
## 7263 NA NA
## 7264 NA NA
## 7265 NA NA
## 7266 NA NA
## 7267 32.453 41.680
## 7268 32.453 41.680
## 7269 32.453 41.680
## 7270 32.453 41.680
## 7271 32.453 41.680
## 7272 32.453 41.680
## 7273 NA NA
## 7274 NA NA
## 7275 NA NA
## 7276 NA NA
## 7277 NA NA
## 7278 NA NA
## 7279 15.733 21.601
## 7280 15.733 21.601
## 7281 15.733 21.601
## 7282 15.733 21.601
## 7283 15.733 21.601
## 7284 15.733 21.601
## 7285 NA NA
## 7286 NA NA
## 7287 NA NA
## 7288 NA NA
## 7289 NA NA
## 7290 NA NA
## 7291 NA NA
## 7292 NA NA
## 7293 NA NA
## 7294 NA NA
## 7295 NA NA
## 7296 NA NA
## 7297 NA NA
## 7298 NA NA
## 7299 NA NA
## 7300 NA NA
## 7301 NA NA
## 7302 NA NA
## 7303 NA NA
## 7304 NA NA
## 7305 NA NA
## 7306 NA NA
## 7307 NA NA
## 7308 NA NA
## 7309 NA NA
## 7310 NA NA
## 7311 NA NA
## 7312 NA NA
## 7313 NA NA
## 7314 NA NA
## 7315 NA NA
## 7316 NA NA
## 7317 NA NA
## 7318 NA NA
## 7319 NA NA
## 7320 NA NA
## 7321 NA NA
## 7322 NA NA
## 7323 NA NA
## 7324 NA NA
## 7325 NA NA
## 7326 NA NA
## 7327 14.663 46.240
## 7328 14.663 46.240
## 7329 14.663 46.240
## 7330 14.663 46.240
## 7331 14.663 46.240
## 7332 14.663 46.240
## 7333 NA NA
## 7334 NA NA
## 7335 NA NA
## 7336 NA NA
## 7337 NA NA
## 7338 NA NA
## 7339 NA NA
## 7340 NA NA
## 7341 NA NA
## 7342 NA NA
## 7343 NA NA
## 7344 NA NA
## 7345 3.670 23.210
## 7346 3.670 23.210
## 7347 3.670 23.210
## 7348 3.670 23.210
## 7349 3.670 23.210
## 7350 3.670 23.210
## 7351 NA NA
## 7352 NA NA
## 7353 NA NA
## 7354 NA NA
## 7355 NA NA
## 7356 NA NA
## 7357 NA NA
## 7358 NA NA
## 7359 NA NA
## 7360 NA NA
## 7361 NA NA
## 7362 NA NA
## 7363 NA NA
## 7364 NA NA
## 7365 NA NA
## 7366 NA NA
## 7367 NA NA
## 7368 NA NA
## 7369 NA NA
## 7370 NA NA
## 7371 NA NA
## 7372 NA NA
## 7373 NA NA
## 7374 NA NA
## 7375 59.040 64.057
## 7376 59.040 64.057
## 7377 59.040 64.057
## 7378 59.040 64.057
## 7379 59.040 64.057
## 7380 59.040 64.057
## 7381 NA NA
## 7382 NA NA
## 7383 NA NA
## 7384 NA NA
## 7385 NA NA
## 7386 NA NA
## 7387 NA NA
## 7388 NA NA
## 7389 NA NA
## 7390 NA NA
## 7391 NA NA
## 7392 NA NA
## 7393 NA NA
## 7394 NA NA
## 7395 NA NA
## 7396 NA NA
## 7397 NA NA
## 7398 NA NA
## 7399 NA NA
## 7400 NA NA
## 7401 NA NA
## 7402 NA NA
## 7403 NA NA
## 7404 NA NA
## 7405 NA NA
## 7406 NA NA
## 7407 NA NA
## 7408 NA NA
## 7409 NA NA
## 7410 NA NA
## 7411 NA NA
## 7412 NA NA
## 7413 NA NA
## 7414 NA NA
## 7415 NA NA
## 7416 NA NA
## 7417 NA NA
## 7418 NA NA
## 7419 NA NA
## 7420 NA NA
## 7421 NA NA
## 7422 NA NA
## 7423 NA NA
## 7424 NA NA
## 7425 NA NA
## 7426 NA NA
## 7427 NA NA
## 7428 NA NA
## 7429 NA NA
## 7430 NA NA
## 7431 NA NA
## 7432 NA NA
## 7433 NA NA
## 7434 NA NA
## 7435 NA NA
## 7436 NA NA
## 7437 NA NA
## 7438 NA NA
## 7439 NA NA
## 7440 NA NA
## 7441 12.632 23.672
## 7442 12.632 23.672
## 7443 12.632 23.672
## 7444 12.632 23.672
## 7445 12.632 23.672
## 7446 12.632 23.672
## 7447 NA NA
## 7448 NA NA
## 7449 NA NA
## 7450 NA NA
## 7451 NA NA
## 7452 NA NA
## 7453 NA NA
## 7454 NA NA
## 7455 NA NA
## 7456 NA NA
## 7457 NA NA
## 7458 NA NA
## 7459 NA NA
## 7460 NA NA
## 7461 NA NA
## 7462 NA NA
## 7463 NA NA
## 7464 NA NA
## 7465 NA NA
## 7466 NA NA
## 7467 NA NA
## 7468 NA NA
## 7469 NA NA
## 7470 NA NA
## 7471 19.077 33.076
## 7472 19.077 33.076
## 7473 19.077 33.076
## 7474 19.077 33.076
## 7475 19.077 33.076
## 7476 19.077 33.076
## 7477 8.285 17.570
## 7478 8.285 17.570
## 7479 8.285 17.570
## 7480 8.285 17.570
## 7481 8.285 17.570
## 7482 8.285 17.570
## 7483 NA NA
## 7484 NA NA
## 7485 NA NA
## 7486 NA NA
## 7487 NA NA
## 7488 NA NA
## 7489 NA NA
## 7490 NA NA
## 7491 NA NA
## 7492 NA NA
## 7493 NA NA
## 7494 NA NA
## 7495 NA NA
## 7496 NA NA
## 7497 NA NA
## 7498 NA NA
## 7499 NA NA
## 7500 NA NA
## 7501 NA NA
## 7502 NA NA
## 7503 NA NA
## 7504 NA NA
## 7505 NA NA
## 7506 NA NA
## 7507 NA NA
## 7508 NA NA
## 7509 NA NA
## 7510 NA NA
## 7511 NA NA
## 7512 NA NA
## 7513 4.826 25.539
## 7514 4.826 25.539
## 7515 4.826 25.539
## 7516 4.826 25.539
## 7517 4.826 25.539
## 7518 4.826 25.539
## 7519 16.996 52.502
## 7520 16.996 52.502
## 7521 16.996 52.502
## 7522 16.996 52.502
## 7523 16.996 52.502
## 7524 16.996 52.502
## 7525 8.113 2446.091
## 7526 8.113 2446.091
## 7527 8.113 2446.091
## 7528 8.113 2446.091
## 7529 8.113 2446.091
## 7530 8.113 2446.091
## 7531 NA NA
## 7532 NA NA
## 7533 NA NA
## 7534 NA NA
## 7535 NA NA
## 7536 NA NA
## 7537 53.189 88.532
## 7538 53.189 88.532
## 7539 53.189 88.532
## 7540 53.189 88.532
## 7541 53.189 88.532
## 7542 53.189 88.532
## 7543 NA NA
## 7544 NA NA
## 7545 NA NA
## 7546 NA NA
## 7547 NA NA
## 7548 NA NA
## 7549 NA NA
## 7550 NA NA
## 7551 NA NA
## 7552 NA NA
## 7553 NA NA
## 7554 NA NA
## 7555 NA NA
## 7556 NA NA
## 7557 NA NA
## 7558 NA NA
## 7559 NA NA
## 7560 NA NA
## 7561 NA NA
## 7562 NA NA
## 7563 NA NA
## 7564 NA NA
## 7565 NA NA
## 7566 NA NA
## 7567 NA NA
## 7568 NA NA
## 7569 NA NA
## 7570 NA NA
## 7571 NA NA
## 7572 NA NA
## 7573 NA NA
## 7574 NA NA
## 7575 NA NA
## 7576 NA NA
## 7577 NA NA
## 7578 NA NA
## 7579 NA NA
## 7580 NA NA
## 7581 NA NA
## 7582 NA NA
## 7583 NA NA
## 7584 NA NA
## 7585 2.244 29.345
## 7586 2.244 29.345
## 7587 2.244 29.345
## 7588 2.244 29.345
## 7589 2.244 29.345
## 7590 2.244 29.345
## 7591 NA NA
## 7592 NA NA
## 7593 NA NA
## 7594 NA NA
## 7595 NA NA
## 7596 NA NA
## 7597 NA NA
## 7598 NA NA
## 7599 NA NA
## 7600 NA NA
## 7601 NA NA
## 7602 NA NA
## 7603 NA NA
## 7604 NA NA
## 7605 NA NA
## 7606 NA NA
## 7607 NA NA
## 7608 NA NA
## 7609 20.317 49.787
## 7610 20.317 49.787
## 7611 20.317 49.787
## 7612 20.317 49.787
## 7613 20.317 49.787
## 7614 20.317 49.787
## 7615 NA NA
## 7616 NA NA
## 7617 NA NA
## 7618 NA NA
## 7619 NA NA
## 7620 NA NA
## 7621 NA NA
## 7622 NA NA
## 7623 NA NA
## 7624 NA NA
## 7625 NA NA
## 7626 NA NA
## 7627 NA NA
## 7628 NA NA
## 7629 NA NA
## 7630 NA NA
## 7631 NA NA
## 7632 NA NA
## 7633 10.200 23.584
## 7634 10.200 23.584
## 7635 10.200 23.584
## 7636 10.200 23.584
## 7637 10.200 23.584
## 7638 10.200 23.584
## 7639 NA NA
## 7640 NA NA
## 7641 NA NA
## 7642 NA NA
## 7643 NA NA
## 7644 NA NA
## 7645 58.451 64.414
## 7646 58.451 64.414
## 7647 58.451 64.414
## 7648 58.451 64.414
## 7649 58.451 64.414
## 7650 58.451 64.414
## 7651 NA NA
## 7652 NA NA
## 7653 NA NA
## 7654 NA NA
## 7655 NA NA
## 7656 NA NA
## 7657 NA NA
## 7658 NA NA
## 7659 NA NA
## 7660 NA NA
## 7661 NA NA
## 7662 NA NA
## 7663 NA NA
## 7664 NA NA
## 7665 NA NA
## 7666 NA NA
## 7667 NA NA
## 7668 NA NA
## 7669 NA NA
## 7670 NA NA
## 7671 NA NA
## 7672 NA NA
## 7673 NA NA
## 7674 NA NA
## 7675 NA NA
## 7676 NA NA
## 7677 NA NA
## 7678 NA NA
## 7679 NA NA
## 7680 NA NA
## 7681 NA NA
## 7682 NA NA
## 7683 NA NA
## 7684 NA NA
## 7685 NA NA
## 7686 NA NA
## 7687 122.001 128.651
## 7688 122.001 128.651
## 7689 122.001 128.651
## 7690 122.001 128.651
## 7691 122.001 128.651
## 7692 122.001 128.651
## 7693 NA NA
## 7694 NA NA
## 7695 NA NA
## 7696 NA NA
## 7697 NA NA
## 7698 NA NA
## 7699 NA NA
## 7700 NA NA
## 7701 NA NA
## 7702 NA NA
## 7703 NA NA
## 7704 NA NA
## 7705 NA NA
## 7706 NA NA
## 7707 NA NA
## 7708 NA NA
## 7709 NA NA
## 7710 NA NA
## 7711 NA NA
## 7712 NA NA
## 7713 NA NA
## 7714 NA NA
## 7715 NA NA
## 7716 NA NA
## 7717 NA NA
## 7718 NA NA
## 7719 NA NA
## 7720 NA NA
## 7721 NA NA
## 7722 NA NA
## 7723 NA NA
## 7724 NA NA
## 7725 NA NA
## 7726 NA NA
## 7727 NA NA
## 7728 NA NA
## 7729 NA NA
## 7730 NA NA
## 7731 NA NA
## 7732 NA NA
## 7733 NA NA
## 7734 NA NA
## 7735 12.247 35.827
## 7736 12.247 35.827
## 7737 12.247 35.827
## 7738 12.247 35.827
## 7739 12.247 35.827
## 7740 12.247 35.827
## 7741 NA NA
## 7742 NA NA
## 7743 NA NA
## 7744 NA NA
## 7745 NA NA
## 7746 NA NA
## 7747 20.976 33.936
## 7748 20.976 33.936
## 7749 20.976 33.936
## 7750 20.976 33.936
## 7751 20.976 33.936
## 7752 20.976 33.936
## 7753 53.548 85.037
## 7754 53.548 85.037
## 7755 53.548 85.037
## 7756 53.548 85.037
## 7757 53.548 85.037
## 7758 53.548 85.037
## 7759 NA NA
## 7760 NA NA
## 7761 NA NA
## 7762 NA NA
## 7763 NA NA
## 7764 NA NA
## 7765 NA NA
## 7766 NA NA
## 7767 NA NA
## 7768 NA NA
## 7769 NA NA
## 7770 NA NA
## 7771 4.067 33.987
## 7772 4.067 33.987
## 7773 4.067 33.987
## 7774 4.067 33.987
## 7775 4.067 33.987
## 7776 4.067 33.987
## 7777 49.717 74.370
## 7778 49.717 74.370
## 7779 49.717 74.370
## 7780 49.717 74.370
## 7781 49.717 74.370
## 7782 49.717 74.370
## 7783 NA NA
## 7784 NA NA
## 7785 NA NA
## 7786 NA NA
## 7787 NA NA
## 7788 NA NA
## 7789 NA NA
## 7790 NA NA
## 7791 NA NA
## 7792 NA NA
## 7793 NA NA
## 7794 NA NA
## 7795 40.703 59.855
## 7796 40.703 59.855
## 7797 40.703 59.855
## 7798 40.703 59.855
## 7799 40.703 59.855
## 7800 40.703 59.855
## 7801 NA NA
## 7802 NA NA
## 7803 NA NA
## 7804 NA NA
## 7805 NA NA
## 7806 NA NA
## 7807 NA NA
## 7808 NA NA
## 7809 NA NA
## 7810 NA NA
## 7811 NA NA
## 7812 NA NA
## 7813 NA NA
## 7814 NA NA
## 7815 NA NA
## 7816 NA NA
## 7817 NA NA
## 7818 NA NA
## 7819 1.972 18.603
## 7820 1.972 18.603
## 7821 1.972 18.603
## 7822 1.972 18.603
## 7823 1.972 18.603
## 7824 1.972 18.603
## 7825 NA NA
## 7826 NA NA
## 7827 NA NA
## 7828 NA NA
## 7829 NA NA
## 7830 NA NA
## 7831 NA NA
## 7832 NA NA
## 7833 NA NA
## 7834 NA NA
## 7835 NA NA
## 7836 NA NA
## 7837 NA NA
## 7838 NA NA
## 7839 NA NA
## 7840 NA NA
## 7841 NA NA
## 7842 NA NA
## 7843 NA NA
## 7844 NA NA
## 7845 NA NA
## 7846 NA NA
## 7847 NA NA
## 7848 NA NA
## 7849 NA NA
## 7850 NA NA
## 7851 NA NA
## 7852 NA NA
## 7853 NA NA
## 7854 NA NA
## 7855 NA NA
## 7856 NA NA
## 7857 NA NA
## 7858 NA NA
## 7859 NA NA
## 7860 NA NA
## 7861 NA NA
## 7862 NA NA
## 7863 NA NA
## 7864 NA NA
## 7865 NA NA
## 7866 NA NA
## 7867 NA NA
## 7868 NA NA
## 7869 NA NA
## 7870 NA NA
## 7871 NA NA
## 7872 NA NA
## 7873 NA NA
## 7874 NA NA
## 7875 NA NA
## 7876 NA NA
## 7877 NA NA
## 7878 NA NA
## 7879 NA NA
## 7880 NA NA
## 7881 NA NA
## 7882 NA NA
## 7883 NA NA
## 7884 NA NA
## 7885 NA NA
## 7886 NA NA
## 7887 NA NA
## 7888 NA NA
## 7889 NA NA
## 7890 NA NA
## 7891 NA NA
## 7892 NA NA
## 7893 NA NA
## 7894 NA NA
## 7895 NA NA
## 7896 NA NA
## 7897 NA NA
## 7898 NA NA
## 7899 NA NA
## 7900 NA NA
## 7901 NA NA
## 7902 NA NA
## 7903 NA NA
## 7904 NA NA
## 7905 NA NA
## 7906 NA NA
## 7907 NA NA
## 7908 NA NA
## 7909 NA NA
## 7910 NA NA
## 7911 NA NA
## 7912 NA NA
## 7913 NA NA
## 7914 NA NA
## 7915 NA NA
## 7916 NA NA
## 7917 NA NA
## 7918 NA NA
## 7919 NA NA
## 7920 NA NA
## 7921 NA NA
## 7922 NA NA
## 7923 NA NA
## 7924 NA NA
## 7925 NA NA
## 7926 NA NA
## 7927 41.886 67.026
## 7928 41.886 67.026
## 7929 41.886 67.026
## 7930 41.886 67.026
## 7931 41.886 67.026
## 7932 41.886 67.026
## 7933 NA NA
## 7934 NA NA
## 7935 NA NA
## 7936 NA NA
## 7937 NA NA
## 7938 NA NA
## 7939 NA NA
## 7940 NA NA
## 7941 NA NA
## 7942 NA NA
## 7943 NA NA
## 7944 NA NA
## 7945 NA NA
## 7946 NA NA
## 7947 NA NA
## 7948 NA NA
## 7949 NA NA
## 7950 NA NA
## 7951 24.924 37.607
## 7952 24.924 37.607
## 7953 24.924 37.607
## 7954 24.924 37.607
## 7955 24.924 37.607
## 7956 24.924 37.607
## 7957 2.362 32.450
## 7958 2.362 32.450
## 7959 2.362 32.450
## 7960 2.362 32.450
## 7961 2.362 32.450
## 7962 2.362 32.450
## 7963 NA NA
## 7964 NA NA
## 7965 NA NA
## 7966 NA NA
## 7967 NA NA
## 7968 NA NA
## 7969 1.935 14.887
## 7970 1.935 14.887
## 7971 1.935 14.887
## 7972 1.935 14.887
## 7973 1.935 14.887
## 7974 1.935 14.887
## 7975 NA NA
## 7976 NA NA
## 7977 NA NA
## 7978 NA NA
## 7979 NA NA
## 7980 NA NA
## 7981 NA NA
## 7982 NA NA
## 7983 NA NA
## 7984 NA NA
## 7985 NA NA
## 7986 NA NA
## 7987 NA NA
## 7988 NA NA
## 7989 NA NA
## 7990 NA NA
## 7991 NA NA
## 7992 NA NA
## 7993 NA NA
## 7994 NA NA
## 7995 NA NA
## 7996 NA NA
## 7997 NA NA
## 7998 NA NA
## 7999 NA NA
## 8000 NA NA
## 8001 NA NA
## 8002 NA NA
## 8003 NA NA
## 8004 NA NA
## 8005 NA NA
## 8006 NA NA
## 8007 NA NA
## 8008 NA NA
## 8009 NA NA
## 8010 NA NA
## 8011 NA NA
## 8012 NA NA
## 8013 NA NA
## 8014 NA NA
## 8015 NA NA
## 8016 NA NA
## 8017 NA NA
## 8018 NA NA
## 8019 NA NA
## 8020 NA NA
## 8021 NA NA
## 8022 NA NA
## 8023 NA NA
## 8024 NA NA
## 8025 NA NA
## 8026 NA NA
## 8027 NA NA
## 8028 NA NA
## 8029 8.318 28.302
## 8030 8.318 28.302
## 8031 8.318 28.302
## 8032 8.318 28.302
## 8033 8.318 28.302
## 8034 8.318 28.302
## 8035 NA NA
## 8036 NA NA
## 8037 NA NA
## 8038 NA NA
## 8039 NA NA
## 8040 NA NA
## 8041 NA NA
## 8042 NA NA
## 8043 NA NA
## 8044 NA NA
## 8045 NA NA
## 8046 NA NA
## 8047 NA NA
## 8048 NA NA
## 8049 NA NA
## 8050 NA NA
## 8051 NA NA
## 8052 NA NA
## 8053 NA NA
## 8054 NA NA
## 8055 NA NA
## 8056 NA NA
## 8057 NA NA
## 8058 NA NA
## 8059 NA NA
## 8060 NA NA
## 8061 NA NA
## 8062 NA NA
## 8063 NA NA
## 8064 NA NA
## 8065 NA NA
## 8066 NA NA
## 8067 NA NA
## 8068 NA NA
## 8069 NA NA
## 8070 NA NA
## 8071 NA NA
## 8072 NA NA
## 8073 NA NA
## 8074 NA NA
## 8075 NA NA
## 8076 NA NA
## 8077 NA NA
## 8078 NA NA
## 8079 NA NA
## 8080 NA NA
## 8081 NA NA
## 8082 NA NA
## 8083 35.444 54.267
## 8084 35.444 54.267
## 8085 35.444 54.267
## 8086 35.444 54.267
## 8087 35.444 54.267
## 8088 35.444 54.267
## 8089 15.807 34.083
## 8090 15.807 34.083
## 8091 15.807 34.083
## 8092 15.807 34.083
## 8093 15.807 34.083
## 8094 15.807 34.083
## 8095 NA NA
## 8096 NA NA
## 8097 NA NA
## 8098 NA NA
## 8099 NA NA
## 8100 NA NA
## 8101 NA NA
## 8102 NA NA
## 8103 NA NA
## 8104 NA NA
## 8105 NA NA
## 8106 NA NA
## 8107 13.863 31.708
## 8108 13.863 31.708
## 8109 13.863 31.708
## 8110 13.863 31.708
## 8111 13.863 31.708
## 8112 13.863 31.708
## 8113 NA NA
## 8114 NA NA
## 8115 NA NA
## 8116 NA NA
## 8117 NA NA
## 8118 NA NA
## 8119 NA NA
## 8120 NA NA
## 8121 NA NA
## 8122 NA NA
## 8123 NA NA
## 8124 NA NA
## 8125 NA NA
## 8126 NA NA
## 8127 NA NA
## 8128 NA NA
## 8129 NA NA
## 8130 NA NA
## 8131 1.511 33.167
## 8132 1.511 33.167
## 8133 1.511 33.167
## 8134 1.511 33.167
## 8135 1.511 33.167
## 8136 1.511 33.167
## 8137 NA NA
## 8138 NA NA
## 8139 NA NA
## 8140 NA NA
## 8141 NA NA
## 8142 NA NA
## 8143 20.414 36.670
## 8144 20.414 36.670
## 8145 20.414 36.670
## 8146 20.414 36.670
## 8147 20.414 36.670
## 8148 20.414 36.670
## 8149 NA NA
## 8150 NA NA
## 8151 NA NA
## 8152 NA NA
## 8153 NA NA
## 8154 NA NA
## 8155 64.474 79.776
## 8156 64.474 79.776
## 8157 64.474 79.776
## 8158 64.474 79.776
## 8159 64.474 79.776
## 8160 64.474 79.776
## 8161 NA NA
## 8162 NA NA
## 8163 NA NA
## 8164 NA NA
## 8165 NA NA
## 8166 NA NA
## 8167 NA NA
## 8168 NA NA
## 8169 NA NA
## 8170 NA NA
## 8171 NA NA
## 8172 NA NA
## 8173 6.372 40.394
## 8174 6.372 40.394
## 8175 6.372 40.394
## 8176 6.372 40.394
## 8177 6.372 40.394
## 8178 6.372 40.394
## 8179 NA NA
## 8180 NA NA
## 8181 NA NA
## 8182 NA NA
## 8183 NA NA
## 8184 NA NA
## 8185 NA NA
## 8186 NA NA
## 8187 NA NA
## 8188 NA NA
## 8189 NA NA
## 8190 NA NA
## 8191 NA NA
## 8192 NA NA
## 8193 NA NA
## 8194 NA NA
## 8195 NA NA
## 8196 NA NA
## 8197 NA NA
## 8198 NA NA
## 8199 NA NA
## 8200 NA NA
## 8201 NA NA
## 8202 NA NA
## 8203 NA NA
## 8204 NA NA
## 8205 NA NA
## 8206 NA NA
## 8207 NA NA
## 8208 NA NA
## 8209 NA NA
## 8210 NA NA
## 8211 NA NA
## 8212 NA NA
## 8213 NA NA
## 8214 NA NA
## 8215 5.933 33.841
## 8216 5.933 33.841
## 8217 5.933 33.841
## 8218 5.933 33.841
## 8219 5.933 33.841
## 8220 5.933 33.841
## 8221 NA NA
## 8222 NA NA
## 8223 NA NA
## 8224 NA NA
## 8225 NA NA
## 8226 NA NA
## 8227 25.132 37.158
## 8228 25.132 37.158
## 8229 25.132 37.158
## 8230 25.132 37.158
## 8231 25.132 37.158
## 8232 25.132 37.158
## 8233 NA NA
## 8234 NA NA
## 8235 NA NA
## 8236 NA NA
## 8237 NA NA
## 8238 NA NA
## 8239 NA NA
## 8240 NA NA
## 8241 NA NA
## 8242 NA NA
## 8243 NA NA
## 8244 NA NA
## 8245 17.029 31.860
## 8246 17.029 31.860
## 8247 17.029 31.860
## 8248 17.029 31.860
## 8249 17.029 31.860
## 8250 17.029 31.860
## 8251 NA NA
## 8252 NA NA
## 8253 NA NA
## 8254 NA NA
## 8255 NA NA
## 8256 NA NA
## 8257 NA NA
## 8258 NA NA
## 8259 NA NA
## 8260 NA NA
## 8261 NA NA
## 8262 NA NA
## 8263 7.873 18.265
## 8264 7.873 18.265
## 8265 7.873 18.265
## 8266 7.873 18.265
## 8267 7.873 18.265
## 8268 7.873 18.265
## 8269 NA NA
## 8270 NA NA
## 8271 NA NA
## 8272 NA NA
## 8273 NA NA
## 8274 NA NA
## 8275 NA NA
## 8276 NA NA
## 8277 NA NA
## 8278 NA NA
## 8279 NA NA
## 8280 NA NA
## 8281 NA NA
## 8282 NA NA
## 8283 NA NA
## 8284 NA NA
## 8285 NA NA
## 8286 NA NA
## 8287 NA NA
## 8288 NA NA
## 8289 NA NA
## 8290 NA NA
## 8291 NA NA
## 8292 NA NA
## 8293 29.456 43.113
## 8294 29.456 43.113
## 8295 29.456 43.113
## 8296 29.456 43.113
## 8297 29.456 43.113
## 8298 29.456 43.113
## 8299 NA NA
## 8300 NA NA
## 8301 NA NA
## 8302 NA NA
## 8303 NA NA
## 8304 NA NA
## 8305 NA NA
## 8306 NA NA
## 8307 NA NA
## 8308 NA NA
## 8309 NA NA
## 8310 NA NA
## 8311 13.775 74.938
## 8312 13.775 74.938
## 8313 13.775 74.938
## 8314 13.775 74.938
## 8315 13.775 74.938
## 8316 13.775 74.938
## 8317 NA NA
## 8318 NA NA
## 8319 NA NA
## 8320 NA NA
## 8321 NA NA
## 8322 NA NA
## 8323 NA NA
## 8324 NA NA
## 8325 NA NA
## 8326 NA NA
## 8327 NA NA
## 8328 NA NA
## 8329 NA NA
## 8330 NA NA
## 8331 NA NA
## 8332 NA NA
## 8333 NA NA
## 8334 NA NA
## 8335 NA NA
## 8336 NA NA
## 8337 NA NA
## 8338 NA NA
## 8339 NA NA
## 8340 NA NA
## 8341 NA NA
## 8342 NA NA
## 8343 NA NA
## 8344 NA NA
## 8345 NA NA
## 8346 NA NA
## 8347 41.609 55.530
## 8348 41.609 55.530
## 8349 41.609 55.530
## 8350 41.609 55.530
## 8351 41.609 55.530
## 8352 41.609 55.530
## 8353 NA NA
## 8354 NA NA
## 8355 NA NA
## 8356 NA NA
## 8357 NA NA
## 8358 NA NA
## 8359 NA NA
## 8360 NA NA
## 8361 NA NA
## 8362 NA NA
## 8363 NA NA
## 8364 NA NA
## 8365 NA NA
## 8366 NA NA
## 8367 NA NA
## 8368 NA NA
## 8369 NA NA
## 8370 NA NA
## 8371 NA NA
## 8372 NA NA
## 8373 NA NA
## 8374 NA NA
## 8375 NA NA
## 8376 NA NA
## 8377 24.908 38.875
## 8378 24.908 38.875
## 8379 24.908 38.875
## 8380 24.908 38.875
## 8381 24.908 38.875
## 8382 24.908 38.875
## 8383 13.533 28.432
## 8384 13.533 28.432
## 8385 13.533 28.432
## 8386 13.533 28.432
## 8387 13.533 28.432
## 8388 13.533 28.432
## 8389 17.803 26.186
## 8390 17.803 26.186
## 8391 17.803 26.186
## 8392 17.803 26.186
## 8393 17.803 26.186
## 8394 17.803 26.186
## 8395 NA NA
## 8396 NA NA
## 8397 NA NA
## 8398 NA NA
## 8399 NA NA
## 8400 NA NA
## 8401 10.987 43.041
## 8402 10.987 43.041
## 8403 10.987 43.041
## 8404 10.987 43.041
## 8405 10.987 43.041
## 8406 10.987 43.041
## 8407 13.181 41.740
## 8408 13.181 41.740
## 8409 13.181 41.740
## 8410 13.181 41.740
## 8411 13.181 41.740
## 8412 13.181 41.740
## 8413 39.655 79.415
## 8414 39.655 79.415
## 8415 39.655 79.415
## 8416 39.655 79.415
## 8417 39.655 79.415
## 8418 39.655 79.415
## 8419 NA NA
## 8420 NA NA
## 8421 NA NA
## 8422 NA NA
## 8423 NA NA
## 8424 NA NA
## 8425 NA NA
## 8426 NA NA
## 8427 NA NA
## 8428 NA NA
## 8429 NA NA
## 8430 NA NA
## 8431 NA NA
## 8432 NA NA
## 8433 NA NA
## 8434 NA NA
## 8435 NA NA
## 8436 NA NA
## 8437 NA NA
## 8438 NA NA
## 8439 NA NA
## 8440 NA NA
## 8441 NA NA
## 8442 NA NA
## 8443 NA NA
## 8444 NA NA
## 8445 NA NA
## 8446 NA NA
## 8447 NA NA
## 8448 NA NA
## 8449 NA NA
## 8450 NA NA
## 8451 NA NA
## 8452 NA NA
## 8453 NA NA
## 8454 NA NA
## 8455 NA NA
## 8456 NA NA
## 8457 NA NA
## 8458 NA NA
## 8459 NA NA
## 8460 NA NA
## 8461 NA NA
## 8462 NA NA
## 8463 NA NA
## 8464 NA NA
## 8465 NA NA
## 8466 NA NA
## 8467 NA NA
## 8468 NA NA
## 8469 NA NA
## 8470 NA NA
## 8471 NA NA
## 8472 NA NA
## 8473 NA NA
## 8474 NA NA
## 8475 NA NA
## 8476 NA NA
## 8477 NA NA
## 8478 NA NA
## 8479 NA NA
## 8480 NA NA
## 8481 NA NA
## 8482 NA NA
## 8483 NA NA
## 8484 NA NA
## 8485 NA NA
## 8486 NA NA
## 8487 NA NA
## 8488 NA NA
## 8489 NA NA
## 8490 NA NA
## 8491 0.977 54.205
## 8492 0.977 54.205
## 8493 0.977 54.205
## 8494 0.977 54.205
## 8495 0.977 54.205
## 8496 0.977 54.205
## 8497 NA NA
## 8498 NA NA
## 8499 NA NA
## 8500 NA NA
## 8501 NA NA
## 8502 NA NA
## 8503 14.806 34.440
## 8504 14.806 34.440
## 8505 14.806 34.440
## 8506 14.806 34.440
## 8507 14.806 34.440
## 8508 14.806 34.440
## 8509 NA NA
## 8510 NA NA
## 8511 NA NA
## 8512 NA NA
## 8513 NA NA
## 8514 NA NA
## 8515 NA NA
## 8516 NA NA
## 8517 NA NA
## 8518 NA NA
## 8519 NA NA
## 8520 NA NA
## 8521 NA NA
## 8522 NA NA
## 8523 NA NA
## 8524 NA NA
## 8525 NA NA
## 8526 NA NA
## 8527 NA NA
## 8528 NA NA
## 8529 NA NA
## 8530 NA NA
## 8531 NA NA
## 8532 NA NA
## 8533 2.375 67.260
## 8534 2.375 67.260
## 8535 2.375 67.260
## 8536 2.375 67.260
## 8537 2.375 67.260
## 8538 2.375 67.260
## 8539 NA NA
## 8540 NA NA
## 8541 NA NA
## 8542 NA NA
## 8543 NA NA
## 8544 NA NA
## 8545 NA NA
## 8546 NA NA
## 8547 NA NA
## 8548 NA NA
## 8549 NA NA
## 8550 NA NA
## 8551 NA NA
## 8552 NA NA
## 8553 NA NA
## 8554 NA NA
## 8555 NA NA
## 8556 NA NA
## 8557 NA NA
## 8558 NA NA
## 8559 NA NA
## 8560 NA NA
## 8561 NA NA
## 8562 NA NA
## 8563 8.767 69.896
## 8564 8.767 69.896
## 8565 8.767 69.896
## 8566 8.767 69.896
## 8567 8.767 69.896
## 8568 8.767 69.896
## 8569 18.614 60.703
## 8570 18.614 60.703
## 8571 18.614 60.703
## 8572 18.614 60.703
## 8573 18.614 60.703
## 8574 18.614 60.703
## 8575 NA NA
## 8576 NA NA
## 8577 NA NA
## 8578 NA NA
## 8579 NA NA
## 8580 NA NA
## 8581 NA NA
## 8582 NA NA
## 8583 NA NA
## 8584 NA NA
## 8585 NA NA
## 8586 NA NA
## 8587 NA NA
## 8588 NA NA
## 8589 NA NA
## 8590 NA NA
## 8591 NA NA
## 8592 NA NA
## 8593 NA NA
## 8594 NA NA
## 8595 NA NA
## 8596 NA NA
## 8597 NA NA
## 8598 NA NA
## 8599 NA NA
## 8600 NA NA
## 8601 NA NA
## 8602 NA NA
## 8603 NA NA
## 8604 NA NA
## 8605 NA NA
## 8606 NA NA
## 8607 NA NA
## 8608 NA NA
## 8609 NA NA
## 8610 NA NA
## 8611 NA NA
## 8612 NA NA
## 8613 NA NA
## 8614 NA NA
## 8615 NA NA
## 8616 NA NA
## 8617 NA NA
## 8618 NA NA
## 8619 NA NA
## 8620 NA NA
## 8621 NA NA
## 8622 NA NA
## 8623 NA NA
## 8624 NA NA
## 8625 NA NA
## 8626 NA NA
## 8627 NA NA
## 8628 NA NA
## 8629 NA NA
## 8630 NA NA
## 8631 NA NA
## 8632 NA NA
## 8633 NA NA
## 8634 NA NA
## 8635 NA NA
## 8636 NA NA
## 8637 NA NA
## 8638 NA NA
## 8639 NA NA
## 8640 NA NA
## 8641 22.186 40.522
## 8642 22.186 40.522
## 8643 22.186 40.522
## 8644 22.186 40.522
## 8645 22.186 40.522
## 8646 22.186 40.522
## 8647 8.307 42.019
## 8648 8.307 42.019
## 8649 8.307 42.019
## 8650 8.307 42.019
## 8651 8.307 42.019
## 8652 8.307 42.019
## 8653 NA NA
## 8654 NA NA
## 8655 NA NA
## 8656 NA NA
## 8657 NA NA
## 8658 NA NA
## 8659 NA NA
## 8660 NA NA
## 8661 NA NA
## 8662 NA NA
## 8663 NA NA
## 8664 NA NA
## 8665 NA NA
## 8666 NA NA
## 8667 NA NA
## 8668 NA NA
## 8669 NA NA
## 8670 NA NA
## 8671 NA NA
## 8672 NA NA
## 8673 NA NA
## 8674 NA NA
## 8675 NA NA
## 8676 NA NA
## 8677 NA NA
## 8678 NA NA
## 8679 NA NA
## 8680 NA NA
## 8681 NA NA
## 8682 NA NA
## 8683 NA NA
## 8684 NA NA
## 8685 NA NA
## 8686 NA NA
## 8687 NA NA
## 8688 NA NA
## 8689 NA NA
## 8690 NA NA
## 8691 NA NA
## 8692 NA NA
## 8693 NA NA
## 8694 NA NA
## 8695 NA NA
## 8696 NA NA
## 8697 NA NA
## 8698 NA NA
## 8699 NA NA
## 8700 NA NA
## 8701 210.202 249.743
## 8702 210.202 249.743
## 8703 210.202 249.743
## 8704 210.202 249.743
## 8705 210.202 249.743
## 8706 210.202 249.743
## 8707 NA NA
## 8708 NA NA
## 8709 NA NA
## 8710 NA NA
## 8711 NA NA
## 8712 NA NA
## 8713 6.667 22.303
## 8714 6.667 22.303
## 8715 6.667 22.303
## 8716 6.667 22.303
## 8717 6.667 22.303
## 8718 6.667 22.303
## 8719 NA NA
## 8720 NA NA
## 8721 NA NA
## 8722 NA NA
## 8723 NA NA
## 8724 NA NA
## 8725 NA NA
## 8726 NA NA
## 8727 NA NA
## 8728 NA NA
## 8729 NA NA
## 8730 NA NA
## 8731 NA NA
## 8732 NA NA
## 8733 NA NA
## 8734 NA NA
## 8735 NA NA
## 8736 NA NA
## 8737 NA NA
## 8738 NA NA
## 8739 NA NA
## 8740 NA NA
## 8741 NA NA
## 8742 NA NA
## 8743 5.100 40.730
## 8744 5.100 40.730
## 8745 5.100 40.730
## 8746 5.100 40.730
## 8747 5.100 40.730
## 8748 5.100 40.730
## 8749 NA NA
## 8750 NA NA
## 8751 NA NA
## 8752 NA NA
## 8753 NA NA
## 8754 NA NA
## 8755 48.400 107.794
## 8756 48.400 107.794
## 8757 48.400 107.794
## 8758 48.400 107.794
## 8759 48.400 107.794
## 8760 48.400 107.794
## 8761 NA NA
## 8762 NA NA
## 8763 NA NA
## 8764 NA NA
## 8765 NA NA
## 8766 NA NA
## 8767 25.367 58.507
## 8768 25.367 58.507
## 8769 25.367 58.507
## 8770 25.367 58.507
## 8771 25.367 58.507
## 8772 25.367 58.507
## 8773 26.101 39.178
## 8774 26.101 39.178
## 8775 26.101 39.178
## 8776 26.101 39.178
## 8777 26.101 39.178
## 8778 26.101 39.178
## 8779 NA NA
## 8780 NA NA
## 8781 NA NA
## 8782 NA NA
## 8783 NA NA
## 8784 NA NA
## 8785 NA NA
## 8786 NA NA
## 8787 NA NA
## 8788 NA NA
## 8789 NA NA
## 8790 NA NA
## 8791 1.205 88.376
## 8792 1.205 88.376
## 8793 1.205 88.376
## 8794 1.205 88.376
## 8795 1.205 88.376
## 8796 1.205 88.376
## 8797 NA NA
## 8798 NA NA
## 8799 NA NA
## 8800 NA NA
## 8801 NA NA
## 8802 NA NA
## 8803 46.726 70.836
## 8804 46.726 70.836
## 8805 46.726 70.836
## 8806 46.726 70.836
## 8807 46.726 70.836
## 8808 46.726 70.836
## 8809 NA NA
## 8810 NA NA
## 8811 NA NA
## 8812 NA NA
## 8813 NA NA
## 8814 NA NA
## 8815 6.551 75.154
## 8816 6.551 75.154
## 8817 6.551 75.154
## 8818 6.551 75.154
## 8819 6.551 75.154
## 8820 6.551 75.154
## 8821 24.216 49.301
## 8822 24.216 49.301
## 8823 24.216 49.301
## 8824 24.216 49.301
## 8825 24.216 49.301
## 8826 24.216 49.301
## 8827 NA NA
## 8828 NA NA
## 8829 NA NA
## 8830 NA NA
## 8831 NA NA
## 8832 NA NA
## 8833 NA NA
## 8834 NA NA
## 8835 NA NA
## 8836 NA NA
## 8837 NA NA
## 8838 NA NA
## 8839 NA NA
## 8840 NA NA
## 8841 NA NA
## 8842 NA NA
## 8843 NA NA
## 8844 NA NA
## 8845 NA NA
## 8846 NA NA
## 8847 NA NA
## 8848 NA NA
## 8849 NA NA
## 8850 NA NA
## 8851 NA NA
## 8852 NA NA
## 8853 NA NA
## 8854 NA NA
## 8855 NA NA
## 8856 NA NA
## 8857 NA NA
## 8858 NA NA
## 8859 NA NA
## 8860 NA NA
## 8861 NA NA
## 8862 NA NA
## 8863 NA NA
## 8864 NA NA
## 8865 NA NA
## 8866 NA NA
## 8867 NA NA
## 8868 NA NA
## 8869 21.973 46.543
## 8870 21.973 46.543
## 8871 21.973 46.543
## 8872 21.973 46.543
## 8873 21.973 46.543
## 8874 21.973 46.543
## 8875 NA NA
## 8876 NA NA
## 8877 NA NA
## 8878 NA NA
## 8879 NA NA
## 8880 NA NA
## 8881 28.431 49.205
## 8882 28.431 49.205
## 8883 28.431 49.205
## 8884 28.431 49.205
## 8885 28.431 49.205
## 8886 28.431 49.205
## 8887 72.472 110.949
## 8888 72.472 110.949
## 8889 72.472 110.949
## 8890 72.472 110.949
## 8891 72.472 110.949
## 8892 72.472 110.949
## 8893 NA NA
## 8894 NA NA
## 8895 NA NA
## 8896 NA NA
## 8897 NA NA
## 8898 NA NA
## 8899 8.947 63.437
## 8900 8.947 63.437
## 8901 8.947 63.437
## 8902 8.947 63.437
## 8903 8.947 63.437
## 8904 8.947 63.437
## 8905 37.448 79.755
## 8906 37.448 79.755
## 8907 37.448 79.755
## 8908 37.448 79.755
## 8909 37.448 79.755
## 8910 37.448 79.755
## 8911 NA NA
## 8912 NA NA
## 8913 NA NA
## 8914 NA NA
## 8915 NA NA
## 8916 NA NA
## 8917 NA NA
## 8918 NA NA
## 8919 NA NA
## 8920 NA NA
## 8921 NA NA
## 8922 NA NA
## 8923 NA NA
## 8924 NA NA
## 8925 NA NA
## 8926 NA NA
## 8927 NA NA
## 8928 NA NA
## 8929 NA NA
## 8930 NA NA
## 8931 NA NA
## 8932 NA NA
## 8933 NA NA
## 8934 NA NA
## 8935 NA NA
## 8936 NA NA
## 8937 NA NA
## 8938 NA NA
## 8939 NA NA
## 8940 NA NA
## 8941 NA NA
## 8942 NA NA
## 8943 NA NA
## 8944 NA NA
## 8945 NA NA
## 8946 NA NA
## 8947 NA NA
## 8948 NA NA
## 8949 NA NA
## 8950 NA NA
## 8951 NA NA
## 8952 NA NA
## 8953 NA NA
## 8954 NA NA
## 8955 NA NA
## 8956 NA NA
## 8957 NA NA
## 8958 NA NA
## 8959 NA NA
## 8960 NA NA
## 8961 NA NA
## 8962 NA NA
## 8963 NA NA
## 8964 NA NA
## 8965 NA NA
## 8966 NA NA
## 8967 NA NA
## 8968 NA NA
## 8969 NA NA
## 8970 NA NA
## 8971 NA NA
## 8972 NA NA
## 8973 NA NA
## 8974 NA NA
## 8975 NA NA
## 8976 NA NA
## 8977 NA NA
## 8978 NA NA
## 8979 NA NA
## 8980 NA NA
## 8981 NA NA
## 8982 NA NA
## 8983 NA NA
## 8984 NA NA
## 8985 NA NA
## 8986 NA NA
## 8987 NA NA
## 8988 NA NA
## 8989 NA NA
## 8990 NA NA
## 8991 NA NA
## 8992 NA NA
## 8993 NA NA
## 8994 NA NA
## 8995 NA NA
## 8996 NA NA
## 8997 NA NA
## 8998 NA NA
## 8999 NA NA
## 9000 NA NA
## 9001 NA NA
## 9002 NA NA
## 9003 NA NA
## 9004 NA NA
## 9005 NA NA
## 9006 NA NA
## 9007 NA NA
## 9008 NA NA
## 9009 NA NA
## 9010 NA NA
## 9011 NA NA
## 9012 NA NA
## 9013 9.619 55.433
## 9014 9.619 55.433
## 9015 9.619 55.433
## 9016 9.619 55.433
## 9017 9.619 55.433
## 9018 9.619 55.433
## 9019 NA NA
## 9020 NA NA
## 9021 NA NA
## 9022 NA NA
## 9023 NA NA
## 9024 NA NA
## 9025 NA NA
## 9026 NA NA
## 9027 NA NA
## 9028 NA NA
## 9029 NA NA
## 9030 NA NA
## 9031 10.711 66.144
## 9032 10.711 66.144
## 9033 10.711 66.144
## 9034 10.711 66.144
## 9035 10.711 66.144
## 9036 10.711 66.144
## 9037 NA NA
## 9038 NA NA
## 9039 NA NA
## 9040 NA NA
## 9041 NA NA
## 9042 NA NA
## 9043 NA NA
## 9044 NA NA
## 9045 NA NA
## 9046 NA NA
## 9047 NA NA
## 9048 NA NA
## 9049 NA NA
## 9050 NA NA
## 9051 NA NA
## 9052 NA NA
## 9053 NA NA
## 9054 NA NA
## 9055 NA NA
## 9056 NA NA
## 9057 NA NA
## 9058 NA NA
## 9059 NA NA
## 9060 NA NA
## 9061 20.742 54.163
## 9062 20.742 54.163
## 9063 20.742 54.163
## 9064 20.742 54.163
## 9065 20.742 54.163
## 9066 20.742 54.163
## 9067 NA NA
## 9068 NA NA
## 9069 NA NA
## 9070 NA NA
## 9071 NA NA
## 9072 NA NA
## 9073 2.549 91.143
## 9074 2.549 91.143
## 9075 2.549 91.143
## 9076 2.549 91.143
## 9077 2.549 91.143
## 9078 2.549 91.143
## 9079 NA NA
## 9080 NA NA
## 9081 NA NA
## 9082 NA NA
## 9083 NA NA
## 9084 NA NA
## 9085 NA NA
## 9086 NA NA
## 9087 NA NA
## 9088 NA NA
## 9089 NA NA
## 9090 NA NA
## 9091 NA NA
## 9092 NA NA
## 9093 NA NA
## 9094 NA NA
## 9095 NA NA
## 9096 NA NA
## 9097 48.356 56.370
## 9098 48.356 56.370
## 9099 48.356 56.370
## 9100 48.356 56.370
## 9101 48.356 56.370
## 9102 48.356 56.370
## 9103 NA NA
## 9104 NA NA
## 9105 NA NA
## 9106 NA NA
## 9107 NA NA
## 9108 NA NA
## 9109 8.141 24.564
## 9110 8.141 24.564
## 9111 8.141 24.564
## 9112 8.141 24.564
## 9113 8.141 24.564
## 9114 8.141 24.564
## 9115 NA NA
## 9116 NA NA
## 9117 NA NA
## 9118 NA NA
## 9119 NA NA
## 9120 NA NA
## 9121 NA NA
## 9122 NA NA
## 9123 NA NA
## 9124 NA NA
## 9125 NA NA
## 9126 NA NA
## 9127 NA NA
## 9128 NA NA
## 9129 NA NA
## 9130 NA NA
## 9131 NA NA
## 9132 NA NA
## 9133 NA NA
## 9134 NA NA
## 9135 NA NA
## 9136 NA NA
## 9137 NA NA
## 9138 NA NA
## 9139 NA NA
## 9140 NA NA
## 9141 NA NA
## 9142 NA NA
## 9143 NA NA
## 9144 NA NA
## 9145 NA NA
## 9146 NA NA
## 9147 NA NA
## 9148 NA NA
## 9149 NA NA
## 9150 NA NA
## 9151 NA NA
## 9152 NA NA
## 9153 NA NA
## 9154 NA NA
## 9155 NA NA
## 9156 NA NA
## 9157 NA NA
## 9158 NA NA
## 9159 NA NA
## 9160 NA NA
## 9161 NA NA
## 9162 NA NA
## 9163 NA NA
## 9164 NA NA
## 9165 NA NA
## 9166 NA NA
## 9167 NA NA
## 9168 NA NA
## 9169 NA NA
## 9170 NA NA
## 9171 NA NA
## 9172 NA NA
## 9173 NA NA
## 9174 NA NA
## 9175 17.472 39.531
## 9176 17.472 39.531
## 9177 17.472 39.531
## 9178 17.472 39.531
## 9179 17.472 39.531
## 9180 17.472 39.531
## 9181 NA NA
## 9182 NA NA
## 9183 NA NA
## 9184 NA NA
## 9185 NA NA
## 9186 NA NA
## 9187 NA NA
## 9188 NA NA
## 9189 NA NA
## 9190 NA NA
## 9191 NA NA
## 9192 NA NA
## 9193 NA NA
## 9194 NA NA
## 9195 NA NA
## 9196 NA NA
## 9197 NA NA
## 9198 NA NA
## 9199 NA NA
## 9200 NA NA
## 9201 NA NA
## 9202 NA NA
## 9203 NA NA
## 9204 NA NA
## 9205 NA NA
## 9206 NA NA
## 9207 NA NA
## 9208 NA NA
## 9209 NA NA
## 9210 NA NA
## 9211 2.648 39.645
## 9212 2.648 39.645
## 9213 2.648 39.645
## 9214 2.648 39.645
## 9215 2.648 39.645
## 9216 2.648 39.645
## 9217 NA NA
## 9218 NA NA
## 9219 NA NA
## 9220 NA NA
## 9221 NA NA
## 9222 NA NA
## 9223 NA NA
## 9224 NA NA
## 9225 NA NA
## 9226 NA NA
## 9227 NA NA
## 9228 NA NA
## 9229 NA NA
## 9230 NA NA
## 9231 NA NA
## 9232 NA NA
## 9233 NA NA
## 9234 NA NA
## 9235 NA NA
## 9236 NA NA
## 9237 NA NA
## 9238 NA NA
## 9239 NA NA
## 9240 NA NA
## 9241 NA NA
## 9242 NA NA
## 9243 NA NA
## 9244 NA NA
## 9245 NA NA
## 9246 NA NA
## 9247 NA NA
## 9248 NA NA
## 9249 NA NA
## 9250 NA NA
## 9251 NA NA
## 9252 NA NA
## 9253 NA NA
## 9254 NA NA
## 9255 NA NA
## 9256 NA NA
## 9257 NA NA
## 9258 NA NA
## 9259 NA NA
## 9260 NA NA
## 9261 NA NA
## 9262 NA NA
## 9263 NA NA
## 9264 NA NA
## 9265 49.679 96.589
## 9266 49.679 96.589
## 9267 49.679 96.589
## 9268 49.679 96.589
## 9269 49.679 96.589
## 9270 49.679 96.589
## 9271 NA NA
## 9272 NA NA
## 9273 NA NA
## 9274 NA NA
## 9275 NA NA
## 9276 NA NA
## 9277 NA NA
## 9278 NA NA
## 9279 NA NA
## 9280 NA NA
## 9281 NA NA
## 9282 NA NA
## 9283 NA NA
## 9284 NA NA
## 9285 NA NA
## 9286 NA NA
## 9287 NA NA
## 9288 NA NA
## 9289 NA NA
## 9290 NA NA
## 9291 NA NA
## 9292 NA NA
## 9293 NA NA
## 9294 NA NA
## 9295 NA NA
## 9296 NA NA
## 9297 NA NA
## 9298 NA NA
## 9299 NA NA
## 9300 NA NA
## 9301 NA NA
## 9302 NA NA
## 9303 NA NA
## 9304 NA NA
## 9305 NA NA
## 9306 NA NA
## 9307 NA NA
## 9308 NA NA
## 9309 NA NA
## 9310 NA NA
## 9311 NA NA
## 9312 NA NA
## 9313 NA NA
## 9314 NA NA
## 9315 NA NA
## 9316 NA NA
## 9317 NA NA
## 9318 NA NA
## 9319 17.529 121.938
## 9320 17.529 121.938
## 9321 17.529 121.938
## 9322 17.529 121.938
## 9323 17.529 121.938
## 9324 17.529 121.938
## 9325 20.144 83.477
## 9326 20.144 83.477
## 9327 20.144 83.477
## 9328 20.144 83.477
## 9329 20.144 83.477
## 9330 20.144 83.477
## 9331 NA NA
## 9332 NA NA
## 9333 NA NA
## 9334 NA NA
## 9335 NA NA
## 9336 NA NA
## 9337 NA NA
## 9338 NA NA
## 9339 NA NA
## 9340 NA NA
## 9341 NA NA
## 9342 NA NA
## 9343 93.375 105.862
## 9344 93.375 105.862
## 9345 93.375 105.862
## 9346 93.375 105.862
## 9347 93.375 105.862
## 9348 93.375 105.862
## 9349 NA NA
## 9350 NA NA
## 9351 NA NA
## 9352 NA NA
## 9353 NA NA
## 9354 NA NA
## 9355 NA NA
## 9356 NA NA
## 9357 NA NA
## 9358 NA NA
## 9359 NA NA
## 9360 NA NA
## 9361 NA NA
## 9362 NA NA
## 9363 NA NA
## 9364 NA NA
## 9365 NA NA
## 9366 NA NA
## 9367 NA NA
## 9368 NA NA
## 9369 NA NA
## 9370 NA NA
## 9371 NA NA
## 9372 NA NA
## 9373 NA NA
## 9374 NA NA
## 9375 NA NA
## 9376 NA NA
## 9377 NA NA
## 9378 NA NA
## 9379 NA NA
## 9380 NA NA
## 9381 NA NA
## 9382 NA NA
## 9383 NA NA
## 9384 NA NA
## 9385 NA NA
## 9386 NA NA
## 9387 NA NA
## 9388 NA NA
## 9389 NA NA
## 9390 NA NA
## 9391 NA NA
## 9392 NA NA
## 9393 NA NA
## 9394 NA NA
## 9395 NA NA
## 9396 NA NA
## 9397 NA NA
## 9398 NA NA
## 9399 NA NA
## 9400 NA NA
## 9401 NA NA
## 9402 NA NA
## 9403 3.161 22.003
## 9404 3.161 22.003
## 9405 3.161 22.003
## 9406 3.161 22.003
## 9407 3.161 22.003
## 9408 3.161 22.003
## 9409 NA NA
## 9410 NA NA
## 9411 NA NA
## 9412 NA NA
## 9413 NA NA
## 9414 NA NA
## 9415 NA NA
## 9416 NA NA
## 9417 NA NA
## 9418 NA NA
## 9419 NA NA
## 9420 NA NA
## 9421 NA NA
## 9422 NA NA
## 9423 NA NA
## 9424 NA NA
## 9425 NA NA
## 9426 NA NA
## 9427 NA NA
## 9428 NA NA
## 9429 NA NA
## 9430 NA NA
## 9431 NA NA
## 9432 NA NA
## 9433 NA NA
## 9434 NA NA
## 9435 NA NA
## 9436 NA NA
## 9437 NA NA
## 9438 NA NA
## 9439 NA NA
## 9440 NA NA
## 9441 NA NA
## 9442 NA NA
## 9443 NA NA
## 9444 NA NA
## 9445 NA NA
## 9446 NA NA
## 9447 NA NA
## 9448 NA NA
## 9449 NA NA
## 9450 NA NA
## 9451 NA NA
## 9452 NA NA
## 9453 NA NA
## 9454 NA NA
## 9455 NA NA
## 9456 NA NA
## 9457 NA NA
## 9458 NA NA
## 9459 NA NA
## 9460 NA NA
## 9461 NA NA
## 9462 NA NA
## 9463 NA NA
## 9464 NA NA
## 9465 NA NA
## 9466 NA NA
## 9467 NA NA
## 9468 NA NA
## 9469 1.487 40.833
## 9470 1.487 40.833
## 9471 1.487 40.833
## 9472 1.487 40.833
## 9473 1.487 40.833
## 9474 1.487 40.833
## 9475 7.438 12.063
## 9476 7.438 12.063
## 9477 7.438 12.063
## 9478 7.438 12.063
## 9479 7.438 12.063
## 9480 7.438 12.063
## 9481 NA NA
## 9482 NA NA
## 9483 NA NA
## 9484 NA NA
## 9485 NA NA
## 9486 NA NA
## 9487 8.536 39.085
## 9488 8.536 39.085
## 9489 8.536 39.085
## 9490 8.536 39.085
## 9491 8.536 39.085
## 9492 8.536 39.085
## 9493 NA NA
## 9494 NA NA
## 9495 NA NA
## 9496 NA NA
## 9497 NA NA
## 9498 NA NA
## 9499 12.098 19.962
## 9500 12.098 19.962
## 9501 12.098 19.962
## 9502 12.098 19.962
## 9503 12.098 19.962
## 9504 12.098 19.962
## 9505 NA NA
## 9506 NA NA
## 9507 NA NA
## 9508 NA NA
## 9509 NA NA
## 9510 NA NA
## 9511 NA NA
## 9512 NA NA
## 9513 NA NA
## 9514 NA NA
## 9515 NA NA
## 9516 NA NA
## 9517 NA NA
## 9518 NA NA
## 9519 NA NA
## 9520 NA NA
## 9521 NA NA
## 9522 NA NA
## 9523 NA NA
## 9524 NA NA
## 9525 NA NA
## 9526 NA NA
## 9527 NA NA
## 9528 NA NA
## 9529 NA NA
## 9530 NA NA
## 9531 NA NA
## 9532 NA NA
## 9533 NA NA
## 9534 NA NA
## 9535 NA NA
## 9536 NA NA
## 9537 NA NA
## 9538 NA NA
## 9539 NA NA
## 9540 NA NA
## 9541 NA NA
## 9542 NA NA
## 9543 NA NA
## 9544 NA NA
## 9545 NA NA
## 9546 NA NA
## 9547 NA NA
## 9548 NA NA
## 9549 NA NA
## 9550 NA NA
## 9551 NA NA
## 9552 NA NA
## 9553 NA NA
## 9554 NA NA
## 9555 NA NA
## 9556 NA NA
## 9557 NA NA
## 9558 NA NA
## 9559 7.749 38.297
## 9560 7.749 38.297
## 9561 7.749 38.297
## 9562 7.749 38.297
## 9563 7.749 38.297
## 9564 7.749 38.297
## 9565 7.144 18.707
## 9566 7.144 18.707
## 9567 7.144 18.707
## 9568 7.144 18.707
## 9569 7.144 18.707
## 9570 7.144 18.707
## 9571 NA NA
## 9572 NA NA
## 9573 NA NA
## 9574 NA NA
## 9575 NA NA
## 9576 NA NA
## 9577 NA NA
## 9578 NA NA
## 9579 NA NA
## 9580 NA NA
## 9581 NA NA
## 9582 NA NA
## 9583 25.678 44.866
## 9584 25.678 44.866
## 9585 25.678 44.866
## 9586 25.678 44.866
## 9587 25.678 44.866
## 9588 25.678 44.866
## 9589 NA NA
## 9590 NA NA
## 9591 NA NA
## 9592 NA NA
## 9593 NA NA
## 9594 NA NA
## 9595 NA NA
## 9596 NA NA
## 9597 NA NA
## 9598 NA NA
## 9599 NA NA
## 9600 NA NA
## 9601 NA NA
## 9602 NA NA
## 9603 NA NA
## 9604 NA NA
## 9605 NA NA
## 9606 NA NA
## 9607 11.999 28.785
## 9608 11.999 28.785
## 9609 11.999 28.785
## 9610 11.999 28.785
## 9611 11.999 28.785
## 9612 11.999 28.785
## 9613 NA NA
## 9614 NA NA
## 9615 NA NA
## 9616 NA NA
## 9617 NA NA
## 9618 NA NA
## 9619 NA NA
## 9620 NA NA
## 9621 NA NA
## 9622 NA NA
## 9623 NA NA
## 9624 NA NA
## 9625 NA NA
## 9626 NA NA
## 9627 NA NA
## 9628 NA NA
## 9629 NA NA
## 9630 NA NA
## 9631 22.351 30.843
## 9632 22.351 30.843
## 9633 22.351 30.843
## 9634 22.351 30.843
## 9635 22.351 30.843
## 9636 22.351 30.843
## 9637 NA NA
## 9638 NA NA
## 9639 NA NA
## 9640 NA NA
## 9641 NA NA
## 9642 NA NA
## 9643 NA NA
## 9644 NA NA
## 9645 NA NA
## 9646 NA NA
## 9647 NA NA
## 9648 NA NA
## 9649 NA NA
## 9650 NA NA
## 9651 NA NA
## 9652 NA NA
## 9653 NA NA
## 9654 NA NA
## 9655 14.701 38.724
## 9656 14.701 38.724
## 9657 14.701 38.724
## 9658 14.701 38.724
## 9659 14.701 38.724
## 9660 14.701 38.724
## 9661 NA NA
## 9662 NA NA
## 9663 NA NA
## 9664 NA NA
## 9665 NA NA
## 9666 NA NA
## 9667 NA NA
## 9668 NA NA
## 9669 NA NA
## 9670 NA NA
## 9671 NA NA
## 9672 NA NA
## 9673 NA NA
## 9674 NA NA
## 9675 NA NA
## 9676 NA NA
## 9677 NA NA
## 9678 NA NA
## 9679 NA NA
## 9680 NA NA
## 9681 NA NA
## 9682 NA NA
## 9683 NA NA
## 9684 NA NA
## 9685 NA NA
## 9686 NA NA
## 9687 NA NA
## 9688 NA NA
## 9689 NA NA
## 9690 NA NA
## 9691 NA NA
## 9692 NA NA
## 9693 NA NA
## 9694 NA NA
## 9695 NA NA
## 9696 NA NA
## 9697 NA NA
## 9698 NA NA
## 9699 NA NA
## 9700 NA NA
## 9701 NA NA
## 9702 NA NA
## 9703 NA NA
## 9704 NA NA
## 9705 NA NA
## 9706 NA NA
## 9707 NA NA
## 9708 NA NA
## 9709 NA NA
## 9710 NA NA
## 9711 NA NA
## 9712 NA NA
## 9713 NA NA
## 9714 NA NA
## 9715 30.869 52.860
## 9716 30.869 52.860
## 9717 30.869 52.860
## 9718 30.869 52.860
## 9719 30.869 52.860
## 9720 30.869 52.860
## 9721 NA NA
## 9722 NA NA
## 9723 NA NA
## 9724 NA NA
## 9725 NA NA
## 9726 NA NA
## 9727 NA NA
## 9728 NA NA
## 9729 NA NA
## 9730 NA NA
## 9731 NA NA
## 9732 NA NA
## 9733 NA NA
## 9734 NA NA
## 9735 NA NA
## 9736 NA NA
## 9737 NA NA
## 9738 NA NA
## 9739 NA NA
## 9740 NA NA
## 9741 NA NA
## 9742 NA NA
## 9743 NA NA
## 9744 NA NA
## 9745 NA NA
## 9746 NA NA
## 9747 NA NA
## 9748 NA NA
## 9749 NA NA
## 9750 NA NA
## 9751 12.841 22.320
## 9752 12.841 22.320
## 9753 12.841 22.320
## 9754 12.841 22.320
## 9755 12.841 22.320
## 9756 12.841 22.320
## 9757 NA NA
## 9758 NA NA
## 9759 NA NA
## 9760 NA NA
## 9761 NA NA
## 9762 NA NA
## 9763 NA NA
## 9764 NA NA
## 9765 NA NA
## 9766 NA NA
## 9767 NA NA
## 9768 NA NA
## 9769 NA NA
## 9770 NA NA
## 9771 NA NA
## 9772 NA NA
## 9773 NA NA
## 9774 NA NA
## 9775 NA NA
## 9776 NA NA
## 9777 NA NA
## 9778 NA NA
## 9779 NA NA
## 9780 NA NA
## 9781 13.508 24.672
## 9782 13.508 24.672
## 9783 13.508 24.672
## 9784 13.508 24.672
## 9785 13.508 24.672
## 9786 13.508 24.672
## 9787 NA NA
## 9788 NA NA
## 9789 NA NA
## 9790 NA NA
## 9791 NA NA
## 9792 NA NA
## 9793 24.911 33.030
## 9794 24.911 33.030
## 9795 24.911 33.030
## 9796 24.911 33.030
## 9797 24.911 33.030
## 9798 24.911 33.030
## 9799 NA NA
## 9800 NA NA
## 9801 NA NA
## 9802 NA NA
## 9803 NA NA
## 9804 NA NA
## 9805 NA NA
## 9806 NA NA
## 9807 NA NA
## 9808 NA NA
## 9809 NA NA
## 9810 NA NA
## 9811 21.802 56.033
## 9812 21.802 56.033
## 9813 21.802 56.033
## 9814 21.802 56.033
## 9815 21.802 56.033
## 9816 21.802 56.033
## 9817 NA NA
## 9818 NA NA
## 9819 NA NA
## 9820 NA NA
## 9821 NA NA
## 9822 NA NA
## 9823 NA NA
## 9824 NA NA
## 9825 NA NA
## 9826 NA NA
## 9827 NA NA
## 9828 NA NA
## 9829 NA NA
## 9830 NA NA
## 9831 NA NA
## 9832 NA NA
## 9833 NA NA
## 9834 NA NA
## 9835 NA NA
## 9836 NA NA
## 9837 NA NA
## 9838 NA NA
## 9839 NA NA
## 9840 NA NA
## 9841 NA NA
## 9842 NA NA
## 9843 NA NA
## 9844 NA NA
## 9845 NA NA
## 9846 NA NA
## 9847 NA NA
## 9848 NA NA
## 9849 NA NA
## 9850 NA NA
## 9851 NA NA
## 9852 NA NA
## 9853 NA NA
## 9854 NA NA
## 9855 NA NA
## 9856 NA NA
## 9857 NA NA
## 9858 NA NA
## 9859 NA NA
## 9860 NA NA
## 9861 NA NA
## 9862 NA NA
## 9863 NA NA
## 9864 NA NA
## 9865 NA NA
## 9866 NA NA
## 9867 NA NA
## 9868 NA NA
## 9869 NA NA
## 9870 NA NA
## 9871 NA NA
## 9872 NA NA
## 9873 NA NA
## 9874 NA NA
## 9875 NA NA
## 9876 NA NA
## 9877 NA NA
## 9878 NA NA
## 9879 NA NA
## 9880 NA NA
## 9881 NA NA
## 9882 NA NA
## 9883 73.517 98.046
## 9884 73.517 98.046
## 9885 73.517 98.046
## 9886 73.517 98.046
## 9887 73.517 98.046
## 9888 73.517 98.046
## 9889 18.466 109.624
## 9890 18.466 109.624
## 9891 18.466 109.624
## 9892 18.466 109.624
## 9893 18.466 109.624
## 9894 18.466 109.624
## 9895 NA NA
## 9896 NA NA
## 9897 NA NA
## 9898 NA NA
## 9899 NA NA
## 9900 NA NA
## 9901 57.381 66.277
## 9902 57.381 66.277
## 9903 57.381 66.277
## 9904 57.381 66.277
## 9905 57.381 66.277
## 9906 57.381 66.277
## 9907 NA NA
## 9908 NA NA
## 9909 NA NA
## 9910 NA NA
## 9911 NA NA
## 9912 NA NA
## 9913 NA NA
## 9914 NA NA
## 9915 NA NA
## 9916 NA NA
## 9917 NA NA
## 9918 NA NA
## 9919 NA NA
## 9920 NA NA
## 9921 NA NA
## 9922 NA NA
## 9923 NA NA
## 9924 NA NA
## 9925 NA NA
## 9926 NA NA
## 9927 NA NA
## 9928 NA NA
## 9929 NA NA
## 9930 NA NA
## 9931 31.484 61.516
## 9932 31.484 61.516
## 9933 31.484 61.516
## 9934 31.484 61.516
## 9935 31.484 61.516
## 9936 31.484 61.516
## 9937 NA NA
## 9938 NA NA
## 9939 NA NA
## 9940 NA NA
## 9941 NA NA
## 9942 NA NA
## 9943 NA NA
## 9944 NA NA
## 9945 NA NA
## 9946 NA NA
## 9947 NA NA
## 9948 NA NA
## 9949 50.175 61.924
## 9950 50.175 61.924
## 9951 50.175 61.924
## 9952 50.175 61.924
## 9953 50.175 61.924
## 9954 50.175 61.924
## 9955 NA NA
## 9956 NA NA
## 9957 NA NA
## 9958 NA NA
## 9959 NA NA
## 9960 NA NA
## 9961 NA NA
## 9962 NA NA
## 9963 NA NA
## 9964 NA NA
## 9965 NA NA
## 9966 NA NA
## 9967 NA NA
## 9968 NA NA
## 9969 NA NA
## 9970 NA NA
## 9971 NA NA
## 9972 NA NA
## 9973 NA NA
## 9974 NA NA
## 9975 NA NA
## 9976 NA NA
## 9977 NA NA
## 9978 NA NA
## 9979 NA NA
## 9980 NA NA
## 9981 NA NA
## 9982 NA NA
## 9983 NA NA
## 9984 NA NA
## 9985 NA NA
## 9986 NA NA
## 9987 NA NA
## 9988 NA NA
## 9989 NA NA
## 9990 NA NA
## 9991 NA NA
## 9992 NA NA
## 9993 NA NA
## 9994 NA NA
## 9995 NA NA
## 9996 NA NA
## 9997 NA NA
## 9998 NA NA
## 9999 NA NA
## 10000 NA NA
## 10001 NA NA
## 10002 NA NA
## 10003 NA NA
## 10004 NA NA
## 10005 NA NA
## 10006 NA NA
## 10007 NA NA
## 10008 NA NA
## 10009 NA NA
## 10010 NA NA
## 10011 NA NA
## 10012 NA NA
## 10013 NA NA
## 10014 NA NA
## 10015 2.509 58.482
## 10016 2.509 58.482
## 10017 2.509 58.482
## 10018 2.509 58.482
## 10019 2.509 58.482
## 10020 2.509 58.482
## 10021 NA NA
## 10022 NA NA
## 10023 NA NA
## 10024 NA NA
## 10025 NA NA
## 10026 NA NA
## 10027 NA NA
## 10028 NA NA
## 10029 NA NA
## 10030 NA NA
## 10031 NA NA
## 10032 NA NA
## 10033 NA NA
## 10034 NA NA
## 10035 NA NA
## 10036 NA NA
## 10037 NA NA
## 10038 NA NA
## 10039 NA NA
## 10040 NA NA
## 10041 NA NA
## 10042 NA NA
## 10043 NA NA
## 10044 NA NA
## 10045 NA NA
## 10046 NA NA
## 10047 NA NA
## 10048 NA NA
## 10049 NA NA
## 10050 NA NA
## 10051 9.915 23.302
## 10052 9.915 23.302
## 10053 9.915 23.302
## 10054 9.915 23.302
## 10055 9.915 23.302
## 10056 9.915 23.302
## 10057 27.967 43.434
## 10058 27.967 43.434
## 10059 27.967 43.434
## 10060 27.967 43.434
## 10061 27.967 43.434
## 10062 27.967 43.434
## 10063 NA NA
## 10064 NA NA
## 10065 NA NA
## 10066 NA NA
## 10067 NA NA
## 10068 NA NA
## 10069 NA NA
## 10070 NA NA
## 10071 NA NA
## 10072 NA NA
## 10073 NA NA
## 10074 NA NA
## 10075 NA NA
## 10076 NA NA
## 10077 NA NA
## 10078 NA NA
## 10079 NA NA
## 10080 NA NA
## 10081 15.014 29.370
## 10082 15.014 29.370
## 10083 15.014 29.370
## 10084 15.014 29.370
## 10085 15.014 29.370
## 10086 15.014 29.370
## 10087 12.857 138.529
## 10088 12.857 138.529
## 10089 12.857 138.529
## 10090 12.857 138.529
## 10091 12.857 138.529
## 10092 12.857 138.529
## 10093 NA NA
## 10094 NA NA
## 10095 NA NA
## 10096 NA NA
## 10097 NA NA
## 10098 NA NA
## 10099 11.201 50.165
## 10100 11.201 50.165
## 10101 11.201 50.165
## 10102 11.201 50.165
## 10103 11.201 50.165
## 10104 11.201 50.165
## 10105 1.675 7.686
## 10106 1.675 7.686
## 10107 1.675 7.686
## 10108 1.675 7.686
## 10109 1.675 7.686
## 10110 1.675 7.686
## 10111 NA NA
## 10112 NA NA
## 10113 NA NA
## 10114 NA NA
## 10115 NA NA
## 10116 NA NA
## 10117 13.370 52.158
## 10118 13.370 52.158
## 10119 13.370 52.158
## 10120 13.370 52.158
## 10121 13.370 52.158
## 10122 13.370 52.158
## 10123 10.224 23.312
## 10124 10.224 23.312
## 10125 10.224 23.312
## 10126 10.224 23.312
## 10127 10.224 23.312
## 10128 10.224 23.312
## 10129 NA NA
## 10130 NA NA
## 10131 NA NA
## 10132 NA NA
## 10133 NA NA
## 10134 NA NA
## 10135 NA NA
## 10136 NA NA
## 10137 NA NA
## 10138 NA NA
## 10139 NA NA
## 10140 NA NA
## 10141 NA NA
## 10142 NA NA
## 10143 NA NA
## 10144 NA NA
## 10145 NA NA
## 10146 NA NA
## 10147 NA NA
## 10148 NA NA
## 10149 NA NA
## 10150 NA NA
## 10151 NA NA
## 10152 NA NA
## 10153 23.176 33.464
## 10154 23.176 33.464
## 10155 23.176 33.464
## 10156 23.176 33.464
## 10157 23.176 33.464
## 10158 23.176 33.464
## 10159 10.275 61.747
## 10160 10.275 61.747
## 10161 10.275 61.747
## 10162 10.275 61.747
## 10163 10.275 61.747
## 10164 10.275 61.747
## 10165 23.172 31.122
## 10166 23.172 31.122
## 10167 23.172 31.122
## 10168 23.172 31.122
## 10169 23.172 31.122
## 10170 23.172 31.122
## 10171 7.820 16.971
## 10172 7.820 16.971
## 10173 7.820 16.971
## 10174 7.820 16.971
## 10175 7.820 16.971
## 10176 7.820 16.971
## 10177 NA NA
## 10178 NA NA
## 10179 NA NA
## 10180 NA NA
## 10181 NA NA
## 10182 NA NA
## 10183 36.606 48.688
## 10184 36.606 48.688
## 10185 36.606 48.688
## 10186 36.606 48.688
## 10187 36.606 48.688
## 10188 36.606 48.688
## 10189 NA NA
## 10190 NA NA
## 10191 NA NA
## 10192 NA NA
## 10193 NA NA
## 10194 NA NA
## 10195 NA NA
## 10196 NA NA
## 10197 NA NA
## 10198 NA NA
## 10199 NA NA
## 10200 NA NA
## 10201 NA NA
## 10202 NA NA
## 10203 NA NA
## 10204 NA NA
## 10205 NA NA
## 10206 NA NA
## 10207 NA NA
## 10208 NA NA
## 10209 NA NA
## 10210 NA NA
## 10211 NA NA
## 10212 NA NA
## 10213 43.170 66.606
## 10214 43.170 66.606
## 10215 43.170 66.606
## 10216 43.170 66.606
## 10217 43.170 66.606
## 10218 43.170 66.606
## 10219 NA NA
## 10220 NA NA
## 10221 NA NA
## 10222 NA NA
## 10223 NA NA
## 10224 NA NA
## 10225 9.134 62.302
## 10226 9.134 62.302
## 10227 9.134 62.302
## 10228 9.134 62.302
## 10229 9.134 62.302
## 10230 9.134 62.302
## 10231 14.248 17.647
## 10232 14.248 17.647
## 10233 14.248 17.647
## 10234 14.248 17.647
## 10235 14.248 17.647
## 10236 14.248 17.647
## 10237 NA NA
## 10238 NA NA
## 10239 NA NA
## 10240 NA NA
## 10241 NA NA
## 10242 NA NA
## 10243 NA NA
## 10244 NA NA
## 10245 NA NA
## 10246 NA NA
## 10247 NA NA
## 10248 NA NA
## 10249 NA NA
## 10250 NA NA
## 10251 NA NA
## 10252 NA NA
## 10253 NA NA
## 10254 NA NA
## 10255 2.293 69.098
## 10256 2.293 69.098
## 10257 2.293 69.098
## 10258 2.293 69.098
## 10259 2.293 69.098
## 10260 2.293 69.098
## 10261 22.404 39.202
## 10262 22.404 39.202
## 10263 22.404 39.202
## 10264 22.404 39.202
## 10265 22.404 39.202
## 10266 22.404 39.202
## 10267 5.438 24.493
## 10268 5.438 24.493
## 10269 5.438 24.493
## 10270 5.438 24.493
## 10271 5.438 24.493
## 10272 5.438 24.493
## 10273 NA NA
## 10274 NA NA
## 10275 NA NA
## 10276 NA NA
## 10277 NA NA
## 10278 NA NA
## 10279 9.482 20.202
## 10280 9.482 20.202
## 10281 9.482 20.202
## 10282 9.482 20.202
## 10283 9.482 20.202
## 10284 9.482 20.202
## 10285 NA NA
## 10286 NA NA
## 10287 NA NA
## 10288 NA NA
## 10289 NA NA
## 10290 NA NA
## 10291 NA NA
## 10292 NA NA
## 10293 NA NA
## 10294 NA NA
## 10295 NA NA
## 10296 NA NA
## 10297 NA NA
## 10298 NA NA
## 10299 NA NA
## 10300 NA NA
## 10301 NA NA
## 10302 NA NA
## 10303 NA NA
## 10304 NA NA
## 10305 NA NA
## 10306 NA NA
## 10307 NA NA
## 10308 NA NA
## 10309 NA NA
## 10310 NA NA
## 10311 NA NA
## 10312 NA NA
## 10313 NA NA
## 10314 NA NA
## 10315 NA NA
## 10316 NA NA
## 10317 NA NA
## 10318 NA NA
## 10319 NA NA
## 10320 NA NA
## 10321 30.641 57.894
## 10322 30.641 57.894
## 10323 30.641 57.894
## 10324 30.641 57.894
## 10325 30.641 57.894
## 10326 30.641 57.894
## 10327 NA NA
## 10328 NA NA
## 10329 NA NA
## 10330 NA NA
## 10331 NA NA
## 10332 NA NA
## 10333 NA NA
## 10334 NA NA
## 10335 NA NA
## 10336 NA NA
## 10337 NA NA
## 10338 NA NA
## 10339 NA NA
## 10340 NA NA
## 10341 NA NA
## 10342 NA NA
## 10343 NA NA
## 10344 NA NA
## 10345 NA NA
## 10346 NA NA
## 10347 NA NA
## 10348 NA NA
## 10349 NA NA
## 10350 NA NA
## 10351 NA NA
## 10352 NA NA
## 10353 NA NA
## 10354 NA NA
## 10355 NA NA
## 10356 NA NA
## 10357 NA NA
## 10358 NA NA
## 10359 NA NA
## 10360 NA NA
## 10361 NA NA
## 10362 NA NA
## 10363 NA NA
## 10364 NA NA
## 10365 NA NA
## 10366 NA NA
## 10367 NA NA
## 10368 NA NA
## 10369 NA NA
## 10370 NA NA
## 10371 NA NA
## 10372 NA NA
## 10373 NA NA
## 10374 NA NA
## 10375 NA NA
## 10376 NA NA
## 10377 NA NA
## 10378 NA NA
## 10379 NA NA
## 10380 NA NA
## 10381 33.195 89.770
## 10382 33.195 89.770
## 10383 33.195 89.770
## 10384 33.195 89.770
## 10385 33.195 89.770
## 10386 33.195 89.770
## 10387 NA NA
## 10388 NA NA
## 10389 NA NA
## 10390 NA NA
## 10391 NA NA
## 10392 NA NA
## 10393 NA NA
## 10394 NA NA
## 10395 NA NA
## 10396 NA NA
## 10397 NA NA
## 10398 NA NA
## 10399 NA NA
## 10400 NA NA
## 10401 NA NA
## 10402 NA NA
## 10403 NA NA
## 10404 NA NA
## 10405 NA NA
## 10406 NA NA
## 10407 NA NA
## 10408 NA NA
## 10409 NA NA
## 10410 NA NA
## 10411 NA NA
## 10412 NA NA
## 10413 NA NA
## 10414 NA NA
## 10415 NA NA
## 10416 NA NA
## 10417 11.575 22.999
## 10418 11.575 22.999
## 10419 11.575 22.999
## 10420 11.575 22.999
## 10421 11.575 22.999
## 10422 11.575 22.999
## 10423 27.089 60.100
## 10424 27.089 60.100
## 10425 27.089 60.100
## 10426 27.089 60.100
## 10427 27.089 60.100
## 10428 27.089 60.100
## 10429 NA NA
## 10430 NA NA
## 10431 NA NA
## 10432 NA NA
## 10433 NA NA
## 10434 NA NA
## 10435 9.861 16.813
## 10436 9.861 16.813
## 10437 9.861 16.813
## 10438 9.861 16.813
## 10439 9.861 16.813
## 10440 9.861 16.813
## 10441 NA NA
## 10442 NA NA
## 10443 NA NA
## 10444 NA NA
## 10445 NA NA
## 10446 NA NA
## 10447 NA NA
## 10448 NA NA
## 10449 NA NA
## 10450 NA NA
## 10451 NA NA
## 10452 NA NA
## 10453 15.060 21.515
## 10454 15.060 21.515
## 10455 15.060 21.515
## 10456 15.060 21.515
## 10457 15.060 21.515
## 10458 15.060 21.515
## 10459 NA NA
## 10460 NA NA
## 10461 NA NA
## 10462 NA NA
## 10463 NA NA
## 10464 NA NA
## 10465 NA NA
## 10466 NA NA
## 10467 NA NA
## 10468 NA NA
## 10469 NA NA
## 10470 NA NA
## 10471 NA NA
## 10472 NA NA
## 10473 NA NA
## 10474 NA NA
## 10475 NA NA
## 10476 NA NA
## 10477 14.612 29.590
## 10478 14.612 29.590
## 10479 14.612 29.590
## 10480 14.612 29.590
## 10481 14.612 29.590
## 10482 14.612 29.590
## 10483 24.512 44.662
## 10484 24.512 44.662
## 10485 24.512 44.662
## 10486 24.512 44.662
## 10487 24.512 44.662
## 10488 24.512 44.662
## 10489 NA NA
## 10490 NA NA
## 10491 NA NA
## 10492 NA NA
## 10493 NA NA
## 10494 NA NA
## 10495 NA NA
## 10496 NA NA
## 10497 NA NA
## 10498 NA NA
## 10499 NA NA
## 10500 NA NA
## 10501 NA NA
## 10502 NA NA
## 10503 NA NA
## 10504 NA NA
## 10505 NA NA
## 10506 NA NA
## 10507 NA NA
## 10508 NA NA
## 10509 NA NA
## 10510 NA NA
## 10511 NA NA
## 10512 NA NA
## 10513 NA NA
## 10514 NA NA
## 10515 NA NA
## 10516 NA NA
## 10517 NA NA
## 10518 NA NA
## 10519 NA NA
## 10520 NA NA
## 10521 NA NA
## 10522 NA NA
## 10523 NA NA
## 10524 NA NA
## 10525 NA NA
## 10526 NA NA
## 10527 NA NA
## 10528 NA NA
## 10529 NA NA
## 10530 NA NA
## 10531 13.857 32.002
## 10532 13.857 32.002
## 10533 13.857 32.002
## 10534 13.857 32.002
## 10535 13.857 32.002
## 10536 13.857 32.002
## 10537 NA NA
## 10538 NA NA
## 10539 NA NA
## 10540 NA NA
## 10541 NA NA
## 10542 NA NA
## 10543 NA NA
## 10544 NA NA
## 10545 NA NA
## 10546 NA NA
## 10547 NA NA
## 10548 NA NA
## 10549 11.445 38.073
## 10550 11.445 38.073
## 10551 11.445 38.073
## 10552 11.445 38.073
## 10553 11.445 38.073
## 10554 11.445 38.073
## 10555 10.428 77.341
## 10556 10.428 77.341
## 10557 10.428 77.341
## 10558 10.428 77.341
## 10559 10.428 77.341
## 10560 10.428 77.341
## 10561 NA NA
## 10562 NA NA
## 10563 NA NA
## 10564 NA NA
## 10565 NA NA
## 10566 NA NA
## 10567 NA NA
## 10568 NA NA
## 10569 NA NA
## 10570 NA NA
## 10571 NA NA
## 10572 NA NA
## 10573 NA NA
## 10574 NA NA
## 10575 NA NA
## 10576 NA NA
## 10577 NA NA
## 10578 NA NA
## 10579 NA NA
## 10580 NA NA
## 10581 NA NA
## 10582 NA NA
## 10583 NA NA
## 10584 NA NA
## 10585 NA NA
## 10586 NA NA
## 10587 NA NA
## 10588 NA NA
## 10589 NA NA
## 10590 NA NA
## 10591 NA NA
## 10592 NA NA
## 10593 NA NA
## 10594 NA NA
## 10595 NA NA
## 10596 NA NA
## 10597 NA NA
## 10598 NA NA
## 10599 NA NA
## 10600 NA NA
## 10601 NA NA
## 10602 NA NA
## 10603 NA NA
## 10604 NA NA
## 10605 NA NA
## 10606 NA NA
## 10607 NA NA
## 10608 NA NA
## 10609 NA NA
## 10610 NA NA
## 10611 NA NA
## 10612 NA NA
## 10613 NA NA
## 10614 NA NA
## 10615 NA NA
## 10616 NA NA
## 10617 NA NA
## 10618 NA NA
## 10619 NA NA
## 10620 NA NA
## 10621 3.210 74.110
## 10622 3.210 74.110
## 10623 3.210 74.110
## 10624 3.210 74.110
## 10625 3.210 74.110
## 10626 3.210 74.110
## 10627 18.138 36.533
## 10628 18.138 36.533
## 10629 18.138 36.533
## 10630 18.138 36.533
## 10631 18.138 36.533
## 10632 18.138 36.533
## 10633 23.815 38.996
## 10634 23.815 38.996
## 10635 23.815 38.996
## 10636 23.815 38.996
## 10637 23.815 38.996
## 10638 23.815 38.996
## 10639 NA NA
## 10640 NA NA
## 10641 NA NA
## 10642 NA NA
## 10643 NA NA
## 10644 NA NA
## 10645 NA NA
## 10646 NA NA
## 10647 NA NA
## 10648 NA NA
## 10649 NA NA
## 10650 NA NA
## 10651 NA NA
## 10652 NA NA
## 10653 NA NA
## 10654 NA NA
## 10655 NA NA
## 10656 NA NA
## 10657 NA NA
## 10658 NA NA
## 10659 NA NA
## 10660 NA NA
## 10661 NA NA
## 10662 NA NA
## 10663 NA NA
## 10664 NA NA
## 10665 NA NA
## 10666 NA NA
## 10667 NA NA
## 10668 NA NA
## 10669 NA NA
## 10670 NA NA
## 10671 NA NA
## 10672 NA NA
## 10673 NA NA
## 10674 NA NA
## 10675 16.786 30.526
## 10676 16.786 30.526
## 10677 16.786 30.526
## 10678 16.786 30.526
## 10679 16.786 30.526
## 10680 16.786 30.526
## 10681 NA NA
## 10682 NA NA
## 10683 NA NA
## 10684 NA NA
## 10685 NA NA
## 10686 NA NA
## 10687 NA NA
## 10688 NA NA
## 10689 NA NA
## 10690 NA NA
## 10691 NA NA
## 10692 NA NA
## 10693 NA NA
## 10694 NA NA
## 10695 NA NA
## 10696 NA NA
## 10697 NA NA
## 10698 NA NA
## 10699 11.584 25.576
## 10700 11.584 25.576
## 10701 11.584 25.576
## 10702 11.584 25.576
## 10703 11.584 25.576
## 10704 11.584 25.576
## 10705 NA NA
## 10706 NA NA
## 10707 NA NA
## 10708 NA NA
## 10709 NA NA
## 10710 NA NA
## 10711 NA NA
## 10712 NA NA
## 10713 NA NA
## 10714 NA NA
## 10715 NA NA
## 10716 NA NA
## 10717 NA NA
## 10718 NA NA
## 10719 NA NA
## 10720 NA NA
## 10721 NA NA
## 10722 NA NA
## 10723 2.880 20.025
## 10724 2.880 20.025
## 10725 2.880 20.025
## 10726 2.880 20.025
## 10727 2.880 20.025
## 10728 2.880 20.025
## 10729 NA NA
## 10730 NA NA
## 10731 NA NA
## 10732 NA NA
## 10733 NA NA
## 10734 NA NA
## 10735 NA NA
## 10736 NA NA
## 10737 NA NA
## 10738 NA NA
## 10739 NA NA
## 10740 NA NA
## 10741 NA NA
## 10742 NA NA
## 10743 NA NA
## 10744 NA NA
## 10745 NA NA
## 10746 NA NA
## 10747 NA NA
## 10748 NA NA
## 10749 NA NA
## 10750 NA NA
## 10751 NA NA
## 10752 NA NA
## 10753 16.347 36.491
## 10754 16.347 36.491
## 10755 16.347 36.491
## 10756 16.347 36.491
## 10757 16.347 36.491
## 10758 16.347 36.491
## 10759 NA NA
## 10760 NA NA
## 10761 NA NA
## 10762 NA NA
## 10763 NA NA
## 10764 NA NA
## 10765 NA NA
## 10766 NA NA
## 10767 NA NA
## 10768 NA NA
## 10769 NA NA
## 10770 NA NA
## 10771 NA NA
## 10772 NA NA
## 10773 NA NA
## 10774 NA NA
## 10775 NA NA
## 10776 NA NA
## 10777 25.811 30.835
## 10778 25.811 30.835
## 10779 25.811 30.835
## 10780 25.811 30.835
## 10781 25.811 30.835
## 10782 25.811 30.835
## 10783 NA NA
## 10784 NA NA
## 10785 NA NA
## 10786 NA NA
## 10787 NA NA
## 10788 NA NA
## 10789 33.434 151.968
## 10790 33.434 151.968
## 10791 33.434 151.968
## 10792 33.434 151.968
## 10793 33.434 151.968
## 10794 33.434 151.968
## 10795 NA NA
## 10796 NA NA
## 10797 NA NA
## 10798 NA NA
## 10799 NA NA
## 10800 NA NA
## 10801 NA NA
## 10802 NA NA
## 10803 NA NA
## 10804 NA NA
## 10805 NA NA
## 10806 NA NA
## 10807 11.822 21.100
## 10808 11.822 21.100
## 10809 11.822 21.100
## 10810 11.822 21.100
## 10811 11.822 21.100
## 10812 11.822 21.100
## 10813 NA NA
## 10814 NA NA
## 10815 NA NA
## 10816 NA NA
## 10817 NA NA
## 10818 NA NA
## 10819 NA NA
## 10820 NA NA
## 10821 NA NA
## 10822 NA NA
## 10823 NA NA
## 10824 NA NA
## 10825 NA NA
## 10826 NA NA
## 10827 NA NA
## 10828 NA NA
## 10829 NA NA
## 10830 NA NA
## 10831 NA NA
## 10832 NA NA
## 10833 NA NA
## 10834 NA NA
## 10835 NA NA
## 10836 NA NA
## 10837 NA NA
## 10838 NA NA
## 10839 NA NA
## 10840 NA NA
## 10841 NA NA
## 10842 NA NA
## 10843 9.074 36.164
## 10844 9.074 36.164
## 10845 9.074 36.164
## 10846 9.074 36.164
## 10847 9.074 36.164
## 10848 9.074 36.164
## 10849 NA NA
## 10850 NA NA
## 10851 NA NA
## 10852 NA NA
## 10853 NA NA
## 10854 NA NA
## 10855 NA NA
## 10856 NA NA
## 10857 NA NA
## 10858 NA NA
## 10859 NA NA
## 10860 NA NA
## 10861 5.861 24.094
## 10862 5.861 24.094
## 10863 5.861 24.094
## 10864 5.861 24.094
## 10865 5.861 24.094
## 10866 5.861 24.094
## 10867 NA NA
## 10868 NA NA
## 10869 NA NA
## 10870 NA NA
## 10871 NA NA
## 10872 NA NA
## 10873 NA NA
## 10874 NA NA
## 10875 NA NA
## 10876 NA NA
## 10877 NA NA
## 10878 NA NA
## 10879 NA NA
## 10880 NA NA
## 10881 NA NA
## 10882 NA NA
## 10883 NA NA
## 10884 NA NA
## 10885 22.400 48.625
## 10886 22.400 48.625
## 10887 22.400 48.625
## 10888 22.400 48.625
## 10889 22.400 48.625
## 10890 22.400 48.625
## 10891 NA NA
## 10892 NA NA
## 10893 NA NA
## 10894 NA NA
## 10895 NA NA
## 10896 NA NA
## 10897 NA NA
## 10898 NA NA
## 10899 NA NA
## 10900 NA NA
## 10901 NA NA
## 10902 NA NA
## 10903 110.110 149.576
## 10904 110.110 149.576
## 10905 110.110 149.576
## 10906 110.110 149.576
## 10907 110.110 149.576
## 10908 110.110 149.576
## 10909 NA NA
## 10910 NA NA
## 10911 NA NA
## 10912 NA NA
## 10913 NA NA
## 10914 NA NA
## 10915 4.001 46.138
## 10916 4.001 46.138
## 10917 4.001 46.138
## 10918 4.001 46.138
## 10919 4.001 46.138
## 10920 4.001 46.138
## 10921 NA NA
## 10922 NA NA
## 10923 NA NA
## 10924 NA NA
## 10925 NA NA
## 10926 NA NA
## 10927 NA NA
## 10928 NA NA
## 10929 NA NA
## 10930 NA NA
## 10931 NA NA
## 10932 NA NA
## 10933 NA NA
## 10934 NA NA
## 10935 NA NA
## 10936 NA NA
## 10937 NA NA
## 10938 NA NA
## 10939 18.201 30.701
## 10940 18.201 30.701
## 10941 18.201 30.701
## 10942 18.201 30.701
## 10943 18.201 30.701
## 10944 18.201 30.701
## 10945 NA NA
## 10946 NA NA
## 10947 NA NA
## 10948 NA NA
## 10949 NA NA
## 10950 NA NA
## 10951 66.962 76.052
## 10952 66.962 76.052
## 10953 66.962 76.052
## 10954 66.962 76.052
## 10955 66.962 76.052
## 10956 66.962 76.052
## 10957 NA NA
## 10958 NA NA
## 10959 NA NA
## 10960 NA NA
## 10961 NA NA
## 10962 NA NA
## 10963 NA NA
## 10964 NA NA
## 10965 NA NA
## 10966 NA NA
## 10967 NA NA
## 10968 NA NA
## 10969 NA NA
## 10970 NA NA
## 10971 NA NA
## 10972 NA NA
## 10973 NA NA
## 10974 NA NA
## 10975 25.954 48.106
## 10976 25.954 48.106
## 10977 25.954 48.106
## 10978 25.954 48.106
## 10979 25.954 48.106
## 10980 25.954 48.106
## 10981 NA NA
## 10982 NA NA
## 10983 NA NA
## 10984 NA NA
## 10985 NA NA
## 10986 NA NA
## 10987 28.040 49.872
## 10988 28.040 49.872
## 10989 28.040 49.872
## 10990 28.040 49.872
## 10991 28.040 49.872
## 10992 28.040 49.872
## 10993 NA NA
## 10994 NA NA
## 10995 NA NA
## 10996 NA NA
## 10997 NA NA
## 10998 NA NA
## 10999 NA NA
## 11000 NA NA
## 11001 NA NA
## 11002 NA NA
## 11003 NA NA
## 11004 NA NA
## 11005 NA NA
## 11006 NA NA
## 11007 NA NA
## 11008 NA NA
## 11009 NA NA
## 11010 NA NA
## 11011 11.315 24.346
## 11012 11.315 24.346
## 11013 11.315 24.346
## 11014 11.315 24.346
## 11015 11.315 24.346
## 11016 11.315 24.346
## 11017 NA NA
## 11018 NA NA
## 11019 NA NA
## 11020 NA NA
## 11021 NA NA
## 11022 NA NA
## 11023 23.125 38.193
## 11024 23.125 38.193
## 11025 23.125 38.193
## 11026 23.125 38.193
## 11027 23.125 38.193
## 11028 23.125 38.193
## 11029 NA NA
## 11030 NA NA
## 11031 NA NA
## 11032 NA NA
## 11033 NA NA
## 11034 NA NA
## 11035 NA NA
## 11036 NA NA
## 11037 NA NA
## 11038 NA NA
## 11039 NA NA
## 11040 NA NA
## 11041 NA NA
## 11042 NA NA
## 11043 NA NA
## 11044 NA NA
## 11045 NA NA
## 11046 NA NA
## 11047 NA NA
## 11048 NA NA
## 11049 NA NA
## 11050 NA NA
## 11051 NA NA
## 11052 NA NA
## 11053 15.508 31.331
## 11054 15.508 31.331
## 11055 15.508 31.331
## 11056 15.508 31.331
## 11057 15.508 31.331
## 11058 15.508 31.331
## 11059 NA NA
## 11060 NA NA
## 11061 NA NA
## 11062 NA NA
## 11063 NA NA
## 11064 NA NA
## 11065 29.084 54.726
## 11066 29.084 54.726
## 11067 29.084 54.726
## 11068 29.084 54.726
## 11069 29.084 54.726
## 11070 29.084 54.726
## 11071 NA NA
## 11072 NA NA
## 11073 NA NA
## 11074 NA NA
## 11075 NA NA
## 11076 NA NA
## 11077 NA NA
## 11078 NA NA
## 11079 NA NA
## 11080 NA NA
## 11081 NA NA
## 11082 NA NA
## 11083 16.036 21.397
## 11084 16.036 21.397
## 11085 16.036 21.397
## 11086 16.036 21.397
## 11087 16.036 21.397
## 11088 16.036 21.397
## 11089 NA NA
## 11090 NA NA
## 11091 NA NA
## 11092 NA NA
## 11093 NA NA
## 11094 NA NA
## 11095 NA NA
## 11096 NA NA
## 11097 NA NA
## 11098 NA NA
## 11099 NA NA
## 11100 NA NA
## 11101 NA NA
## 11102 NA NA
## 11103 NA NA
## 11104 NA NA
## 11105 NA NA
## 11106 NA NA
## 11107 NA NA
## 11108 NA NA
## 11109 NA NA
## 11110 NA NA
## 11111 NA NA
## 11112 NA NA
## 11113 NA NA
## 11114 NA NA
## 11115 NA NA
## 11116 NA NA
## 11117 NA NA
## 11118 NA NA
## 11119 NA NA
## 11120 NA NA
## 11121 NA NA
## 11122 NA NA
## 11123 NA NA
## 11124 NA NA
## 11125 NA NA
## 11126 NA NA
## 11127 NA NA
## 11128 NA NA
## 11129 NA NA
## 11130 NA NA
## 11131 13.624 20.411
## 11132 13.624 20.411
## 11133 13.624 20.411
## 11134 13.624 20.411
## 11135 13.624 20.411
## 11136 13.624 20.411
## 11137 NA NA
## 11138 NA NA
## 11139 NA NA
## 11140 NA NA
## 11141 NA NA
## 11142 NA NA
## 11143 NA NA
## 11144 NA NA
## 11145 NA NA
## 11146 NA NA
## 11147 NA NA
## 11148 NA NA
## 11149 NA NA
## 11150 NA NA
## 11151 NA NA
## 11152 NA NA
## 11153 NA NA
## 11154 NA NA
## 11155 NA NA
## 11156 NA NA
## 11157 NA NA
## 11158 NA NA
## 11159 NA NA
## 11160 NA NA
## 11161 NA NA
## 11162 NA NA
## 11163 NA NA
## 11164 NA NA
## 11165 NA NA
## 11166 NA NA
## 11167 NA NA
## 11168 NA NA
## 11169 NA NA
## 11170 NA NA
## 11171 NA NA
## 11172 NA NA
## 11173 NA NA
## 11174 NA NA
## 11175 NA NA
## 11176 NA NA
## 11177 NA NA
## 11178 NA NA
## 11179 NA NA
## 11180 NA NA
## 11181 NA NA
## 11182 NA NA
## 11183 NA NA
## 11184 NA NA
## 11185 NA NA
## 11186 NA NA
## 11187 NA NA
## 11188 NA NA
## 11189 NA NA
## 11190 NA NA
## 11191 NA NA
## 11192 NA NA
## 11193 NA NA
## 11194 NA NA
## 11195 NA NA
## 11196 NA NA
## 11197 18.167 23.530
## 11198 18.167 23.530
## 11199 18.167 23.530
## 11200 18.167 23.530
## 11201 18.167 23.530
## 11202 18.167 23.530
## 11203 19.725 38.796
## 11204 19.725 38.796
## 11205 19.725 38.796
## 11206 19.725 38.796
## 11207 19.725 38.796
## 11208 19.725 38.796
## 11209 NA NA
## 11210 NA NA
## 11211 NA NA
## 11212 NA NA
## 11213 NA NA
## 11214 NA NA
## 11215 NA NA
## 11216 NA NA
## 11217 NA NA
## 11218 NA NA
## 11219 NA NA
## 11220 NA NA
## 11221 NA NA
## 11222 NA NA
## 11223 NA NA
## 11224 NA NA
## 11225 NA NA
## 11226 NA NA
## 11227 64.038 71.099
## 11228 64.038 71.099
## 11229 64.038 71.099
## 11230 64.038 71.099
## 11231 64.038 71.099
## 11232 64.038 71.099
## 11233 NA NA
## 11234 NA NA
## 11235 NA NA
## 11236 NA NA
## 11237 NA NA
## 11238 NA NA
## 11239 32.453 41.680
## 11240 32.453 41.680
## 11241 32.453 41.680
## 11242 32.453 41.680
## 11243 32.453 41.680
## 11244 32.453 41.680
## 11245 NA NA
## 11246 NA NA
## 11247 NA NA
## 11248 NA NA
## 11249 NA NA
## 11250 NA NA
## 11251 15.733 21.601
## 11252 15.733 21.601
## 11253 15.733 21.601
## 11254 15.733 21.601
## 11255 15.733 21.601
## 11256 15.733 21.601
## 11257 NA NA
## 11258 NA NA
## 11259 NA NA
## 11260 NA NA
## 11261 NA NA
## 11262 NA NA
## 11263 NA NA
## 11264 NA NA
## 11265 NA NA
## 11266 NA NA
## 11267 NA NA
## 11268 NA NA
## 11269 NA NA
## 11270 NA NA
## 11271 NA NA
## 11272 NA NA
## 11273 NA NA
## 11274 NA NA
## 11275 NA NA
## 11276 NA NA
## 11277 NA NA
## 11278 NA NA
## 11279 NA NA
## 11280 NA NA
## 11281 NA NA
## 11282 NA NA
## 11283 NA NA
## 11284 NA NA
## 11285 NA NA
## 11286 NA NA
## 11287 NA NA
## 11288 NA NA
## 11289 NA NA
## 11290 NA NA
## 11291 NA NA
## 11292 NA NA
## 11293 NA NA
## 11294 NA NA
## 11295 NA NA
## 11296 NA NA
## 11297 NA NA
## 11298 NA NA
## 11299 14.663 46.240
## 11300 14.663 46.240
## 11301 14.663 46.240
## 11302 14.663 46.240
## 11303 14.663 46.240
## 11304 14.663 46.240
## 11305 NA NA
## 11306 NA NA
## 11307 NA NA
## 11308 NA NA
## 11309 NA NA
## 11310 NA NA
## 11311 NA NA
## 11312 NA NA
## 11313 NA NA
## 11314 NA NA
## 11315 NA NA
## 11316 NA NA
## 11317 3.670 23.210
## 11318 3.670 23.210
## 11319 3.670 23.210
## 11320 3.670 23.210
## 11321 3.670 23.210
## 11322 3.670 23.210
## 11323 NA NA
## 11324 NA NA
## 11325 NA NA
## 11326 NA NA
## 11327 NA NA
## 11328 NA NA
## 11329 NA NA
## 11330 NA NA
## 11331 NA NA
## 11332 NA NA
## 11333 NA NA
## 11334 NA NA
## 11335 NA NA
## 11336 NA NA
## 11337 NA NA
## 11338 NA NA
## 11339 NA NA
## 11340 NA NA
## 11341 NA NA
## 11342 NA NA
## 11343 NA NA
## 11344 NA NA
## 11345 NA NA
## 11346 NA NA
## 11347 59.040 64.057
## 11348 59.040 64.057
## 11349 59.040 64.057
## 11350 59.040 64.057
## 11351 59.040 64.057
## 11352 59.040 64.057
## 11353 NA NA
## 11354 NA NA
## 11355 NA NA
## 11356 NA NA
## 11357 NA NA
## 11358 NA NA
## 11359 NA NA
## 11360 NA NA
## 11361 NA NA
## 11362 NA NA
## 11363 NA NA
## 11364 NA NA
## 11365 NA NA
## 11366 NA NA
## 11367 NA NA
## 11368 NA NA
## 11369 NA NA
## 11370 NA NA
## 11371 NA NA
## 11372 NA NA
## 11373 NA NA
## 11374 NA NA
## 11375 NA NA
## 11376 NA NA
## 11377 NA NA
## 11378 NA NA
## 11379 NA NA
## 11380 NA NA
## 11381 NA NA
## 11382 NA NA
## 11383 NA NA
## 11384 NA NA
## 11385 NA NA
## 11386 NA NA
## 11387 NA NA
## 11388 NA NA
## 11389 NA NA
## 11390 NA NA
## 11391 NA NA
## 11392 NA NA
## 11393 NA NA
## 11394 NA NA
## 11395 NA NA
## 11396 NA NA
## 11397 NA NA
## 11398 NA NA
## 11399 NA NA
## 11400 NA NA
## 11401 NA NA
## 11402 NA NA
## 11403 NA NA
## 11404 NA NA
## 11405 NA NA
## 11406 NA NA
## 11407 NA NA
## 11408 NA NA
## 11409 NA NA
## 11410 NA NA
## 11411 NA NA
## 11412 NA NA
## 11413 12.632 23.672
## 11414 12.632 23.672
## 11415 12.632 23.672
## 11416 12.632 23.672
## 11417 12.632 23.672
## 11418 12.632 23.672
## 11419 NA NA
## 11420 NA NA
## 11421 NA NA
## 11422 NA NA
## 11423 NA NA
## 11424 NA NA
## 11425 NA NA
## 11426 NA NA
## 11427 NA NA
## 11428 NA NA
## 11429 NA NA
## 11430 NA NA
## 11431 NA NA
## 11432 NA NA
## 11433 NA NA
## 11434 NA NA
## 11435 NA NA
## 11436 NA NA
## 11437 NA NA
## 11438 NA NA
## 11439 NA NA
## 11440 NA NA
## 11441 NA NA
## 11442 NA NA
## 11443 19.077 33.076
## 11444 19.077 33.076
## 11445 19.077 33.076
## 11446 19.077 33.076
## 11447 19.077 33.076
## 11448 19.077 33.076
## 11449 8.285 17.570
## 11450 8.285 17.570
## 11451 8.285 17.570
## 11452 8.285 17.570
## 11453 8.285 17.570
## 11454 8.285 17.570
## 11455 NA NA
## 11456 NA NA
## 11457 NA NA
## 11458 NA NA
## 11459 NA NA
## 11460 NA NA
## 11461 NA NA
## 11462 NA NA
## 11463 NA NA
## 11464 NA NA
## 11465 NA NA
## 11466 NA NA
## 11467 NA NA
## 11468 NA NA
## 11469 NA NA
## 11470 NA NA
## 11471 NA NA
## 11472 NA NA
## 11473 NA NA
## 11474 NA NA
## 11475 NA NA
## 11476 NA NA
## 11477 NA NA
## 11478 NA NA
## 11479 NA NA
## 11480 NA NA
## 11481 NA NA
## 11482 NA NA
## 11483 NA NA
## 11484 NA NA
## 11485 4.826 25.539
## 11486 4.826 25.539
## 11487 4.826 25.539
## 11488 4.826 25.539
## 11489 4.826 25.539
## 11490 4.826 25.539
## 11491 16.996 52.502
## 11492 16.996 52.502
## 11493 16.996 52.502
## 11494 16.996 52.502
## 11495 16.996 52.502
## 11496 16.996 52.502
## 11497 8.113 2446.091
## 11498 8.113 2446.091
## 11499 8.113 2446.091
## 11500 8.113 2446.091
## 11501 8.113 2446.091
## 11502 8.113 2446.091
## 11503 NA NA
## 11504 NA NA
## 11505 NA NA
## 11506 NA NA
## 11507 NA NA
## 11508 NA NA
## 11509 53.189 88.532
## 11510 53.189 88.532
## 11511 53.189 88.532
## 11512 53.189 88.532
## 11513 53.189 88.532
## 11514 53.189 88.532
## 11515 NA NA
## 11516 NA NA
## 11517 NA NA
## 11518 NA NA
## 11519 NA NA
## 11520 NA NA
## 11521 NA NA
## 11522 NA NA
## 11523 NA NA
## 11524 NA NA
## 11525 NA NA
## 11526 NA NA
## 11527 NA NA
## 11528 NA NA
## 11529 NA NA
## 11530 NA NA
## 11531 NA NA
## 11532 NA NA
## 11533 NA NA
## 11534 NA NA
## 11535 NA NA
## 11536 NA NA
## 11537 NA NA
## 11538 NA NA
## 11539 NA NA
## 11540 NA NA
## 11541 NA NA
## 11542 NA NA
## 11543 NA NA
## 11544 NA NA
## 11545 NA NA
## 11546 NA NA
## 11547 NA NA
## 11548 NA NA
## 11549 NA NA
## 11550 NA NA
## 11551 NA NA
## 11552 NA NA
## 11553 NA NA
## 11554 NA NA
## 11555 NA NA
## 11556 NA NA
## 11557 2.244 29.345
## 11558 2.244 29.345
## 11559 2.244 29.345
## 11560 2.244 29.345
## 11561 2.244 29.345
## 11562 2.244 29.345
## 11563 NA NA
## 11564 NA NA
## 11565 NA NA
## 11566 NA NA
## 11567 NA NA
## 11568 NA NA
## 11569 NA NA
## 11570 NA NA
## 11571 NA NA
## 11572 NA NA
## 11573 NA NA
## 11574 NA NA
## 11575 NA NA
## 11576 NA NA
## 11577 NA NA
## 11578 NA NA
## 11579 NA NA
## 11580 NA NA
## 11581 20.317 49.787
## 11582 20.317 49.787
## 11583 20.317 49.787
## 11584 20.317 49.787
## 11585 20.317 49.787
## 11586 20.317 49.787
## 11587 NA NA
## 11588 NA NA
## 11589 NA NA
## 11590 NA NA
## 11591 NA NA
## 11592 NA NA
## 11593 NA NA
## 11594 NA NA
## 11595 NA NA
## 11596 NA NA
## 11597 NA NA
## 11598 NA NA
## 11599 NA NA
## 11600 NA NA
## 11601 NA NA
## 11602 NA NA
## 11603 NA NA
## 11604 NA NA
## 11605 10.200 23.584
## 11606 10.200 23.584
## 11607 10.200 23.584
## 11608 10.200 23.584
## 11609 10.200 23.584
## 11610 10.200 23.584
## 11611 NA NA
## 11612 NA NA
## 11613 NA NA
## 11614 NA NA
## 11615 NA NA
## 11616 NA NA
## 11617 58.451 64.414
## 11618 58.451 64.414
## 11619 58.451 64.414
## 11620 58.451 64.414
## 11621 58.451 64.414
## 11622 58.451 64.414
## 11623 NA NA
## 11624 NA NA
## 11625 NA NA
## 11626 NA NA
## 11627 NA NA
## 11628 NA NA
## 11629 NA NA
## 11630 NA NA
## 11631 NA NA
## 11632 NA NA
## 11633 NA NA
## 11634 NA NA
## 11635 NA NA
## 11636 NA NA
## 11637 NA NA
## 11638 NA NA
## 11639 NA NA
## 11640 NA NA
## 11641 NA NA
## 11642 NA NA
## 11643 NA NA
## 11644 NA NA
## 11645 NA NA
## 11646 NA NA
## 11647 NA NA
## 11648 NA NA
## 11649 NA NA
## 11650 NA NA
## 11651 NA NA
## 11652 NA NA
## 11653 NA NA
## 11654 NA NA
## 11655 NA NA
## 11656 NA NA
## 11657 NA NA
## 11658 NA NA
## 11659 122.001 128.651
## 11660 122.001 128.651
## 11661 122.001 128.651
## 11662 122.001 128.651
## 11663 122.001 128.651
## 11664 122.001 128.651
## 11665 NA NA
## 11666 NA NA
## 11667 NA NA
## 11668 NA NA
## 11669 NA NA
## 11670 NA NA
## 11671 NA NA
## 11672 NA NA
## 11673 NA NA
## 11674 NA NA
## 11675 NA NA
## 11676 NA NA
## 11677 NA NA
## 11678 NA NA
## 11679 NA NA
## 11680 NA NA
## 11681 NA NA
## 11682 NA NA
## 11683 NA NA
## 11684 NA NA
## 11685 NA NA
## 11686 NA NA
## 11687 NA NA
## 11688 NA NA
## 11689 NA NA
## 11690 NA NA
## 11691 NA NA
## 11692 NA NA
## 11693 NA NA
## 11694 NA NA
## 11695 NA NA
## 11696 NA NA
## 11697 NA NA
## 11698 NA NA
## 11699 NA NA
## 11700 NA NA
## 11701 NA NA
## 11702 NA NA
## 11703 NA NA
## 11704 NA NA
## 11705 NA NA
## 11706 NA NA
## 11707 12.247 35.827
## 11708 12.247 35.827
## 11709 12.247 35.827
## 11710 12.247 35.827
## 11711 12.247 35.827
## 11712 12.247 35.827
## 11713 NA NA
## 11714 NA NA
## 11715 NA NA
## 11716 NA NA
## 11717 NA NA
## 11718 NA NA
## 11719 20.976 33.936
## 11720 20.976 33.936
## 11721 20.976 33.936
## 11722 20.976 33.936
## 11723 20.976 33.936
## 11724 20.976 33.936
## 11725 53.548 85.037
## 11726 53.548 85.037
## 11727 53.548 85.037
## 11728 53.548 85.037
## 11729 53.548 85.037
## 11730 53.548 85.037
## 11731 NA NA
## 11732 NA NA
## 11733 NA NA
## 11734 NA NA
## 11735 NA NA
## 11736 NA NA
## 11737 NA NA
## 11738 NA NA
## 11739 NA NA
## 11740 NA NA
## 11741 NA NA
## 11742 NA NA
## 11743 4.067 33.987
## 11744 4.067 33.987
## 11745 4.067 33.987
## 11746 4.067 33.987
## 11747 4.067 33.987
## 11748 4.067 33.987
## 11749 49.717 74.370
## 11750 49.717 74.370
## 11751 49.717 74.370
## 11752 49.717 74.370
## 11753 49.717 74.370
## 11754 49.717 74.370
## 11755 NA NA
## 11756 NA NA
## 11757 NA NA
## 11758 NA NA
## 11759 NA NA
## 11760 NA NA
## 11761 NA NA
## 11762 NA NA
## 11763 NA NA
## 11764 NA NA
## 11765 NA NA
## 11766 NA NA
## 11767 40.703 59.855
## 11768 40.703 59.855
## 11769 40.703 59.855
## 11770 40.703 59.855
## 11771 40.703 59.855
## 11772 40.703 59.855
## 11773 NA NA
## 11774 NA NA
## 11775 NA NA
## 11776 NA NA
## 11777 NA NA
## 11778 NA NA
## 11779 NA NA
## 11780 NA NA
## 11781 NA NA
## 11782 NA NA
## 11783 NA NA
## 11784 NA NA
## 11785 NA NA
## 11786 NA NA
## 11787 NA NA
## 11788 NA NA
## 11789 NA NA
## 11790 NA NA
## 11791 1.972 18.603
## 11792 1.972 18.603
## 11793 1.972 18.603
## 11794 1.972 18.603
## 11795 1.972 18.603
## 11796 1.972 18.603
## 11797 NA NA
## 11798 NA NA
## 11799 NA NA
## 11800 NA NA
## 11801 NA NA
## 11802 NA NA
## 11803 NA NA
## 11804 NA NA
## 11805 NA NA
## 11806 NA NA
## 11807 NA NA
## 11808 NA NA
## 11809 NA NA
## 11810 NA NA
## 11811 NA NA
## 11812 NA NA
## 11813 NA NA
## 11814 NA NA
## 11815 NA NA
## 11816 NA NA
## 11817 NA NA
## 11818 NA NA
## 11819 NA NA
## 11820 NA NA
## 11821 NA NA
## 11822 NA NA
## 11823 NA NA
## 11824 NA NA
## 11825 NA NA
## 11826 NA NA
## 11827 NA NA
## 11828 NA NA
## 11829 NA NA
## 11830 NA NA
## 11831 NA NA
## 11832 NA NA
## 11833 NA NA
## 11834 NA NA
## 11835 NA NA
## 11836 NA NA
## 11837 NA NA
## 11838 NA NA
## 11839 NA NA
## 11840 NA NA
## 11841 NA NA
## 11842 NA NA
## 11843 NA NA
## 11844 NA NA
## 11845 NA NA
## 11846 NA NA
## 11847 NA NA
## 11848 NA NA
## 11849 NA NA
## 11850 NA NA
## 11851 NA NA
## 11852 NA NA
## 11853 NA NA
## 11854 NA NA
## 11855 NA NA
## 11856 NA NA
## 11857 NA NA
## 11858 NA NA
## 11859 NA NA
## 11860 NA NA
## 11861 NA NA
## 11862 NA NA
## 11863 NA NA
## 11864 NA NA
## 11865 NA NA
## 11866 NA NA
## 11867 NA NA
## 11868 NA NA
## 11869 NA NA
## 11870 NA NA
## 11871 NA NA
## 11872 NA NA
## 11873 NA NA
## 11874 NA NA
## 11875 NA NA
## 11876 NA NA
## 11877 NA NA
## 11878 NA NA
## 11879 NA NA
## 11880 NA NA
## 11881 NA NA
## 11882 NA NA
## 11883 NA NA
## 11884 NA NA
## 11885 NA NA
## 11886 NA NA
## 11887 NA NA
## 11888 NA NA
## 11889 NA NA
## 11890 NA NA
## 11891 NA NA
## 11892 NA NA
## 11893 NA NA
## 11894 NA NA
## 11895 NA NA
## 11896 NA NA
## 11897 NA NA
## 11898 NA NA
## 11899 41.886 67.026
## 11900 41.886 67.026
## 11901 41.886 67.026
## 11902 41.886 67.026
## 11903 41.886 67.026
## 11904 41.886 67.026
## 11905 NA NA
## 11906 NA NA
## 11907 NA NA
## 11908 NA NA
## 11909 NA NA
## 11910 NA NA
## 11911 NA NA
## 11912 NA NA
## 11913 NA NA
## 11914 NA NA
## 11915 NA NA
## 11916 NA NA
## 11917 NA NA
## 11918 NA NA
## 11919 NA NA
## 11920 NA NA
## 11921 NA NA
## 11922 NA NA
## 11923 24.924 37.607
## 11924 24.924 37.607
## 11925 24.924 37.607
## 11926 24.924 37.607
## 11927 24.924 37.607
## 11928 24.924 37.607
## 11929 2.362 32.450
## 11930 2.362 32.450
## 11931 2.362 32.450
## 11932 2.362 32.450
## 11933 2.362 32.450
## 11934 2.362 32.450
## 11935 NA NA
## 11936 NA NA
## 11937 NA NA
## 11938 NA NA
## 11939 NA NA
## 11940 NA NA
## 11941 1.935 14.887
## 11942 1.935 14.887
## 11943 1.935 14.887
## 11944 1.935 14.887
## 11945 1.935 14.887
## 11946 1.935 14.887
## 11947 NA NA
## 11948 NA NA
## 11949 NA NA
## 11950 NA NA
## 11951 NA NA
## 11952 NA NA
## 11953 NA NA
## 11954 NA NA
## 11955 NA NA
## 11956 NA NA
## 11957 NA NA
## 11958 NA NA
## 11959 NA NA
## 11960 NA NA
## 11961 NA NA
## 11962 NA NA
## 11963 NA NA
## 11964 NA NA
## 11965 NA NA
## 11966 NA NA
## 11967 NA NA
## 11968 NA NA
## 11969 NA NA
## 11970 NA NA
## 11971 NA NA
## 11972 NA NA
## 11973 NA NA
## 11974 NA NA
## 11975 NA NA
## 11976 NA NA
## 11977 NA NA
## 11978 NA NA
## 11979 NA NA
## 11980 NA NA
## 11981 NA NA
## 11982 NA NA
## 11983 NA NA
## 11984 NA NA
## 11985 NA NA
## 11986 NA NA
## 11987 NA NA
## 11988 NA NA
## 11989 NA NA
## 11990 NA NA
## 11991 NA NA
## 11992 NA NA
## 11993 NA NA
## 11994 NA NA
## 11995 NA NA
## 11996 NA NA
## 11997 NA NA
## 11998 NA NA
## 11999 NA NA
## 12000 NA NA
## 12001 8.318 28.302
## 12002 8.318 28.302
## 12003 8.318 28.302
## 12004 8.318 28.302
## 12005 8.318 28.302
## 12006 8.318 28.302
## 12007 NA NA
## 12008 NA NA
## 12009 NA NA
## 12010 NA NA
## 12011 NA NA
## 12012 NA NA
## 12013 NA NA
## 12014 NA NA
## 12015 NA NA
## 12016 NA NA
## 12017 NA NA
## 12018 NA NA
## 12019 NA NA
## 12020 NA NA
## 12021 NA NA
## 12022 NA NA
## 12023 NA NA
## 12024 NA NA
## 12025 NA NA
## 12026 NA NA
## 12027 NA NA
## 12028 NA NA
## 12029 NA NA
## 12030 NA NA
## 12031 NA NA
## 12032 NA NA
## 12033 NA NA
## 12034 NA NA
## 12035 NA NA
## 12036 NA NA
## 12037 NA NA
## 12038 NA NA
## 12039 NA NA
## 12040 NA NA
## 12041 NA NA
## 12042 NA NA
## 12043 NA NA
## 12044 NA NA
## 12045 NA NA
## 12046 NA NA
## 12047 NA NA
## 12048 NA NA
## 12049 NA NA
## 12050 NA NA
## 12051 NA NA
## 12052 NA NA
## 12053 NA NA
## 12054 NA NA
## 12055 35.444 54.267
## 12056 35.444 54.267
## 12057 35.444 54.267
## 12058 35.444 54.267
## 12059 35.444 54.267
## 12060 35.444 54.267
## 12061 15.807 34.083
## 12062 15.807 34.083
## 12063 15.807 34.083
## 12064 15.807 34.083
## 12065 15.807 34.083
## 12066 15.807 34.083
## 12067 NA NA
## 12068 NA NA
## 12069 NA NA
## 12070 NA NA
## 12071 NA NA
## 12072 NA NA
## 12073 NA NA
## 12074 NA NA
## 12075 NA NA
## 12076 NA NA
## 12077 NA NA
## 12078 NA NA
## 12079 13.863 31.708
## 12080 13.863 31.708
## 12081 13.863 31.708
## 12082 13.863 31.708
## 12083 13.863 31.708
## 12084 13.863 31.708
## 12085 NA NA
## 12086 NA NA
## 12087 NA NA
## 12088 NA NA
## 12089 NA NA
## 12090 NA NA
## 12091 NA NA
## 12092 NA NA
## 12093 NA NA
## 12094 NA NA
## 12095 NA NA
## 12096 NA NA
## 12097 NA NA
## 12098 NA NA
## 12099 NA NA
## 12100 NA NA
## 12101 NA NA
## 12102 NA NA
## 12103 1.511 33.167
## 12104 1.511 33.167
## 12105 1.511 33.167
## 12106 1.511 33.167
## 12107 1.511 33.167
## 12108 1.511 33.167
## 12109 NA NA
## 12110 NA NA
## 12111 NA NA
## 12112 NA NA
## 12113 NA NA
## 12114 NA NA
## 12115 20.414 36.670
## 12116 20.414 36.670
## 12117 20.414 36.670
## 12118 20.414 36.670
## 12119 20.414 36.670
## 12120 20.414 36.670
## 12121 NA NA
## 12122 NA NA
## 12123 NA NA
## 12124 NA NA
## 12125 NA NA
## 12126 NA NA
## 12127 64.474 79.776
## 12128 64.474 79.776
## 12129 64.474 79.776
## 12130 64.474 79.776
## 12131 64.474 79.776
## 12132 64.474 79.776
## 12133 NA NA
## 12134 NA NA
## 12135 NA NA
## 12136 NA NA
## 12137 NA NA
## 12138 NA NA
## 12139 NA NA
## 12140 NA NA
## 12141 NA NA
## 12142 NA NA
## 12143 NA NA
## 12144 NA NA
## 12145 6.372 40.394
## 12146 6.372 40.394
## 12147 6.372 40.394
## 12148 6.372 40.394
## 12149 6.372 40.394
## 12150 6.372 40.394
## 12151 NA NA
## 12152 NA NA
## 12153 NA NA
## 12154 NA NA
## 12155 NA NA
## 12156 NA NA
## 12157 NA NA
## 12158 NA NA
## 12159 NA NA
## 12160 NA NA
## 12161 NA NA
## 12162 NA NA
## 12163 NA NA
## 12164 NA NA
## 12165 NA NA
## 12166 NA NA
## 12167 NA NA
## 12168 NA NA
## 12169 NA NA
## 12170 NA NA
## 12171 NA NA
## 12172 NA NA
## 12173 NA NA
## 12174 NA NA
## 12175 NA NA
## 12176 NA NA
## 12177 NA NA
## 12178 NA NA
## 12179 NA NA
## 12180 NA NA
## 12181 NA NA
## 12182 NA NA
## 12183 NA NA
## 12184 NA NA
## 12185 NA NA
## 12186 NA NA
## 12187 5.933 33.841
## 12188 5.933 33.841
## 12189 5.933 33.841
## 12190 5.933 33.841
## 12191 5.933 33.841
## 12192 5.933 33.841
## 12193 NA NA
## 12194 NA NA
## 12195 NA NA
## 12196 NA NA
## 12197 NA NA
## 12198 NA NA
## 12199 25.132 37.158
## 12200 25.132 37.158
## 12201 25.132 37.158
## 12202 25.132 37.158
## 12203 25.132 37.158
## 12204 25.132 37.158
## 12205 NA NA
## 12206 NA NA
## 12207 NA NA
## 12208 NA NA
## 12209 NA NA
## 12210 NA NA
## 12211 NA NA
## 12212 NA NA
## 12213 NA NA
## 12214 NA NA
## 12215 NA NA
## 12216 NA NA
## 12217 17.029 31.860
## 12218 17.029 31.860
## 12219 17.029 31.860
## 12220 17.029 31.860
## 12221 17.029 31.860
## 12222 17.029 31.860
## 12223 NA NA
## 12224 NA NA
## 12225 NA NA
## 12226 NA NA
## 12227 NA NA
## 12228 NA NA
## 12229 NA NA
## 12230 NA NA
## 12231 NA NA
## 12232 NA NA
## 12233 NA NA
## 12234 NA NA
## 12235 7.873 18.265
## 12236 7.873 18.265
## 12237 7.873 18.265
## 12238 7.873 18.265
## 12239 7.873 18.265
## 12240 7.873 18.265
## 12241 NA NA
## 12242 NA NA
## 12243 NA NA
## 12244 NA NA
## 12245 NA NA
## 12246 NA NA
## 12247 NA NA
## 12248 NA NA
## 12249 NA NA
## 12250 NA NA
## 12251 NA NA
## 12252 NA NA
## 12253 NA NA
## 12254 NA NA
## 12255 NA NA
## 12256 NA NA
## 12257 NA NA
## 12258 NA NA
## 12259 NA NA
## 12260 NA NA
## 12261 NA NA
## 12262 NA NA
## 12263 NA NA
## 12264 NA NA
## 12265 29.456 43.113
## 12266 29.456 43.113
## 12267 29.456 43.113
## 12268 29.456 43.113
## 12269 29.456 43.113
## 12270 29.456 43.113
## 12271 NA NA
## 12272 NA NA
## 12273 NA NA
## 12274 NA NA
## 12275 NA NA
## 12276 NA NA
## 12277 NA NA
## 12278 NA NA
## 12279 NA NA
## 12280 NA NA
## 12281 NA NA
## 12282 NA NA
## 12283 13.775 74.938
## 12284 13.775 74.938
## 12285 13.775 74.938
## 12286 13.775 74.938
## 12287 13.775 74.938
## 12288 13.775 74.938
## 12289 NA NA
## 12290 NA NA
## 12291 NA NA
## 12292 NA NA
## 12293 NA NA
## 12294 NA NA
## 12295 NA NA
## 12296 NA NA
## 12297 NA NA
## 12298 NA NA
## 12299 NA NA
## 12300 NA NA
## 12301 NA NA
## 12302 NA NA
## 12303 NA NA
## 12304 NA NA
## 12305 NA NA
## 12306 NA NA
## 12307 NA NA
## 12308 NA NA
## 12309 NA NA
## 12310 NA NA
## 12311 NA NA
## 12312 NA NA
## 12313 NA NA
## 12314 NA NA
## 12315 NA NA
## 12316 NA NA
## 12317 NA NA
## 12318 NA NA
## 12319 41.609 55.530
## 12320 41.609 55.530
## 12321 41.609 55.530
## 12322 41.609 55.530
## 12323 41.609 55.530
## 12324 41.609 55.530
## 12325 NA NA
## 12326 NA NA
## 12327 NA NA
## 12328 NA NA
## 12329 NA NA
## 12330 NA NA
## 12331 NA NA
## 12332 NA NA
## 12333 NA NA
## 12334 NA NA
## 12335 NA NA
## 12336 NA NA
## 12337 NA NA
## 12338 NA NA
## 12339 NA NA
## 12340 NA NA
## 12341 NA NA
## 12342 NA NA
## 12343 NA NA
## 12344 NA NA
## 12345 NA NA
## 12346 NA NA
## 12347 NA NA
## 12348 NA NA
## 12349 24.908 38.875
## 12350 24.908 38.875
## 12351 24.908 38.875
## 12352 24.908 38.875
## 12353 24.908 38.875
## 12354 24.908 38.875
## 12355 13.533 28.432
## 12356 13.533 28.432
## 12357 13.533 28.432
## 12358 13.533 28.432
## 12359 13.533 28.432
## 12360 13.533 28.432
## 12361 17.803 26.186
## 12362 17.803 26.186
## 12363 17.803 26.186
## 12364 17.803 26.186
## 12365 17.803 26.186
## 12366 17.803 26.186
## 12367 NA NA
## 12368 NA NA
## 12369 NA NA
## 12370 NA NA
## 12371 NA NA
## 12372 NA NA
## 12373 10.987 43.041
## 12374 10.987 43.041
## 12375 10.987 43.041
## 12376 10.987 43.041
## 12377 10.987 43.041
## 12378 10.987 43.041
## 12379 13.181 41.740
## 12380 13.181 41.740
## 12381 13.181 41.740
## 12382 13.181 41.740
## 12383 13.181 41.740
## 12384 13.181 41.740
## 12385 39.655 79.415
## 12386 39.655 79.415
## 12387 39.655 79.415
## 12388 39.655 79.415
## 12389 39.655 79.415
## 12390 39.655 79.415
## 12391 NA NA
## 12392 NA NA
## 12393 NA NA
## 12394 NA NA
## 12395 NA NA
## 12396 NA NA
## 12397 NA NA
## 12398 NA NA
## 12399 NA NA
## 12400 NA NA
## 12401 NA NA
## 12402 NA NA
## 12403 NA NA
## 12404 NA NA
## 12405 NA NA
## 12406 NA NA
## 12407 NA NA
## 12408 NA NA
## 12409 NA NA
## 12410 NA NA
## 12411 NA NA
## 12412 NA NA
## 12413 NA NA
## 12414 NA NA
## 12415 NA NA
## 12416 NA NA
## 12417 NA NA
## 12418 NA NA
## 12419 NA NA
## 12420 NA NA
## 12421 NA NA
## 12422 NA NA
## 12423 NA NA
## 12424 NA NA
## 12425 NA NA
## 12426 NA NA
## 12427 NA NA
## 12428 NA NA
## 12429 NA NA
## 12430 NA NA
## 12431 NA NA
## 12432 NA NA
## 12433 NA NA
## 12434 NA NA
## 12435 NA NA
## 12436 NA NA
## 12437 NA NA
## 12438 NA NA
## 12439 NA NA
## 12440 NA NA
## 12441 NA NA
## 12442 NA NA
## 12443 NA NA
## 12444 NA NA
## 12445 NA NA
## 12446 NA NA
## 12447 NA NA
## 12448 NA NA
## 12449 NA NA
## 12450 NA NA
## 12451 NA NA
## 12452 NA NA
## 12453 NA NA
## 12454 NA NA
## 12455 NA NA
## 12456 NA NA
## 12457 NA NA
## 12458 NA NA
## 12459 NA NA
## 12460 NA NA
## 12461 NA NA
## 12462 NA NA
## 12463 0.977 54.205
## 12464 0.977 54.205
## 12465 0.977 54.205
## 12466 0.977 54.205
## 12467 0.977 54.205
## 12468 0.977 54.205
## 12469 NA NA
## 12470 NA NA
## 12471 NA NA
## 12472 NA NA
## 12473 NA NA
## 12474 NA NA
## 12475 14.806 34.440
## 12476 14.806 34.440
## 12477 14.806 34.440
## 12478 14.806 34.440
## 12479 14.806 34.440
## 12480 14.806 34.440
## 12481 NA NA
## 12482 NA NA
## 12483 NA NA
## 12484 NA NA
## 12485 NA NA
## 12486 NA NA
## 12487 NA NA
## 12488 NA NA
## 12489 NA NA
## 12490 NA NA
## 12491 NA NA
## 12492 NA NA
## 12493 NA NA
## 12494 NA NA
## 12495 NA NA
## 12496 NA NA
## 12497 NA NA
## 12498 NA NA
## 12499 NA NA
## V1.1_I_TIME_P1_First.Click V1.1_I_TIME_P1_Last.Click
## 1 5.530 32.298
## 2 5.530 32.298
## 3 5.530 32.298
## 4 5.530 32.298
## 5 5.530 32.298
## 6 5.530 32.298
## 7 NA NA
## 8 NA NA
## 9 NA NA
## 10 NA NA
## 11 NA NA
## 12 NA NA
## 13 NA NA
## 14 NA NA
## 15 NA NA
## 16 NA NA
## 17 NA NA
## 18 NA NA
## 19 NA NA
## 20 NA NA
## 21 NA NA
## 22 NA NA
## 23 NA NA
## 24 NA NA
## 25 NA NA
## 26 NA NA
## 27 NA NA
## 28 NA NA
## 29 NA NA
## 30 NA NA
## 31 NA NA
## 32 NA NA
## 33 NA NA
## 34 NA NA
## 35 NA NA
## 36 NA NA
## 37 17.054 46.323
## 38 17.054 46.323
## 39 17.054 46.323
## 40 17.054 46.323
## 41 17.054 46.323
## 42 17.054 46.323
## 43 NA NA
## 44 NA NA
## 45 NA NA
## 46 NA NA
## 47 NA NA
## 48 NA NA
## 49 NA NA
## 50 NA NA
## 51 NA NA
## 52 NA NA
## 53 NA NA
## 54 NA NA
## 55 NA NA
## 56 NA NA
## 57 NA NA
## 58 NA NA
## 59 NA NA
## 60 NA NA
## 61 NA NA
## 62 NA NA
## 63 NA NA
## 64 NA NA
## 65 NA NA
## 66 NA NA
## 67 NA NA
## 68 NA NA
## 69 NA NA
## 70 NA NA
## 71 NA NA
## 72 NA NA
## 73 NA NA
## 74 NA NA
## 75 NA NA
## 76 NA NA
## 77 NA NA
## 78 NA NA
## 79 NA NA
## 80 NA NA
## 81 NA NA
## 82 NA NA
## 83 NA NA
## 84 NA NA
## 85 NA NA
## 86 NA NA
## 87 NA NA
## 88 NA NA
## 89 NA NA
## 90 NA NA
## 91 7.705 36.245
## 92 7.705 36.245
## 93 7.705 36.245
## 94 7.705 36.245
## 95 7.705 36.245
## 96 7.705 36.245
## 97 17.329 42.596
## 98 17.329 42.596
## 99 17.329 42.596
## 100 17.329 42.596
## 101 17.329 42.596
## 102 17.329 42.596
## 103 31.747 46.744
## 104 31.747 46.744
## 105 31.747 46.744
## 106 31.747 46.744
## 107 31.747 46.744
## 108 31.747 46.744
## 109 15.964 23.211
## 110 15.964 23.211
## 111 15.964 23.211
## 112 15.964 23.211
## 113 15.964 23.211
## 114 15.964 23.211
## 115 NA NA
## 116 NA NA
## 117 NA NA
## 118 NA NA
## 119 NA NA
## 120 NA NA
## 121 NA NA
## 122 NA NA
## 123 NA NA
## 124 NA NA
## 125 NA NA
## 126 NA NA
## 127 8.053 14.740
## 128 8.053 14.740
## 129 8.053 14.740
## 130 8.053 14.740
## 131 8.053 14.740
## 132 8.053 14.740
## 133 NA NA
## 134 NA NA
## 135 NA NA
## 136 NA NA
## 137 NA NA
## 138 NA NA
## 139 NA NA
## 140 NA NA
## 141 NA NA
## 142 NA NA
## 143 NA NA
## 144 NA NA
## 145 NA NA
## 146 NA NA
## 147 NA NA
## 148 NA NA
## 149 NA NA
## 150 NA NA
## 151 NA NA
## 152 NA NA
## 153 NA NA
## 154 NA NA
## 155 NA NA
## 156 NA NA
## 157 2.344 121.982
## 158 2.344 121.982
## 159 2.344 121.982
## 160 2.344 121.982
## 161 2.344 121.982
## 162 2.344 121.982
## 163 NA NA
## 164 NA NA
## 165 NA NA
## 166 NA NA
## 167 NA NA
## 168 NA NA
## 169 NA NA
## 170 NA NA
## 171 NA NA
## 172 NA NA
## 173 NA NA
## 174 NA NA
## 175 NA NA
## 176 NA NA
## 177 NA NA
## 178 NA NA
## 179 NA NA
## 180 NA NA
## 181 1.629 35.409
## 182 1.629 35.409
## 183 1.629 35.409
## 184 1.629 35.409
## 185 1.629 35.409
## 186 1.629 35.409
## 187 NA NA
## 188 NA NA
## 189 NA NA
## 190 NA NA
## 191 NA NA
## 192 NA NA
## 193 NA NA
## 194 NA NA
## 195 NA NA
## 196 NA NA
## 197 NA NA
## 198 NA NA
## 199 NA NA
## 200 NA NA
## 201 NA NA
## 202 NA NA
## 203 NA NA
## 204 NA NA
## 205 14.159 39.870
## 206 14.159 39.870
## 207 14.159 39.870
## 208 14.159 39.870
## 209 14.159 39.870
## 210 14.159 39.870
## 211 NA NA
## 212 NA NA
## 213 NA NA
## 214 NA NA
## 215 NA NA
## 216 NA NA
## 217 21.270 44.835
## 218 21.270 44.835
## 219 21.270 44.835
## 220 21.270 44.835
## 221 21.270 44.835
## 222 21.270 44.835
## 223 26.853 49.887
## 224 26.853 49.887
## 225 26.853 49.887
## 226 26.853 49.887
## 227 26.853 49.887
## 228 26.853 49.887
## 229 NA NA
## 230 NA NA
## 231 NA NA
## 232 NA NA
## 233 NA NA
## 234 NA NA
## 235 NA NA
## 236 NA NA
## 237 NA NA
## 238 NA NA
## 239 NA NA
## 240 NA NA
## 241 26.144 47.211
## 242 26.144 47.211
## 243 26.144 47.211
## 244 26.144 47.211
## 245 26.144 47.211
## 246 26.144 47.211
## 247 6.518 37.851
## 248 6.518 37.851
## 249 6.518 37.851
## 250 6.518 37.851
## 251 6.518 37.851
## 252 6.518 37.851
## 253 1.790 39.665
## 254 1.790 39.665
## 255 1.790 39.665
## 256 1.790 39.665
## 257 1.790 39.665
## 258 1.790 39.665
## 259 NA NA
## 260 NA NA
## 261 NA NA
## 262 NA NA
## 263 NA NA
## 264 NA NA
## 265 8.344 35.731
## 266 8.344 35.731
## 267 8.344 35.731
## 268 8.344 35.731
## 269 8.344 35.731
## 270 8.344 35.731
## 271 NA NA
## 272 NA NA
## 273 NA NA
## 274 NA NA
## 275 NA NA
## 276 NA NA
## 277 10.929 44.366
## 278 10.929 44.366
## 279 10.929 44.366
## 280 10.929 44.366
## 281 10.929 44.366
## 282 10.929 44.366
## 283 NA NA
## 284 NA NA
## 285 NA NA
## 286 NA NA
## 287 NA NA
## 288 NA NA
## 289 NA NA
## 290 NA NA
## 291 NA NA
## 292 NA NA
## 293 NA NA
## 294 NA NA
## 295 NA NA
## 296 NA NA
## 297 NA NA
## 298 NA NA
## 299 NA NA
## 300 NA NA
## 301 NA NA
## 302 NA NA
## 303 NA NA
## 304 NA NA
## 305 NA NA
## 306 NA NA
## 307 NA NA
## 308 NA NA
## 309 NA NA
## 310 NA NA
## 311 NA NA
## 312 NA NA
## 313 6.953 41.160
## 314 6.953 41.160
## 315 6.953 41.160
## 316 6.953 41.160
## 317 6.953 41.160
## 318 6.953 41.160
## 319 NA NA
## 320 NA NA
## 321 NA NA
## 322 NA NA
## 323 NA NA
## 324 NA NA
## 325 NA NA
## 326 NA NA
## 327 NA NA
## 328 NA NA
## 329 NA NA
## 330 NA NA
## 331 NA NA
## 332 NA NA
## 333 NA NA
## 334 NA NA
## 335 NA NA
## 336 NA NA
## 337 NA NA
## 338 NA NA
## 339 NA NA
## 340 NA NA
## 341 NA NA
## 342 NA NA
## 343 NA NA
## 344 NA NA
## 345 NA NA
## 346 NA NA
## 347 NA NA
## 348 NA NA
## 349 NA NA
## 350 NA NA
## 351 NA NA
## 352 NA NA
## 353 NA NA
## 354 NA NA
## 355 NA NA
## 356 NA NA
## 357 NA NA
## 358 NA NA
## 359 NA NA
## 360 NA NA
## 361 NA NA
## 362 NA NA
## 363 NA NA
## 364 NA NA
## 365 NA NA
## 366 NA NA
## 367 NA NA
## 368 NA NA
## 369 NA NA
## 370 NA NA
## 371 NA NA
## 372 NA NA
## 373 6.374 130.174
## 374 6.374 130.174
## 375 6.374 130.174
## 376 6.374 130.174
## 377 6.374 130.174
## 378 6.374 130.174
## 379 23.806 37.726
## 380 23.806 37.726
## 381 23.806 37.726
## 382 23.806 37.726
## 383 23.806 37.726
## 384 23.806 37.726
## 385 NA NA
## 386 NA NA
## 387 NA NA
## 388 NA NA
## 389 NA NA
## 390 NA NA
## 391 31.247 41.164
## 392 31.247 41.164
## 393 31.247 41.164
## 394 31.247 41.164
## 395 31.247 41.164
## 396 31.247 41.164
## 397 NA NA
## 398 NA NA
## 399 NA NA
## 400 NA NA
## 401 NA NA
## 402 NA NA
## 403 NA NA
## 404 NA NA
## 405 NA NA
## 406 NA NA
## 407 NA NA
## 408 NA NA
## 409 31.094 44.812
## 410 31.094 44.812
## 411 31.094 44.812
## 412 31.094 44.812
## 413 31.094 44.812
## 414 31.094 44.812
## 415 1.364 57.858
## 416 1.364 57.858
## 417 1.364 57.858
## 418 1.364 57.858
## 419 1.364 57.858
## 420 1.364 57.858
## 421 NA NA
## 422 NA NA
## 423 NA NA
## 424 NA NA
## 425 NA NA
## 426 NA NA
## 427 32.463 56.262
## 428 32.463 56.262
## 429 32.463 56.262
## 430 32.463 56.262
## 431 32.463 56.262
## 432 32.463 56.262
## 433 NA NA
## 434 NA NA
## 435 NA NA
## 436 NA NA
## 437 NA NA
## 438 NA NA
## 439 NA NA
## 440 NA NA
## 441 NA NA
## 442 NA NA
## 443 NA NA
## 444 NA NA
## 445 NA NA
## 446 NA NA
## 447 NA NA
## 448 NA NA
## 449 NA NA
## 450 NA NA
## 451 NA NA
## 452 NA NA
## 453 NA NA
## 454 NA NA
## 455 NA NA
## 456 NA NA
## 457 NA NA
## 458 NA NA
## 459 NA NA
## 460 NA NA
## 461 NA NA
## 462 NA NA
## 463 NA NA
## 464 NA NA
## 465 NA NA
## 466 NA NA
## 467 NA NA
## 468 NA NA
## 469 NA NA
## 470 NA NA
## 471 NA NA
## 472 NA NA
## 473 NA NA
## 474 NA NA
## 475 3.463 31.421
## 476 3.463 31.421
## 477 3.463 31.421
## 478 3.463 31.421
## 479 3.463 31.421
## 480 3.463 31.421
## 481 NA NA
## 482 NA NA
## 483 NA NA
## 484 NA NA
## 485 NA NA
## 486 NA NA
## 487 NA NA
## 488 NA NA
## 489 NA NA
## 490 NA NA
## 491 NA NA
## 492 NA NA
## 493 14.992 51.428
## 494 14.992 51.428
## 495 14.992 51.428
## 496 14.992 51.428
## 497 14.992 51.428
## 498 14.992 51.428
## 499 NA NA
## 500 NA NA
## 501 NA NA
## 502 NA NA
## 503 NA NA
## 504 NA NA
## 505 NA NA
## 506 NA NA
## 507 NA NA
## 508 NA NA
## 509 NA NA
## 510 NA NA
## 511 18.525 29.548
## 512 18.525 29.548
## 513 18.525 29.548
## 514 18.525 29.548
## 515 18.525 29.548
## 516 18.525 29.548
## 517 NA NA
## 518 NA NA
## 519 NA NA
## 520 NA NA
## 521 NA NA
## 522 NA NA
## 523 NA NA
## 524 NA NA
## 525 NA NA
## 526 NA NA
## 527 NA NA
## 528 NA NA
## 529 NA NA
## 530 NA NA
## 531 NA NA
## 532 NA NA
## 533 NA NA
## 534 NA NA
## 535 NA NA
## 536 NA NA
## 537 NA NA
## 538 NA NA
## 539 NA NA
## 540 NA NA
## 541 NA NA
## 542 NA NA
## 543 NA NA
## 544 NA NA
## 545 NA NA
## 546 NA NA
## 547 NA NA
## 548 NA NA
## 549 NA NA
## 550 NA NA
## 551 NA NA
## 552 NA NA
## 553 NA NA
## 554 NA NA
## 555 NA NA
## 556 NA NA
## 557 NA NA
## 558 NA NA
## 559 NA NA
## 560 NA NA
## 561 NA NA
## 562 NA NA
## 563 NA NA
## 564 NA NA
## 565 NA NA
## 566 NA NA
## 567 NA NA
## 568 NA NA
## 569 NA NA
## 570 NA NA
## 571 NA NA
## 572 NA NA
## 573 NA NA
## 574 NA NA
## 575 NA NA
## 576 NA NA
## 577 NA NA
## 578 NA NA
## 579 NA NA
## 580 NA NA
## 581 NA NA
## 582 NA NA
## 583 26.115 49.772
## 584 26.115 49.772
## 585 26.115 49.772
## 586 26.115 49.772
## 587 26.115 49.772
## 588 26.115 49.772
## 589 NA NA
## 590 NA NA
## 591 NA NA
## 592 NA NA
## 593 NA NA
## 594 NA NA
## 595 NA NA
## 596 NA NA
## 597 NA NA
## 598 NA NA
## 599 NA NA
## 600 NA NA
## 601 NA NA
## 602 NA NA
## 603 NA NA
## 604 NA NA
## 605 NA NA
## 606 NA NA
## 607 NA NA
## 608 NA NA
## 609 NA NA
## 610 NA NA
## 611 NA NA
## 612 NA NA
## 613 NA NA
## 614 NA NA
## 615 NA NA
## 616 NA NA
## 617 NA NA
## 618 NA NA
## 619 NA NA
## 620 NA NA
## 621 NA NA
## 622 NA NA
## 623 NA NA
## 624 NA NA
## 625 NA NA
## 626 NA NA
## 627 NA NA
## 628 NA NA
## 629 NA NA
## 630 NA NA
## 631 NA NA
## 632 NA NA
## 633 NA NA
## 634 NA NA
## 635 NA NA
## 636 NA NA
## 637 NA NA
## 638 NA NA
## 639 NA NA
## 640 NA NA
## 641 NA NA
## 642 NA NA
## 643 NA NA
## 644 NA NA
## 645 NA NA
## 646 NA NA
## 647 NA NA
## 648 NA NA
## 649 NA NA
## 650 NA NA
## 651 NA NA
## 652 NA NA
## 653 NA NA
## 654 NA NA
## 655 NA NA
## 656 NA NA
## 657 NA NA
## 658 NA NA
## 659 NA NA
## 660 NA NA
## 661 NA NA
## 662 NA NA
## 663 NA NA
## 664 NA NA
## 665 NA NA
## 666 NA NA
## 667 NA NA
## 668 NA NA
## 669 NA NA
## 670 NA NA
## 671 NA NA
## 672 NA NA
## 673 NA NA
## 674 NA NA
## 675 NA NA
## 676 NA NA
## 677 NA NA
## 678 NA NA
## 679 NA NA
## 680 NA NA
## 681 NA NA
## 682 NA NA
## 683 NA NA
## 684 NA NA
## 685 NA NA
## 686 NA NA
## 687 NA NA
## 688 NA NA
## 689 NA NA
## 690 NA NA
## 691 NA NA
## 692 NA NA
## 693 NA NA
## 694 NA NA
## 695 NA NA
## 696 NA NA
## 697 NA NA
## 698 NA NA
## 699 NA NA
## 700 NA NA
## 701 NA NA
## 702 NA NA
## 703 NA NA
## 704 NA NA
## 705 NA NA
## 706 NA NA
## 707 NA NA
## 708 NA NA
## 709 NA NA
## 710 NA NA
## 711 NA NA
## 712 NA NA
## 713 NA NA
## 714 NA NA
## 715 NA NA
## 716 NA NA
## 717 NA NA
## 718 NA NA
## 719 NA NA
## 720 NA NA
## 721 NA NA
## 722 NA NA
## 723 NA NA
## 724 NA NA
## 725 NA NA
## 726 NA NA
## 727 NA NA
## 728 NA NA
## 729 NA NA
## 730 NA NA
## 731 NA NA
## 732 NA NA
## 733 NA NA
## 734 NA NA
## 735 NA NA
## 736 NA NA
## 737 NA NA
## 738 NA NA
## 739 NA NA
## 740 NA NA
## 741 NA NA
## 742 NA NA
## 743 NA NA
## 744 NA NA
## 745 46.500 66.288
## 746 46.500 66.288
## 747 46.500 66.288
## 748 46.500 66.288
## 749 46.500 66.288
## 750 46.500 66.288
## 751 NA NA
## 752 NA NA
## 753 NA NA
## 754 NA NA
## 755 NA NA
## 756 NA NA
## 757 NA NA
## 758 NA NA
## 759 NA NA
## 760 NA NA
## 761 NA NA
## 762 NA NA
## 763 NA NA
## 764 NA NA
## 765 NA NA
## 766 NA NA
## 767 NA NA
## 768 NA NA
## 769 NA NA
## 770 NA NA
## 771 NA NA
## 772 NA NA
## 773 NA NA
## 774 NA NA
## 775 NA NA
## 776 NA NA
## 777 NA NA
## 778 NA NA
## 779 NA NA
## 780 NA NA
## 781 NA NA
## 782 NA NA
## 783 NA NA
## 784 NA NA
## 785 NA NA
## 786 NA NA
## 787 3.983 79.673
## 788 3.983 79.673
## 789 3.983 79.673
## 790 3.983 79.673
## 791 3.983 79.673
## 792 3.983 79.673
## 793 NA NA
## 794 NA NA
## 795 NA NA
## 796 NA NA
## 797 NA NA
## 798 NA NA
## 799 NA NA
## 800 NA NA
## 801 NA NA
## 802 NA NA
## 803 NA NA
## 804 NA NA
## 805 NA NA
## 806 NA NA
## 807 NA NA
## 808 NA NA
## 809 NA NA
## 810 NA NA
## 811 NA NA
## 812 NA NA
## 813 NA NA
## 814 NA NA
## 815 NA NA
## 816 NA NA
## 817 NA NA
## 818 NA NA
## 819 NA NA
## 820 NA NA
## 821 NA NA
## 822 NA NA
## 823 NA NA
## 824 NA NA
## 825 NA NA
## 826 NA NA
## 827 NA NA
## 828 NA NA
## 829 NA NA
## 830 NA NA
## 831 NA NA
## 832 NA NA
## 833 NA NA
## 834 NA NA
## 835 NA NA
## 836 NA NA
## 837 NA NA
## 838 NA NA
## 839 NA NA
## 840 NA NA
## 841 NA NA
## 842 NA NA
## 843 NA NA
## 844 NA NA
## 845 NA NA
## 846 NA NA
## 847 NA NA
## 848 NA NA
## 849 NA NA
## 850 NA NA
## 851 NA NA
## 852 NA NA
## 853 NA NA
## 854 NA NA
## 855 NA NA
## 856 NA NA
## 857 NA NA
## 858 NA NA
## 859 NA NA
## 860 NA NA
## 861 NA NA
## 862 NA NA
## 863 NA NA
## 864 NA NA
## 865 NA NA
## 866 NA NA
## 867 NA NA
## 868 NA NA
## 869 NA NA
## 870 NA NA
## 871 NA NA
## 872 NA NA
## 873 NA NA
## 874 NA NA
## 875 NA NA
## 876 NA NA
## 877 NA NA
## 878 NA NA
## 879 NA NA
## 880 NA NA
## 881 NA NA
## 882 NA NA
## 883 NA NA
## 884 NA NA
## 885 NA NA
## 886 NA NA
## 887 NA NA
## 888 NA NA
## 889 36.585 74.619
## 890 36.585 74.619
## 891 36.585 74.619
## 892 36.585 74.619
## 893 36.585 74.619
## 894 36.585 74.619
## 895 NA NA
## 896 NA NA
## 897 NA NA
## 898 NA NA
## 899 NA NA
## 900 NA NA
## 901 65.688 88.684
## 902 65.688 88.684
## 903 65.688 88.684
## 904 65.688 88.684
## 905 65.688 88.684
## 906 65.688 88.684
## 907 3.239 78.138
## 908 3.239 78.138
## 909 3.239 78.138
## 910 3.239 78.138
## 911 3.239 78.138
## 912 3.239 78.138
## 913 NA NA
## 914 NA NA
## 915 NA NA
## 916 NA NA
## 917 NA NA
## 918 NA NA
## 919 16.299 66.988
## 920 16.299 66.988
## 921 16.299 66.988
## 922 16.299 66.988
## 923 16.299 66.988
## 924 16.299 66.988
## 925 NA NA
## 926 NA NA
## 927 NA NA
## 928 NA NA
## 929 NA NA
## 930 NA NA
## 931 NA NA
## 932 NA NA
## 933 NA NA
## 934 NA NA
## 935 NA NA
## 936 NA NA
## 937 NA NA
## 938 NA NA
## 939 NA NA
## 940 NA NA
## 941 NA NA
## 942 NA NA
## 943 NA NA
## 944 NA NA
## 945 NA NA
## 946 NA NA
## 947 NA NA
## 948 NA NA
## 949 NA NA
## 950 NA NA
## 951 NA NA
## 952 NA NA
## 953 NA NA
## 954 NA NA
## 955 NA NA
## 956 NA NA
## 957 NA NA
## 958 NA NA
## 959 NA NA
## 960 NA NA
## 961 NA NA
## 962 NA NA
## 963 NA NA
## 964 NA NA
## 965 NA NA
## 966 NA NA
## 967 NA NA
## 968 NA NA
## 969 NA NA
## 970 NA NA
## 971 NA NA
## 972 NA NA
## 973 NA NA
## 974 NA NA
## 975 NA NA
## 976 NA NA
## 977 NA NA
## 978 NA NA
## 979 31.636 64.980
## 980 31.636 64.980
## 981 31.636 64.980
## 982 31.636 64.980
## 983 31.636 64.980
## 984 31.636 64.980
## 985 14.125 33.093
## 986 14.125 33.093
## 987 14.125 33.093
## 988 14.125 33.093
## 989 14.125 33.093
## 990 14.125 33.093
## 991 1.842 65.940
## 992 1.842 65.940
## 993 1.842 65.940
## 994 1.842 65.940
## 995 1.842 65.940
## 996 1.842 65.940
## 997 29.309 56.490
## 998 29.309 56.490
## 999 29.309 56.490
## 1000 29.309 56.490
## 1001 29.309 56.490
## 1002 29.309 56.490
## 1003 9.432 15.155
## 1004 9.432 15.155
## 1005 9.432 15.155
## 1006 9.432 15.155
## 1007 9.432 15.155
## 1008 9.432 15.155
## 1009 NA NA
## 1010 NA NA
## 1011 NA NA
## 1012 NA NA
## 1013 NA NA
## 1014 NA NA
## 1015 NA NA
## 1016 NA NA
## 1017 NA NA
## 1018 NA NA
## 1019 NA NA
## 1020 NA NA
## 1021 NA NA
## 1022 NA NA
## 1023 NA NA
## 1024 NA NA
## 1025 NA NA
## 1026 NA NA
## 1027 NA NA
## 1028 NA NA
## 1029 NA NA
## 1030 NA NA
## 1031 NA NA
## 1032 NA NA
## 1033 NA NA
## 1034 NA NA
## 1035 NA NA
## 1036 NA NA
## 1037 NA NA
## 1038 NA NA
## 1039 NA NA
## 1040 NA NA
## 1041 NA NA
## 1042 NA NA
## 1043 NA NA
## 1044 NA NA
## 1045 19.363 36.760
## 1046 19.363 36.760
## 1047 19.363 36.760
## 1048 19.363 36.760
## 1049 19.363 36.760
## 1050 19.363 36.760
## 1051 9.770 63.443
## 1052 9.770 63.443
## 1053 9.770 63.443
## 1054 9.770 63.443
## 1055 9.770 63.443
## 1056 9.770 63.443
## 1057 35.558 57.411
## 1058 35.558 57.411
## 1059 35.558 57.411
## 1060 35.558 57.411
## 1061 35.558 57.411
## 1062 35.558 57.411
## 1063 1.372 27.372
## 1064 1.372 27.372
## 1065 1.372 27.372
## 1066 1.372 27.372
## 1067 1.372 27.372
## 1068 1.372 27.372
## 1069 NA NA
## 1070 NA NA
## 1071 NA NA
## 1072 NA NA
## 1073 NA NA
## 1074 NA NA
## 1075 NA NA
## 1076 NA NA
## 1077 NA NA
## 1078 NA NA
## 1079 NA NA
## 1080 NA NA
## 1081 NA NA
## 1082 NA NA
## 1083 NA NA
## 1084 NA NA
## 1085 NA NA
## 1086 NA NA
## 1087 NA NA
## 1088 NA NA
## 1089 NA NA
## 1090 NA NA
## 1091 NA NA
## 1092 NA NA
## 1093 NA NA
## 1094 NA NA
## 1095 NA NA
## 1096 NA NA
## 1097 NA NA
## 1098 NA NA
## 1099 NA NA
## 1100 NA NA
## 1101 NA NA
## 1102 NA NA
## 1103 NA NA
## 1104 NA NA
## 1105 NA NA
## 1106 NA NA
## 1107 NA NA
## 1108 NA NA
## 1109 NA NA
## 1110 NA NA
## 1111 NA NA
## 1112 NA NA
## 1113 NA NA
## 1114 NA NA
## 1115 NA NA
## 1116 NA NA
## 1117 NA NA
## 1118 NA NA
## 1119 NA NA
## 1120 NA NA
## 1121 NA NA
## 1122 NA NA
## 1123 NA NA
## 1124 NA NA
## 1125 NA NA
## 1126 NA NA
## 1127 NA NA
## 1128 NA NA
## 1129 NA NA
## 1130 NA NA
## 1131 NA NA
## 1132 NA NA
## 1133 NA NA
## 1134 NA NA
## 1135 NA NA
## 1136 NA NA
## 1137 NA NA
## 1138 NA NA
## 1139 NA NA
## 1140 NA NA
## 1141 67.125 81.106
## 1142 67.125 81.106
## 1143 67.125 81.106
## 1144 67.125 81.106
## 1145 67.125 81.106
## 1146 67.125 81.106
## 1147 4.227 90.032
## 1148 4.227 90.032
## 1149 4.227 90.032
## 1150 4.227 90.032
## 1151 4.227 90.032
## 1152 4.227 90.032
## 1153 NA NA
## 1154 NA NA
## 1155 NA NA
## 1156 NA NA
## 1157 NA NA
## 1158 NA NA
## 1159 NA NA
## 1160 NA NA
## 1161 NA NA
## 1162 NA NA
## 1163 NA NA
## 1164 NA NA
## 1165 NA NA
## 1166 NA NA
## 1167 NA NA
## 1168 NA NA
## 1169 NA NA
## 1170 NA NA
## 1171 NA NA
## 1172 NA NA
## 1173 NA NA
## 1174 NA NA
## 1175 NA NA
## 1176 NA NA
## 1177 NA NA
## 1178 NA NA
## 1179 NA NA
## 1180 NA NA
## 1181 NA NA
## 1182 NA NA
## 1183 NA NA
## 1184 NA NA
## 1185 NA NA
## 1186 NA NA
## 1187 NA NA
## 1188 NA NA
## 1189 NA NA
## 1190 NA NA
## 1191 NA NA
## 1192 NA NA
## 1193 NA NA
## 1194 NA NA
## 1195 NA NA
## 1196 NA NA
## 1197 NA NA
## 1198 NA NA
## 1199 NA NA
## 1200 NA NA
## 1201 11.694 17.604
## 1202 11.694 17.604
## 1203 11.694 17.604
## 1204 11.694 17.604
## 1205 11.694 17.604
## 1206 11.694 17.604
## 1207 NA NA
## 1208 NA NA
## 1209 NA NA
## 1210 NA NA
## 1211 NA NA
## 1212 NA NA
## 1213 NA NA
## 1214 NA NA
## 1215 NA NA
## 1216 NA NA
## 1217 NA NA
## 1218 NA NA
## 1219 68.491 87.323
## 1220 68.491 87.323
## 1221 68.491 87.323
## 1222 68.491 87.323
## 1223 68.491 87.323
## 1224 68.491 87.323
## 1225 21.781 120.370
## 1226 21.781 120.370
## 1227 21.781 120.370
## 1228 21.781 120.370
## 1229 21.781 120.370
## 1230 21.781 120.370
## 1231 NA NA
## 1232 NA NA
## 1233 NA NA
## 1234 NA NA
## 1235 NA NA
## 1236 NA NA
## 1237 NA NA
## 1238 NA NA
## 1239 NA NA
## 1240 NA NA
## 1241 NA NA
## 1242 NA NA
## 1243 NA NA
## 1244 NA NA
## 1245 NA NA
## 1246 NA NA
## 1247 NA NA
## 1248 NA NA
## 1249 NA NA
## 1250 NA NA
## 1251 NA NA
## 1252 NA NA
## 1253 NA NA
## 1254 NA NA
## 1255 35.896 88.261
## 1256 35.896 88.261
## 1257 35.896 88.261
## 1258 35.896 88.261
## 1259 35.896 88.261
## 1260 35.896 88.261
## 1261 NA NA
## 1262 NA NA
## 1263 NA NA
## 1264 NA NA
## 1265 NA NA
## 1266 NA NA
## 1267 NA NA
## 1268 NA NA
## 1269 NA NA
## 1270 NA NA
## 1271 NA NA
## 1272 NA NA
## 1273 NA NA
## 1274 NA NA
## 1275 NA NA
## 1276 NA NA
## 1277 NA NA
## 1278 NA NA
## 1279 NA NA
## 1280 NA NA
## 1281 NA NA
## 1282 NA NA
## 1283 NA NA
## 1284 NA NA
## 1285 NA NA
## 1286 NA NA
## 1287 NA NA
## 1288 NA NA
## 1289 NA NA
## 1290 NA NA
## 1291 NA NA
## 1292 NA NA
## 1293 NA NA
## 1294 NA NA
## 1295 NA NA
## 1296 NA NA
## 1297 69.370 88.610
## 1298 69.370 88.610
## 1299 69.370 88.610
## 1300 69.370 88.610
## 1301 69.370 88.610
## 1302 69.370 88.610
## 1303 14.122 51.805
## 1304 14.122 51.805
## 1305 14.122 51.805
## 1306 14.122 51.805
## 1307 14.122 51.805
## 1308 14.122 51.805
## 1309 NA NA
## 1310 NA NA
## 1311 NA NA
## 1312 NA NA
## 1313 NA NA
## 1314 NA NA
## 1315 NA NA
## 1316 NA NA
## 1317 NA NA
## 1318 NA NA
## 1319 NA NA
## 1320 NA NA
## 1321 NA NA
## 1322 NA NA
## 1323 NA NA
## 1324 NA NA
## 1325 NA NA
## 1326 NA NA
## 1327 44.610 96.893
## 1328 44.610 96.893
## 1329 44.610 96.893
## 1330 44.610 96.893
## 1331 44.610 96.893
## 1332 44.610 96.893
## 1333 NA NA
## 1334 NA NA
## 1335 NA NA
## 1336 NA NA
## 1337 NA NA
## 1338 NA NA
## 1339 NA NA
## 1340 NA NA
## 1341 NA NA
## 1342 NA NA
## 1343 NA NA
## 1344 NA NA
## 1345 10.294 36.540
## 1346 10.294 36.540
## 1347 10.294 36.540
## 1348 10.294 36.540
## 1349 10.294 36.540
## 1350 10.294 36.540
## 1351 9.936 158.686
## 1352 9.936 158.686
## 1353 9.936 158.686
## 1354 9.936 158.686
## 1355 9.936 158.686
## 1356 9.936 158.686
## 1357 NA NA
## 1358 NA NA
## 1359 NA NA
## 1360 NA NA
## 1361 NA NA
## 1362 NA NA
## 1363 29.392 108.429
## 1364 29.392 108.429
## 1365 29.392 108.429
## 1366 29.392 108.429
## 1367 29.392 108.429
## 1368 29.392 108.429
## 1369 NA NA
## 1370 NA NA
## 1371 NA NA
## 1372 NA NA
## 1373 NA NA
## 1374 NA NA
## 1375 NA NA
## 1376 NA NA
## 1377 NA NA
## 1378 NA NA
## 1379 NA NA
## 1380 NA NA
## 1381 NA NA
## 1382 NA NA
## 1383 NA NA
## 1384 NA NA
## 1385 NA NA
## 1386 NA NA
## 1387 NA NA
## 1388 NA NA
## 1389 NA NA
## 1390 NA NA
## 1391 NA NA
## 1392 NA NA
## 1393 NA NA
## 1394 NA NA
## 1395 NA NA
## 1396 NA NA
## 1397 NA NA
## 1398 NA NA
## 1399 NA NA
## 1400 NA NA
## 1401 NA NA
## 1402 NA NA
## 1403 NA NA
## 1404 NA NA
## 1405 NA NA
## 1406 NA NA
## 1407 NA NA
## 1408 NA NA
## 1409 NA NA
## 1410 NA NA
## 1411 NA NA
## 1412 NA NA
## 1413 NA NA
## 1414 NA NA
## 1415 NA NA
## 1416 NA NA
## 1417 14.248 31.895
## 1418 14.248 31.895
## 1419 14.248 31.895
## 1420 14.248 31.895
## 1421 14.248 31.895
## 1422 14.248 31.895
## 1423 8.383 21.434
## 1424 8.383 21.434
## 1425 8.383 21.434
## 1426 8.383 21.434
## 1427 8.383 21.434
## 1428 8.383 21.434
## 1429 NA NA
## 1430 NA NA
## 1431 NA NA
## 1432 NA NA
## 1433 NA NA
## 1434 NA NA
## 1435 NA NA
## 1436 NA NA
## 1437 NA NA
## 1438 NA NA
## 1439 NA NA
## 1440 NA NA
## 1441 NA NA
## 1442 NA NA
## 1443 NA NA
## 1444 NA NA
## 1445 NA NA
## 1446 NA NA
## 1447 17.521 25.775
## 1448 17.521 25.775
## 1449 17.521 25.775
## 1450 17.521 25.775
## 1451 17.521 25.775
## 1452 17.521 25.775
## 1453 104.947 116.741
## 1454 104.947 116.741
## 1455 104.947 116.741
## 1456 104.947 116.741
## 1457 104.947 116.741
## 1458 104.947 116.741
## 1459 NA NA
## 1460 NA NA
## 1461 NA NA
## 1462 NA NA
## 1463 NA NA
## 1464 NA NA
## 1465 NA NA
## 1466 NA NA
## 1467 NA NA
## 1468 NA NA
## 1469 NA NA
## 1470 NA NA
## 1471 NA NA
## 1472 NA NA
## 1473 NA NA
## 1474 NA NA
## 1475 NA NA
## 1476 NA NA
## 1477 NA NA
## 1478 NA NA
## 1479 NA NA
## 1480 NA NA
## 1481 NA NA
## 1482 NA NA
## 1483 16.101 32.370
## 1484 16.101 32.370
## 1485 16.101 32.370
## 1486 16.101 32.370
## 1487 16.101 32.370
## 1488 16.101 32.370
## 1489 NA NA
## 1490 NA NA
## 1491 NA NA
## 1492 NA NA
## 1493 NA NA
## 1494 NA NA
## 1495 NA NA
## 1496 NA NA
## 1497 NA NA
## 1498 NA NA
## 1499 NA NA
## 1500 NA NA
## 1501 NA NA
## 1502 NA NA
## 1503 NA NA
## 1504 NA NA
## 1505 NA NA
## 1506 NA NA
## 1507 NA NA
## 1508 NA NA
## 1509 NA NA
## 1510 NA NA
## 1511 NA NA
## 1512 NA NA
## 1513 23.174 27.021
## 1514 23.174 27.021
## 1515 23.174 27.021
## 1516 23.174 27.021
## 1517 23.174 27.021
## 1518 23.174 27.021
## 1519 NA NA
## 1520 NA NA
## 1521 NA NA
## 1522 NA NA
## 1523 NA NA
## 1524 NA NA
## 1525 NA NA
## 1526 NA NA
## 1527 NA NA
## 1528 NA NA
## 1529 NA NA
## 1530 NA NA
## 1531 NA NA
## 1532 NA NA
## 1533 NA NA
## 1534 NA NA
## 1535 NA NA
## 1536 NA NA
## 1537 NA NA
## 1538 NA NA
## 1539 NA NA
## 1540 NA NA
## 1541 NA NA
## 1542 NA NA
## 1543 NA NA
## 1544 NA NA
## 1545 NA NA
## 1546 NA NA
## 1547 NA NA
## 1548 NA NA
## 1549 49.571 109.437
## 1550 49.571 109.437
## 1551 49.571 109.437
## 1552 49.571 109.437
## 1553 49.571 109.437
## 1554 49.571 109.437
## 1555 NA NA
## 1556 NA NA
## 1557 NA NA
## 1558 NA NA
## 1559 NA NA
## 1560 NA NA
## 1561 40.000 83.291
## 1562 40.000 83.291
## 1563 40.000 83.291
## 1564 40.000 83.291
## 1565 40.000 83.291
## 1566 40.000 83.291
## 1567 NA NA
## 1568 NA NA
## 1569 NA NA
## 1570 NA NA
## 1571 NA NA
## 1572 NA NA
## 1573 NA NA
## 1574 NA NA
## 1575 NA NA
## 1576 NA NA
## 1577 NA NA
## 1578 NA NA
## 1579 NA NA
## 1580 NA NA
## 1581 NA NA
## 1582 NA NA
## 1583 NA NA
## 1584 NA NA
## 1585 NA NA
## 1586 NA NA
## 1587 NA NA
## 1588 NA NA
## 1589 NA NA
## 1590 NA NA
## 1591 NA NA
## 1592 NA NA
## 1593 NA NA
## 1594 NA NA
## 1595 NA NA
## 1596 NA NA
## 1597 15.578 36.601
## 1598 15.578 36.601
## 1599 15.578 36.601
## 1600 15.578 36.601
## 1601 15.578 36.601
## 1602 15.578 36.601
## 1603 NA NA
## 1604 NA NA
## 1605 NA NA
## 1606 NA NA
## 1607 NA NA
## 1608 NA NA
## 1609 9.224 22.856
## 1610 9.224 22.856
## 1611 9.224 22.856
## 1612 9.224 22.856
## 1613 9.224 22.856
## 1614 9.224 22.856
## 1615 NA NA
## 1616 NA NA
## 1617 NA NA
## 1618 NA NA
## 1619 NA NA
## 1620 NA NA
## 1621 NA NA
## 1622 NA NA
## 1623 NA NA
## 1624 NA NA
## 1625 NA NA
## 1626 NA NA
## 1627 NA NA
## 1628 NA NA
## 1629 NA NA
## 1630 NA NA
## 1631 NA NA
## 1632 NA NA
## 1633 21.471 33.053
## 1634 21.471 33.053
## 1635 21.471 33.053
## 1636 21.471 33.053
## 1637 21.471 33.053
## 1638 21.471 33.053
## 1639 NA NA
## 1640 NA NA
## 1641 NA NA
## 1642 NA NA
## 1643 NA NA
## 1644 NA NA
## 1645 1.186 59.541
## 1646 1.186 59.541
## 1647 1.186 59.541
## 1648 1.186 59.541
## 1649 1.186 59.541
## 1650 1.186 59.541
## 1651 13.752 36.948
## 1652 13.752 36.948
## 1653 13.752 36.948
## 1654 13.752 36.948
## 1655 13.752 36.948
## 1656 13.752 36.948
## 1657 NA NA
## 1658 NA NA
## 1659 NA NA
## 1660 NA NA
## 1661 NA NA
## 1662 NA NA
## 1663 NA NA
## 1664 NA NA
## 1665 NA NA
## 1666 NA NA
## 1667 NA NA
## 1668 NA NA
## 1669 13.535 33.126
## 1670 13.535 33.126
## 1671 13.535 33.126
## 1672 13.535 33.126
## 1673 13.535 33.126
## 1674 13.535 33.126
## 1675 NA NA
## 1676 NA NA
## 1677 NA NA
## 1678 NA NA
## 1679 NA NA
## 1680 NA NA
## 1681 NA NA
## 1682 NA NA
## 1683 NA NA
## 1684 NA NA
## 1685 NA NA
## 1686 NA NA
## 1687 NA NA
## 1688 NA NA
## 1689 NA NA
## 1690 NA NA
## 1691 NA NA
## 1692 NA NA
## 1693 NA NA
## 1694 NA NA
## 1695 NA NA
## 1696 NA NA
## 1697 NA NA
## 1698 NA NA
## 1699 1349.256 1354.321
## 1700 1349.256 1354.321
## 1701 1349.256 1354.321
## 1702 1349.256 1354.321
## 1703 1349.256 1354.321
## 1704 1349.256 1354.321
## 1705 10.328 18.950
## 1706 10.328 18.950
## 1707 10.328 18.950
## 1708 10.328 18.950
## 1709 10.328 18.950
## 1710 10.328 18.950
## 1711 NA NA
## 1712 NA NA
## 1713 NA NA
## 1714 NA NA
## 1715 NA NA
## 1716 NA NA
## 1717 NA NA
## 1718 NA NA
## 1719 NA NA
## 1720 NA NA
## 1721 NA NA
## 1722 NA NA
## 1723 9.706 32.702
## 1724 9.706 32.702
## 1725 9.706 32.702
## 1726 9.706 32.702
## 1727 9.706 32.702
## 1728 9.706 32.702
## 1729 10.497 32.149
## 1730 10.497 32.149
## 1731 10.497 32.149
## 1732 10.497 32.149
## 1733 10.497 32.149
## 1734 10.497 32.149
## 1735 NA NA
## 1736 NA NA
## 1737 NA NA
## 1738 NA NA
## 1739 NA NA
## 1740 NA NA
## 1741 15.149 27.059
## 1742 15.149 27.059
## 1743 15.149 27.059
## 1744 15.149 27.059
## 1745 15.149 27.059
## 1746 15.149 27.059
## 1747 NA NA
## 1748 NA NA
## 1749 NA NA
## 1750 NA NA
## 1751 NA NA
## 1752 NA NA
## 1753 14.301 19.297
## 1754 14.301 19.297
## 1755 14.301 19.297
## 1756 14.301 19.297
## 1757 14.301 19.297
## 1758 14.301 19.297
## 1759 2.538 78.538
## 1760 2.538 78.538
## 1761 2.538 78.538
## 1762 2.538 78.538
## 1763 2.538 78.538
## 1764 2.538 78.538
## 1765 NA NA
## 1766 NA NA
## 1767 NA NA
## 1768 NA NA
## 1769 NA NA
## 1770 NA NA
## 1771 NA NA
## 1772 NA NA
## 1773 NA NA
## 1774 NA NA
## 1775 NA NA
## 1776 NA NA
## 1777 NA NA
## 1778 NA NA
## 1779 NA NA
## 1780 NA NA
## 1781 NA NA
## 1782 NA NA
## 1783 10.549 34.404
## 1784 10.549 34.404
## 1785 10.549 34.404
## 1786 10.549 34.404
## 1787 10.549 34.404
## 1788 10.549 34.404
## 1789 NA NA
## 1790 NA NA
## 1791 NA NA
## 1792 NA NA
## 1793 NA NA
## 1794 NA NA
## 1795 NA NA
## 1796 NA NA
## 1797 NA NA
## 1798 NA NA
## 1799 NA NA
## 1800 NA NA
## 1801 0.944 15.647
## 1802 0.944 15.647
## 1803 0.944 15.647
## 1804 0.944 15.647
## 1805 0.944 15.647
## 1806 0.944 15.647
## 1807 NA NA
## 1808 NA NA
## 1809 NA NA
## 1810 NA NA
## 1811 NA NA
## 1812 NA NA
## 1813 NA NA
## 1814 NA NA
## 1815 NA NA
## 1816 NA NA
## 1817 NA NA
## 1818 NA NA
## 1819 16.091 33.320
## 1820 16.091 33.320
## 1821 16.091 33.320
## 1822 16.091 33.320
## 1823 16.091 33.320
## 1824 16.091 33.320
## 1825 NA NA
## 1826 NA NA
## 1827 NA NA
## 1828 NA NA
## 1829 NA NA
## 1830 NA NA
## 1831 NA NA
## 1832 NA NA
## 1833 NA NA
## 1834 NA NA
## 1835 NA NA
## 1836 NA NA
## 1837 NA NA
## 1838 NA NA
## 1839 NA NA
## 1840 NA NA
## 1841 NA NA
## 1842 NA NA
## 1843 NA NA
## 1844 NA NA
## 1845 NA NA
## 1846 NA NA
## 1847 NA NA
## 1848 NA NA
## 1849 NA NA
## 1850 NA NA
## 1851 NA NA
## 1852 NA NA
## 1853 NA NA
## 1854 NA NA
## 1855 1.570 20.956
## 1856 1.570 20.956
## 1857 1.570 20.956
## 1858 1.570 20.956
## 1859 1.570 20.956
## 1860 1.570 20.956
## 1861 NA NA
## 1862 NA NA
## 1863 NA NA
## 1864 NA NA
## 1865 NA NA
## 1866 NA NA
## 1867 NA NA
## 1868 NA NA
## 1869 NA NA
## 1870 NA NA
## 1871 NA NA
## 1872 NA NA
## 1873 NA NA
## 1874 NA NA
## 1875 NA NA
## 1876 NA NA
## 1877 NA NA
## 1878 NA NA
## 1879 NA NA
## 1880 NA NA
## 1881 NA NA
## 1882 NA NA
## 1883 NA NA
## 1884 NA NA
## 1885 NA NA
## 1886 NA NA
## 1887 NA NA
## 1888 NA NA
## 1889 NA NA
## 1890 NA NA
## 1891 NA NA
## 1892 NA NA
## 1893 NA NA
## 1894 NA NA
## 1895 NA NA
## 1896 NA NA
## 1897 NA NA
## 1898 NA NA
## 1899 NA NA
## 1900 NA NA
## 1901 NA NA
## 1902 NA NA
## 1903 NA NA
## 1904 NA NA
## 1905 NA NA
## 1906 NA NA
## 1907 NA NA
## 1908 NA NA
## 1909 NA NA
## 1910 NA NA
## 1911 NA NA
## 1912 NA NA
## 1913 NA NA
## 1914 NA NA
## 1915 NA NA
## 1916 NA NA
## 1917 NA NA
## 1918 NA NA
## 1919 NA NA
## 1920 NA NA
## 1921 NA NA
## 1922 NA NA
## 1923 NA NA
## 1924 NA NA
## 1925 NA NA
## 1926 NA NA
## 1927 NA NA
## 1928 NA NA
## 1929 NA NA
## 1930 NA NA
## 1931 NA NA
## 1932 NA NA
## 1933 NA NA
## 1934 NA NA
## 1935 NA NA
## 1936 NA NA
## 1937 NA NA
## 1938 NA NA
## 1939 NA NA
## 1940 NA NA
## 1941 NA NA
## 1942 NA NA
## 1943 NA NA
## 1944 NA NA
## 1945 NA NA
## 1946 NA NA
## 1947 NA NA
## 1948 NA NA
## 1949 NA NA
## 1950 NA NA
## 1951 NA NA
## 1952 NA NA
## 1953 NA NA
## 1954 NA NA
## 1955 NA NA
## 1956 NA NA
## 1957 NA NA
## 1958 NA NA
## 1959 NA NA
## 1960 NA NA
## 1961 NA NA
## 1962 NA NA
## 1963 26.308 47.677
## 1964 26.308 47.677
## 1965 26.308 47.677
## 1966 26.308 47.677
## 1967 26.308 47.677
## 1968 26.308 47.677
## 1969 33.723 62.262
## 1970 33.723 62.262
## 1971 33.723 62.262
## 1972 33.723 62.262
## 1973 33.723 62.262
## 1974 33.723 62.262
## 1975 NA NA
## 1976 NA NA
## 1977 NA NA
## 1978 NA NA
## 1979 NA NA
## 1980 NA NA
## 1981 NA NA
## 1982 NA NA
## 1983 NA NA
## 1984 NA NA
## 1985 NA NA
## 1986 NA NA
## 1987 NA NA
## 1988 NA NA
## 1989 NA NA
## 1990 NA NA
## 1991 NA NA
## 1992 NA NA
## 1993 44.750 65.198
## 1994 44.750 65.198
## 1995 44.750 65.198
## 1996 44.750 65.198
## 1997 44.750 65.198
## 1998 44.750 65.198
## 1999 NA NA
## 2000 NA NA
## 2001 NA NA
## 2002 NA NA
## 2003 NA NA
## 2004 NA NA
## 2005 NA NA
## 2006 NA NA
## 2007 NA NA
## 2008 NA NA
## 2009 NA NA
## 2010 NA NA
## 2011 NA NA
## 2012 NA NA
## 2013 NA NA
## 2014 NA NA
## 2015 NA NA
## 2016 NA NA
## 2017 NA NA
## 2018 NA NA
## 2019 NA NA
## 2020 NA NA
## 2021 NA NA
## 2022 NA NA
## 2023 NA NA
## 2024 NA NA
## 2025 NA NA
## 2026 NA NA
## 2027 NA NA
## 2028 NA NA
## 2029 NA NA
## 2030 NA NA
## 2031 NA NA
## 2032 NA NA
## 2033 NA NA
## 2034 NA NA
## 2035 7.854 11.254
## 2036 7.854 11.254
## 2037 7.854 11.254
## 2038 7.854 11.254
## 2039 7.854 11.254
## 2040 7.854 11.254
## 2041 NA NA
## 2042 NA NA
## 2043 NA NA
## 2044 NA NA
## 2045 NA NA
## 2046 NA NA
## 2047 22.686 35.370
## 2048 22.686 35.370
## 2049 22.686 35.370
## 2050 22.686 35.370
## 2051 22.686 35.370
## 2052 22.686 35.370
## 2053 14.731 25.465
## 2054 14.731 25.465
## 2055 14.731 25.465
## 2056 14.731 25.465
## 2057 14.731 25.465
## 2058 14.731 25.465
## 2059 NA NA
## 2060 NA NA
## 2061 NA NA
## 2062 NA NA
## 2063 NA NA
## 2064 NA NA
## 2065 NA NA
## 2066 NA NA
## 2067 NA NA
## 2068 NA NA
## 2069 NA NA
## 2070 NA NA
## 2071 NA NA
## 2072 NA NA
## 2073 NA NA
## 2074 NA NA
## 2075 NA NA
## 2076 NA NA
## 2077 7.629 18.812
## 2078 7.629 18.812
## 2079 7.629 18.812
## 2080 7.629 18.812
## 2081 7.629 18.812
## 2082 7.629 18.812
## 2083 NA NA
## 2084 NA NA
## 2085 NA NA
## 2086 NA NA
## 2087 NA NA
## 2088 NA NA
## 2089 NA NA
## 2090 NA NA
## 2091 NA NA
## 2092 NA NA
## 2093 NA NA
## 2094 NA NA
## 2095 NA NA
## 2096 NA NA
## 2097 NA NA
## 2098 NA NA
## 2099 NA NA
## 2100 NA NA
## 2101 NA NA
## 2102 NA NA
## 2103 NA NA
## 2104 NA NA
## 2105 NA NA
## 2106 NA NA
## 2107 NA NA
## 2108 NA NA
## 2109 NA NA
## 2110 NA NA
## 2111 NA NA
## 2112 NA NA
## 2113 NA NA
## 2114 NA NA
## 2115 NA NA
## 2116 NA NA
## 2117 NA NA
## 2118 NA NA
## 2119 NA NA
## 2120 NA NA
## 2121 NA NA
## 2122 NA NA
## 2123 NA NA
## 2124 NA NA
## 2125 NA NA
## 2126 NA NA
## 2127 NA NA
## 2128 NA NA
## 2129 NA NA
## 2130 NA NA
## 2131 NA NA
## 2132 NA NA
## 2133 NA NA
## 2134 NA NA
## 2135 NA NA
## 2136 NA NA
## 2137 NA NA
## 2138 NA NA
## 2139 NA NA
## 2140 NA NA
## 2141 NA NA
## 2142 NA NA
## 2143 NA NA
## 2144 NA NA
## 2145 NA NA
## 2146 NA NA
## 2147 NA NA
## 2148 NA NA
## 2149 NA NA
## 2150 NA NA
## 2151 NA NA
## 2152 NA NA
## 2153 NA NA
## 2154 NA NA
## 2155 NA NA
## 2156 NA NA
## 2157 NA NA
## 2158 NA NA
## 2159 NA NA
## 2160 NA NA
## 2161 NA NA
## 2162 NA NA
## 2163 NA NA
## 2164 NA NA
## 2165 NA NA
## 2166 NA NA
## 2167 NA NA
## 2168 NA NA
## 2169 NA NA
## 2170 NA NA
## 2171 NA NA
## 2172 NA NA
## 2173 NA NA
## 2174 NA NA
## 2175 NA NA
## 2176 NA NA
## 2177 NA NA
## 2178 NA NA
## 2179 NA NA
## 2180 NA NA
## 2181 NA NA
## 2182 NA NA
## 2183 NA NA
## 2184 NA NA
## 2185 NA NA
## 2186 NA NA
## 2187 NA NA
## 2188 NA NA
## 2189 NA NA
## 2190 NA NA
## 2191 13.360 46.032
## 2192 13.360 46.032
## 2193 13.360 46.032
## 2194 13.360 46.032
## 2195 13.360 46.032
## 2196 13.360 46.032
## 2197 1.951 42.446
## 2198 1.951 42.446
## 2199 1.951 42.446
## 2200 1.951 42.446
## 2201 1.951 42.446
## 2202 1.951 42.446
## 2203 8.636 22.186
## 2204 8.636 22.186
## 2205 8.636 22.186
## 2206 8.636 22.186
## 2207 8.636 22.186
## 2208 8.636 22.186
## 2209 NA NA
## 2210 NA NA
## 2211 NA NA
## 2212 NA NA
## 2213 NA NA
## 2214 NA NA
## 2215 NA NA
## 2216 NA NA
## 2217 NA NA
## 2218 NA NA
## 2219 NA NA
## 2220 NA NA
## 2221 NA NA
## 2222 NA NA
## 2223 NA NA
## 2224 NA NA
## 2225 NA NA
## 2226 NA NA
## 2227 NA NA
## 2228 NA NA
## 2229 NA NA
## 2230 NA NA
## 2231 NA NA
## 2232 NA NA
## 2233 17.701 26.160
## 2234 17.701 26.160
## 2235 17.701 26.160
## 2236 17.701 26.160
## 2237 17.701 26.160
## 2238 17.701 26.160
## 2239 NA NA
## 2240 NA NA
## 2241 NA NA
## 2242 NA NA
## 2243 NA NA
## 2244 NA NA
## 2245 NA NA
## 2246 NA NA
## 2247 NA NA
## 2248 NA NA
## 2249 NA NA
## 2250 NA NA
## 2251 NA NA
## 2252 NA NA
## 2253 NA NA
## 2254 NA NA
## 2255 NA NA
## 2256 NA NA
## 2257 NA NA
## 2258 NA NA
## 2259 NA NA
## 2260 NA NA
## 2261 NA NA
## 2262 NA NA
## 2263 NA NA
## 2264 NA NA
## 2265 NA NA
## 2266 NA NA
## 2267 NA NA
## 2268 NA NA
## 2269 NA NA
## 2270 NA NA
## 2271 NA NA
## 2272 NA NA
## 2273 NA NA
## 2274 NA NA
## 2275 NA NA
## 2276 NA NA
## 2277 NA NA
## 2278 NA NA
## 2279 NA NA
## 2280 NA NA
## 2281 NA NA
## 2282 NA NA
## 2283 NA NA
## 2284 NA NA
## 2285 NA NA
## 2286 NA NA
## 2287 NA NA
## 2288 NA NA
## 2289 NA NA
## 2290 NA NA
## 2291 NA NA
## 2292 NA NA
## 2293 NA NA
## 2294 NA NA
## 2295 NA NA
## 2296 NA NA
## 2297 NA NA
## 2298 NA NA
## 2299 NA NA
## 2300 NA NA
## 2301 NA NA
## 2302 NA NA
## 2303 NA NA
## 2304 NA NA
## 2305 NA NA
## 2306 NA NA
## 2307 NA NA
## 2308 NA NA
## 2309 NA NA
## 2310 NA NA
## 2311 NA NA
## 2312 NA NA
## 2313 NA NA
## 2314 NA NA
## 2315 NA NA
## 2316 NA NA
## 2317 NA NA
## 2318 NA NA
## 2319 NA NA
## 2320 NA NA
## 2321 NA NA
## 2322 NA NA
## 2323 NA NA
## 2324 NA NA
## 2325 NA NA
## 2326 NA NA
## 2327 NA NA
## 2328 NA NA
## 2329 26.066 49.417
## 2330 26.066 49.417
## 2331 26.066 49.417
## 2332 26.066 49.417
## 2333 26.066 49.417
## 2334 26.066 49.417
## 2335 NA NA
## 2336 NA NA
## 2337 NA NA
## 2338 NA NA
## 2339 NA NA
## 2340 NA NA
## 2341 NA NA
## 2342 NA NA
## 2343 NA NA
## 2344 NA NA
## 2345 NA NA
## 2346 NA NA
## 2347 NA NA
## 2348 NA NA
## 2349 NA NA
## 2350 NA NA
## 2351 NA NA
## 2352 NA NA
## 2353 NA NA
## 2354 NA NA
## 2355 NA NA
## 2356 NA NA
## 2357 NA NA
## 2358 NA NA
## 2359 14.476 26.207
## 2360 14.476 26.207
## 2361 14.476 26.207
## 2362 14.476 26.207
## 2363 14.476 26.207
## 2364 14.476 26.207
## 2365 NA NA
## 2366 NA NA
## 2367 NA NA
## 2368 NA NA
## 2369 NA NA
## 2370 NA NA
## 2371 12.768 19.522
## 2372 12.768 19.522
## 2373 12.768 19.522
## 2374 12.768 19.522
## 2375 12.768 19.522
## 2376 12.768 19.522
## 2377 NA NA
## 2378 NA NA
## 2379 NA NA
## 2380 NA NA
## 2381 NA NA
## 2382 NA NA
## 2383 NA NA
## 2384 NA NA
## 2385 NA NA
## 2386 NA NA
## 2387 NA NA
## 2388 NA NA
## 2389 NA NA
## 2390 NA NA
## 2391 NA NA
## 2392 NA NA
## 2393 NA NA
## 2394 NA NA
## 2395 NA NA
## 2396 NA NA
## 2397 NA NA
## 2398 NA NA
## 2399 NA NA
## 2400 NA NA
## 2401 NA NA
## 2402 NA NA
## 2403 NA NA
## 2404 NA NA
## 2405 NA NA
## 2406 NA NA
## 2407 NA NA
## 2408 NA NA
## 2409 NA NA
## 2410 NA NA
## 2411 NA NA
## 2412 NA NA
## 2413 NA NA
## 2414 NA NA
## 2415 NA NA
## 2416 NA NA
## 2417 NA NA
## 2418 NA NA
## 2419 NA NA
## 2420 NA NA
## 2421 NA NA
## 2422 NA NA
## 2423 NA NA
## 2424 NA NA
## 2425 NA NA
## 2426 NA NA
## 2427 NA NA
## 2428 NA NA
## 2429 NA NA
## 2430 NA NA
## 2431 15.720 36.066
## 2432 15.720 36.066
## 2433 15.720 36.066
## 2434 15.720 36.066
## 2435 15.720 36.066
## 2436 15.720 36.066
## 2437 NA NA
## 2438 NA NA
## 2439 NA NA
## 2440 NA NA
## 2441 NA NA
## 2442 NA NA
## 2443 NA NA
## 2444 NA NA
## 2445 NA NA
## 2446 NA NA
## 2447 NA NA
## 2448 NA NA
## 2449 NA NA
## 2450 NA NA
## 2451 NA NA
## 2452 NA NA
## 2453 NA NA
## 2454 NA NA
## 2455 14.951 19.759
## 2456 14.951 19.759
## 2457 14.951 19.759
## 2458 14.951 19.759
## 2459 14.951 19.759
## 2460 14.951 19.759
## 2461 NA NA
## 2462 NA NA
## 2463 NA NA
## 2464 NA NA
## 2465 NA NA
## 2466 NA NA
## 2467 8.287 40.506
## 2468 8.287 40.506
## 2469 8.287 40.506
## 2470 8.287 40.506
## 2471 8.287 40.506
## 2472 8.287 40.506
## 2473 NA NA
## 2474 NA NA
## 2475 NA NA
## 2476 NA NA
## 2477 NA NA
## 2478 NA NA
## 2479 NA NA
## 2480 NA NA
## 2481 NA NA
## 2482 NA NA
## 2483 NA NA
## 2484 NA NA
## 2485 10.155 22.198
## 2486 10.155 22.198
## 2487 10.155 22.198
## 2488 10.155 22.198
## 2489 10.155 22.198
## 2490 10.155 22.198
## 2491 NA NA
## 2492 NA NA
## 2493 NA NA
## 2494 NA NA
## 2495 NA NA
## 2496 NA NA
## 2497 NA NA
## 2498 NA NA
## 2499 NA NA
## 2500 NA NA
## 2501 NA NA
## 2502 NA NA
## 2503 NA NA
## 2504 NA NA
## 2505 NA NA
## 2506 NA NA
## 2507 NA NA
## 2508 NA NA
## 2509 NA NA
## 2510 NA NA
## 2511 NA NA
## 2512 NA NA
## 2513 NA NA
## 2514 NA NA
## 2515 NA NA
## 2516 NA NA
## 2517 NA NA
## 2518 NA NA
## 2519 NA NA
## 2520 NA NA
## 2521 21.157 28.045
## 2522 21.157 28.045
## 2523 21.157 28.045
## 2524 21.157 28.045
## 2525 21.157 28.045
## 2526 21.157 28.045
## 2527 12.057 27.598
## 2528 12.057 27.598
## 2529 12.057 27.598
## 2530 12.057 27.598
## 2531 12.057 27.598
## 2532 12.057 27.598
## 2533 NA NA
## 2534 NA NA
## 2535 NA NA
## 2536 NA NA
## 2537 NA NA
## 2538 NA NA
## 2539 NA NA
## 2540 NA NA
## 2541 NA NA
## 2542 NA NA
## 2543 NA NA
## 2544 NA NA
## 2545 5.125 34.921
## 2546 5.125 34.921
## 2547 5.125 34.921
## 2548 5.125 34.921
## 2549 5.125 34.921
## 2550 5.125 34.921
## 2551 NA NA
## 2552 NA NA
## 2553 NA NA
## 2554 NA NA
## 2555 NA NA
## 2556 NA NA
## 2557 5.190 53.413
## 2558 5.190 53.413
## 2559 5.190 53.413
## 2560 5.190 53.413
## 2561 5.190 53.413
## 2562 5.190 53.413
## 2563 42.996 77.427
## 2564 42.996 77.427
## 2565 42.996 77.427
## 2566 42.996 77.427
## 2567 42.996 77.427
## 2568 42.996 77.427
## 2569 82.054 108.601
## 2570 82.054 108.601
## 2571 82.054 108.601
## 2572 82.054 108.601
## 2573 82.054 108.601
## 2574 82.054 108.601
## 2575 7.652 21.091
## 2576 7.652 21.091
## 2577 7.652 21.091
## 2578 7.652 21.091
## 2579 7.652 21.091
## 2580 7.652 21.091
## 2581 NA NA
## 2582 NA NA
## 2583 NA NA
## 2584 NA NA
## 2585 NA NA
## 2586 NA NA
## 2587 NA NA
## 2588 NA NA
## 2589 NA NA
## 2590 NA NA
## 2591 NA NA
## 2592 NA NA
## 2593 NA NA
## 2594 NA NA
## 2595 NA NA
## 2596 NA NA
## 2597 NA NA
## 2598 NA NA
## 2599 NA NA
## 2600 NA NA
## 2601 NA NA
## 2602 NA NA
## 2603 NA NA
## 2604 NA NA
## 2605 NA NA
## 2606 NA NA
## 2607 NA NA
## 2608 NA NA
## 2609 NA NA
## 2610 NA NA
## 2611 NA NA
## 2612 NA NA
## 2613 NA NA
## 2614 NA NA
## 2615 NA NA
## 2616 NA NA
## 2617 NA NA
## 2618 NA NA
## 2619 NA NA
## 2620 NA NA
## 2621 NA NA
## 2622 NA NA
## 2623 NA NA
## 2624 NA NA
## 2625 NA NA
## 2626 NA NA
## 2627 NA NA
## 2628 NA NA
## 2629 NA NA
## 2630 NA NA
## 2631 NA NA
## 2632 NA NA
## 2633 NA NA
## 2634 NA NA
## 2635 4.125 53.145
## 2636 4.125 53.145
## 2637 4.125 53.145
## 2638 4.125 53.145
## 2639 4.125 53.145
## 2640 4.125 53.145
## 2641 NA NA
## 2642 NA NA
## 2643 NA NA
## 2644 NA NA
## 2645 NA NA
## 2646 NA NA
## 2647 NA NA
## 2648 NA NA
## 2649 NA NA
## 2650 NA NA
## 2651 NA NA
## 2652 NA NA
## 2653 NA NA
## 2654 NA NA
## 2655 NA NA
## 2656 NA NA
## 2657 NA NA
## 2658 NA NA
## 2659 NA NA
## 2660 NA NA
## 2661 NA NA
## 2662 NA NA
## 2663 NA NA
## 2664 NA NA
## 2665 25.233 35.974
## 2666 25.233 35.974
## 2667 25.233 35.974
## 2668 25.233 35.974
## 2669 25.233 35.974
## 2670 25.233 35.974
## 2671 NA NA
## 2672 NA NA
## 2673 NA NA
## 2674 NA NA
## 2675 NA NA
## 2676 NA NA
## 2677 NA NA
## 2678 NA NA
## 2679 NA NA
## 2680 NA NA
## 2681 NA NA
## 2682 NA NA
## 2683 NA NA
## 2684 NA NA
## 2685 NA NA
## 2686 NA NA
## 2687 NA NA
## 2688 NA NA
## 2689 NA NA
## 2690 NA NA
## 2691 NA NA
## 2692 NA NA
## 2693 NA NA
## 2694 NA NA
## 2695 12.802 19.048
## 2696 12.802 19.048
## 2697 12.802 19.048
## 2698 12.802 19.048
## 2699 12.802 19.048
## 2700 12.802 19.048
## 2701 NA NA
## 2702 NA NA
## 2703 NA NA
## 2704 NA NA
## 2705 NA NA
## 2706 NA NA
## 2707 NA NA
## 2708 NA NA
## 2709 NA NA
## 2710 NA NA
## 2711 NA NA
## 2712 NA NA
## 2713 25.007 41.396
## 2714 25.007 41.396
## 2715 25.007 41.396
## 2716 25.007 41.396
## 2717 25.007 41.396
## 2718 25.007 41.396
## 2719 12.329 19.259
## 2720 12.329 19.259
## 2721 12.329 19.259
## 2722 12.329 19.259
## 2723 12.329 19.259
## 2724 12.329 19.259
## 2725 10.246 15.903
## 2726 10.246 15.903
## 2727 10.246 15.903
## 2728 10.246 15.903
## 2729 10.246 15.903
## 2730 10.246 15.903
## 2731 NA NA
## 2732 NA NA
## 2733 NA NA
## 2734 NA NA
## 2735 NA NA
## 2736 NA NA
## 2737 NA NA
## 2738 NA NA
## 2739 NA NA
## 2740 NA NA
## 2741 NA NA
## 2742 NA NA
## 2743 NA NA
## 2744 NA NA
## 2745 NA NA
## 2746 NA NA
## 2747 NA NA
## 2748 NA NA
## 2749 NA NA
## 2750 NA NA
## 2751 NA NA
## 2752 NA NA
## 2753 NA NA
## 2754 NA NA
## 2755 NA NA
## 2756 NA NA
## 2757 NA NA
## 2758 NA NA
## 2759 NA NA
## 2760 NA NA
## 2761 25.644 69.733
## 2762 25.644 69.733
## 2763 25.644 69.733
## 2764 25.644 69.733
## 2765 25.644 69.733
## 2766 25.644 69.733
## 2767 NA NA
## 2768 NA NA
## 2769 NA NA
## 2770 NA NA
## 2771 NA NA
## 2772 NA NA
## 2773 NA NA
## 2774 NA NA
## 2775 NA NA
## 2776 NA NA
## 2777 NA NA
## 2778 NA NA
## 2779 NA NA
## 2780 NA NA
## 2781 NA NA
## 2782 NA NA
## 2783 NA NA
## 2784 NA NA
## 2785 NA NA
## 2786 NA NA
## 2787 NA NA
## 2788 NA NA
## 2789 NA NA
## 2790 NA NA
## 2791 NA NA
## 2792 NA NA
## 2793 NA NA
## 2794 NA NA
## 2795 NA NA
## 2796 NA NA
## 2797 NA NA
## 2798 NA NA
## 2799 NA NA
## 2800 NA NA
## 2801 NA NA
## 2802 NA NA
## 2803 44.392 53.649
## 2804 44.392 53.649
## 2805 44.392 53.649
## 2806 44.392 53.649
## 2807 44.392 53.649
## 2808 44.392 53.649
## 2809 NA NA
## 2810 NA NA
## 2811 NA NA
## 2812 NA NA
## 2813 NA NA
## 2814 NA NA
## 2815 3.389 7.877
## 2816 3.389 7.877
## 2817 3.389 7.877
## 2818 3.389 7.877
## 2819 3.389 7.877
## 2820 3.389 7.877
## 2821 NA NA
## 2822 NA NA
## 2823 NA NA
## 2824 NA NA
## 2825 NA NA
## 2826 NA NA
## 2827 NA NA
## 2828 NA NA
## 2829 NA NA
## 2830 NA NA
## 2831 NA NA
## 2832 NA NA
## 2833 NA NA
## 2834 NA NA
## 2835 NA NA
## 2836 NA NA
## 2837 NA NA
## 2838 NA NA
## 2839 26.573 42.853
## 2840 26.573 42.853
## 2841 26.573 42.853
## 2842 26.573 42.853
## 2843 26.573 42.853
## 2844 26.573 42.853
## 2845 NA NA
## 2846 NA NA
## 2847 NA NA
## 2848 NA NA
## 2849 NA NA
## 2850 NA NA
## 2851 22.088 33.231
## 2852 22.088 33.231
## 2853 22.088 33.231
## 2854 22.088 33.231
## 2855 22.088 33.231
## 2856 22.088 33.231
## 2857 2.080 48.901
## 2858 2.080 48.901
## 2859 2.080 48.901
## 2860 2.080 48.901
## 2861 2.080 48.901
## 2862 2.080 48.901
## 2863 NA NA
## 2864 NA NA
## 2865 NA NA
## 2866 NA NA
## 2867 NA NA
## 2868 NA NA
## 2869 NA NA
## 2870 NA NA
## 2871 NA NA
## 2872 NA NA
## 2873 NA NA
## 2874 NA NA
## 2875 NA NA
## 2876 NA NA
## 2877 NA NA
## 2878 NA NA
## 2879 NA NA
## 2880 NA NA
## 2881 NA NA
## 2882 NA NA
## 2883 NA NA
## 2884 NA NA
## 2885 NA NA
## 2886 NA NA
## 2887 13.384 23.472
## 2888 13.384 23.472
## 2889 13.384 23.472
## 2890 13.384 23.472
## 2891 13.384 23.472
## 2892 13.384 23.472
## 2893 NA NA
## 2894 NA NA
## 2895 NA NA
## 2896 NA NA
## 2897 NA NA
## 2898 NA NA
## 2899 NA NA
## 2900 NA NA
## 2901 NA NA
## 2902 NA NA
## 2903 NA NA
## 2904 NA NA
## 2905 2.456 30.696
## 2906 2.456 30.696
## 2907 2.456 30.696
## 2908 2.456 30.696
## 2909 2.456 30.696
## 2910 2.456 30.696
## 2911 NA NA
## 2912 NA NA
## 2913 NA NA
## 2914 NA NA
## 2915 NA NA
## 2916 NA NA
## 2917 NA NA
## 2918 NA NA
## 2919 NA NA
## 2920 NA NA
## 2921 NA NA
## 2922 NA NA
## 2923 28.552 81.070
## 2924 28.552 81.070
## 2925 28.552 81.070
## 2926 28.552 81.070
## 2927 28.552 81.070
## 2928 28.552 81.070
## 2929 21.894 79.758
## 2930 21.894 79.758
## 2931 21.894 79.758
## 2932 21.894 79.758
## 2933 21.894 79.758
## 2934 21.894 79.758
## 2935 NA NA
## 2936 NA NA
## 2937 NA NA
## 2938 NA NA
## 2939 NA NA
## 2940 NA NA
## 2941 NA NA
## 2942 NA NA
## 2943 NA NA
## 2944 NA NA
## 2945 NA NA
## 2946 NA NA
## 2947 NA NA
## 2948 NA NA
## 2949 NA NA
## 2950 NA NA
## 2951 NA NA
## 2952 NA NA
## 2953 NA NA
## 2954 NA NA
## 2955 NA NA
## 2956 NA NA
## 2957 NA NA
## 2958 NA NA
## 2959 NA NA
## 2960 NA NA
## 2961 NA NA
## 2962 NA NA
## 2963 NA NA
## 2964 NA NA
## 2965 NA NA
## 2966 NA NA
## 2967 NA NA
## 2968 NA NA
## 2969 NA NA
## 2970 NA NA
## 2971 NA NA
## 2972 NA NA
## 2973 NA NA
## 2974 NA NA
## 2975 NA NA
## 2976 NA NA
## 2977 NA NA
## 2978 NA NA
## 2979 NA NA
## 2980 NA NA
## 2981 NA NA
## 2982 NA NA
## 2983 9.654 18.153
## 2984 9.654 18.153
## 2985 9.654 18.153
## 2986 9.654 18.153
## 2987 9.654 18.153
## 2988 9.654 18.153
## 2989 NA NA
## 2990 NA NA
## 2991 NA NA
## 2992 NA NA
## 2993 NA NA
## 2994 NA NA
## 2995 NA NA
## 2996 NA NA
## 2997 NA NA
## 2998 NA NA
## 2999 NA NA
## 3000 NA NA
## 3001 NA NA
## 3002 NA NA
## 3003 NA NA
## 3004 NA NA
## 3005 NA NA
## 3006 NA NA
## 3007 NA NA
## 3008 NA NA
## 3009 NA NA
## 3010 NA NA
## 3011 NA NA
## 3012 NA NA
## 3013 NA NA
## 3014 NA NA
## 3015 NA NA
## 3016 NA NA
## 3017 NA NA
## 3018 NA NA
## 3019 NA NA
## 3020 NA NA
## 3021 NA NA
## 3022 NA NA
## 3023 NA NA
## 3024 NA NA
## 3025 NA NA
## 3026 NA NA
## 3027 NA NA
## 3028 NA NA
## 3029 NA NA
## 3030 NA NA
## 3031 NA NA
## 3032 NA NA
## 3033 NA NA
## 3034 NA NA
## 3035 NA NA
## 3036 NA NA
## 3037 20.534 54.378
## 3038 20.534 54.378
## 3039 20.534 54.378
## 3040 20.534 54.378
## 3041 20.534 54.378
## 3042 20.534 54.378
## 3043 NA NA
## 3044 NA NA
## 3045 NA NA
## 3046 NA NA
## 3047 NA NA
## 3048 NA NA
## 3049 NA NA
## 3050 NA NA
## 3051 NA NA
## 3052 NA NA
## 3053 NA NA
## 3054 NA NA
## 3055 17.050 28.956
## 3056 17.050 28.956
## 3057 17.050 28.956
## 3058 17.050 28.956
## 3059 17.050 28.956
## 3060 17.050 28.956
## 3061 NA NA
## 3062 NA NA
## 3063 NA NA
## 3064 NA NA
## 3065 NA NA
## 3066 NA NA
## 3067 NA NA
## 3068 NA NA
## 3069 NA NA
## 3070 NA NA
## 3071 NA NA
## 3072 NA NA
## 3073 10.389 19.800
## 3074 10.389 19.800
## 3075 10.389 19.800
## 3076 10.389 19.800
## 3077 10.389 19.800
## 3078 10.389 19.800
## 3079 NA NA
## 3080 NA NA
## 3081 NA NA
## 3082 NA NA
## 3083 NA NA
## 3084 NA NA
## 3085 NA NA
## 3086 NA NA
## 3087 NA NA
## 3088 NA NA
## 3089 NA NA
## 3090 NA NA
## 3091 NA NA
## 3092 NA NA
## 3093 NA NA
## 3094 NA NA
## 3095 NA NA
## 3096 NA NA
## 3097 1.308 34.259
## 3098 1.308 34.259
## 3099 1.308 34.259
## 3100 1.308 34.259
## 3101 1.308 34.259
## 3102 1.308 34.259
## 3103 NA NA
## 3104 NA NA
## 3105 NA NA
## 3106 NA NA
## 3107 NA NA
## 3108 NA NA
## 3109 NA NA
## 3110 NA NA
## 3111 NA NA
## 3112 NA NA
## 3113 NA NA
## 3114 NA NA
## 3115 NA NA
## 3116 NA NA
## 3117 NA NA
## 3118 NA NA
## 3119 NA NA
## 3120 NA NA
## 3121 NA NA
## 3122 NA NA
## 3123 NA NA
## 3124 NA NA
## 3125 NA NA
## 3126 NA NA
## 3127 25.469 54.141
## 3128 25.469 54.141
## 3129 25.469 54.141
## 3130 25.469 54.141
## 3131 25.469 54.141
## 3132 25.469 54.141
## 3133 2.034 38.997
## 3134 2.034 38.997
## 3135 2.034 38.997
## 3136 2.034 38.997
## 3137 2.034 38.997
## 3138 2.034 38.997
## 3139 NA NA
## 3140 NA NA
## 3141 NA NA
## 3142 NA NA
## 3143 NA NA
## 3144 NA NA
## 3145 NA NA
## 3146 NA NA
## 3147 NA NA
## 3148 NA NA
## 3149 NA NA
## 3150 NA NA
## 3151 24.010 41.859
## 3152 24.010 41.859
## 3153 24.010 41.859
## 3154 24.010 41.859
## 3155 24.010 41.859
## 3156 24.010 41.859
## 3157 NA NA
## 3158 NA NA
## 3159 NA NA
## 3160 NA NA
## 3161 NA NA
## 3162 NA NA
## 3163 NA NA
## 3164 NA NA
## 3165 NA NA
## 3166 NA NA
## 3167 NA NA
## 3168 NA NA
## 3169 NA NA
## 3170 NA NA
## 3171 NA NA
## 3172 NA NA
## 3173 NA NA
## 3174 NA NA
## 3175 NA NA
## 3176 NA NA
## 3177 NA NA
## 3178 NA NA
## 3179 NA NA
## 3180 NA NA
## 3181 NA NA
## 3182 NA NA
## 3183 NA NA
## 3184 NA NA
## 3185 NA NA
## 3186 NA NA
## 3187 NA NA
## 3188 NA NA
## 3189 NA NA
## 3190 NA NA
## 3191 NA NA
## 3192 NA NA
## 3193 22.202 27.277
## 3194 22.202 27.277
## 3195 22.202 27.277
## 3196 22.202 27.277
## 3197 22.202 27.277
## 3198 22.202 27.277
## 3199 NA NA
## 3200 NA NA
## 3201 NA NA
## 3202 NA NA
## 3203 NA NA
## 3204 NA NA
## 3205 24.137 31.782
## 3206 24.137 31.782
## 3207 24.137 31.782
## 3208 24.137 31.782
## 3209 24.137 31.782
## 3210 24.137 31.782
## 3211 6.124 49.601
## 3212 6.124 49.601
## 3213 6.124 49.601
## 3214 6.124 49.601
## 3215 6.124 49.601
## 3216 6.124 49.601
## 3217 NA NA
## 3218 NA NA
## 3219 NA NA
## 3220 NA NA
## 3221 NA NA
## 3222 NA NA
## 3223 NA NA
## 3224 NA NA
## 3225 NA NA
## 3226 NA NA
## 3227 NA NA
## 3228 NA NA
## 3229 18.490 29.355
## 3230 18.490 29.355
## 3231 18.490 29.355
## 3232 18.490 29.355
## 3233 18.490 29.355
## 3234 18.490 29.355
## 3235 NA NA
## 3236 NA NA
## 3237 NA NA
## 3238 NA NA
## 3239 NA NA
## 3240 NA NA
## 3241 7.357 36.300
## 3242 7.357 36.300
## 3243 7.357 36.300
## 3244 7.357 36.300
## 3245 7.357 36.300
## 3246 7.357 36.300
## 3247 NA NA
## 3248 NA NA
## 3249 NA NA
## 3250 NA NA
## 3251 NA NA
## 3252 NA NA
## 3253 NA NA
## 3254 NA NA
## 3255 NA NA
## 3256 NA NA
## 3257 NA NA
## 3258 NA NA
## 3259 NA NA
## 3260 NA NA
## 3261 NA NA
## 3262 NA NA
## 3263 NA NA
## 3264 NA NA
## 3265 52.783 70.990
## 3266 52.783 70.990
## 3267 52.783 70.990
## 3268 52.783 70.990
## 3269 52.783 70.990
## 3270 52.783 70.990
## 3271 NA NA
## 3272 NA NA
## 3273 NA NA
## 3274 NA NA
## 3275 NA NA
## 3276 NA NA
## 3277 NA NA
## 3278 NA NA
## 3279 NA NA
## 3280 NA NA
## 3281 NA NA
## 3282 NA NA
## 3283 NA NA
## 3284 NA NA
## 3285 NA NA
## 3286 NA NA
## 3287 NA NA
## 3288 NA NA
## 3289 11.131 40.350
## 3290 11.131 40.350
## 3291 11.131 40.350
## 3292 11.131 40.350
## 3293 11.131 40.350
## 3294 11.131 40.350
## 3295 NA NA
## 3296 NA NA
## 3297 NA NA
## 3298 NA NA
## 3299 NA NA
## 3300 NA NA
## 3301 NA NA
## 3302 NA NA
## 3303 NA NA
## 3304 NA NA
## 3305 NA NA
## 3306 NA NA
## 3307 NA NA
## 3308 NA NA
## 3309 NA NA
## 3310 NA NA
## 3311 NA NA
## 3312 NA NA
## 3313 NA NA
## 3314 NA NA
## 3315 NA NA
## 3316 NA NA
## 3317 NA NA
## 3318 NA NA
## 3319 NA NA
## 3320 NA NA
## 3321 NA NA
## 3322 NA NA
## 3323 NA NA
## 3324 NA NA
## 3325 NA NA
## 3326 NA NA
## 3327 NA NA
## 3328 NA NA
## 3329 NA NA
## 3330 NA NA
## 3331 NA NA
## 3332 NA NA
## 3333 NA NA
## 3334 NA NA
## 3335 NA NA
## 3336 NA NA
## 3337 NA NA
## 3338 NA NA
## 3339 NA NA
## 3340 NA NA
## 3341 NA NA
## 3342 NA NA
## 3343 NA NA
## 3344 NA NA
## 3345 NA NA
## 3346 NA NA
## 3347 NA NA
## 3348 NA NA
## 3349 NA NA
## 3350 NA NA
## 3351 NA NA
## 3352 NA NA
## 3353 NA NA
## 3354 NA NA
## 3355 NA NA
## 3356 NA NA
## 3357 NA NA
## 3358 NA NA
## 3359 NA NA
## 3360 NA NA
## 3361 NA NA
## 3362 NA NA
## 3363 NA NA
## 3364 NA NA
## 3365 NA NA
## 3366 NA NA
## 3367 NA NA
## 3368 NA NA
## 3369 NA NA
## 3370 NA NA
## 3371 NA NA
## 3372 NA NA
## 3373 NA NA
## 3374 NA NA
## 3375 NA NA
## 3376 NA NA
## 3377 NA NA
## 3378 NA NA
## 3379 NA NA
## 3380 NA NA
## 3381 NA NA
## 3382 NA NA
## 3383 NA NA
## 3384 NA NA
## 3385 12.790 40.876
## 3386 12.790 40.876
## 3387 12.790 40.876
## 3388 12.790 40.876
## 3389 12.790 40.876
## 3390 12.790 40.876
## 3391 266.885 274.995
## 3392 266.885 274.995
## 3393 266.885 274.995
## 3394 266.885 274.995
## 3395 266.885 274.995
## 3396 266.885 274.995
## 3397 NA NA
## 3398 NA NA
## 3399 NA NA
## 3400 NA NA
## 3401 NA NA
## 3402 NA NA
## 3403 NA NA
## 3404 NA NA
## 3405 NA NA
## 3406 NA NA
## 3407 NA NA
## 3408 NA NA
## 3409 NA NA
## 3410 NA NA
## 3411 NA NA
## 3412 NA NA
## 3413 NA NA
## 3414 NA NA
## 3415 NA NA
## 3416 NA NA
## 3417 NA NA
## 3418 NA NA
## 3419 NA NA
## 3420 NA NA
## 3421 NA NA
## 3422 NA NA
## 3423 NA NA
## 3424 NA NA
## 3425 NA NA
## 3426 NA NA
## 3427 21.930 39.749
## 3428 21.930 39.749
## 3429 21.930 39.749
## 3430 21.930 39.749
## 3431 21.930 39.749
## 3432 21.930 39.749
## 3433 3.247 34.446
## 3434 3.247 34.446
## 3435 3.247 34.446
## 3436 3.247 34.446
## 3437 3.247 34.446
## 3438 3.247 34.446
## 3439 NA NA
## 3440 NA NA
## 3441 NA NA
## 3442 NA NA
## 3443 NA NA
## 3444 NA NA
## 3445 NA NA
## 3446 NA NA
## 3447 NA NA
## 3448 NA NA
## 3449 NA NA
## 3450 NA NA
## 3451 NA NA
## 3452 NA NA
## 3453 NA NA
## 3454 NA NA
## 3455 NA NA
## 3456 NA NA
## 3457 NA NA
## 3458 NA NA
## 3459 NA NA
## 3460 NA NA
## 3461 NA NA
## 3462 NA NA
## 3463 NA NA
## 3464 NA NA
## 3465 NA NA
## 3466 NA NA
## 3467 NA NA
## 3468 NA NA
## 3469 NA NA
## 3470 NA NA
## 3471 NA NA
## 3472 NA NA
## 3473 NA NA
## 3474 NA NA
## 3475 NA NA
## 3476 NA NA
## 3477 NA NA
## 3478 NA NA
## 3479 NA NA
## 3480 NA NA
## 3481 36.296 43.154
## 3482 36.296 43.154
## 3483 36.296 43.154
## 3484 36.296 43.154
## 3485 36.296 43.154
## 3486 36.296 43.154
## 3487 30.226 96.592
## 3488 30.226 96.592
## 3489 30.226 96.592
## 3490 30.226 96.592
## 3491 30.226 96.592
## 3492 30.226 96.592
## 3493 0.999 27.896
## 3494 0.999 27.896
## 3495 0.999 27.896
## 3496 0.999 27.896
## 3497 0.999 27.896
## 3498 0.999 27.896
## 3499 NA NA
## 3500 NA NA
## 3501 NA NA
## 3502 NA NA
## 3503 NA NA
## 3504 NA NA
## 3505 NA NA
## 3506 NA NA
## 3507 NA NA
## 3508 NA NA
## 3509 NA NA
## 3510 NA NA
## 3511 NA NA
## 3512 NA NA
## 3513 NA NA
## 3514 NA NA
## 3515 NA NA
## 3516 NA NA
## 3517 9.147 54.043
## 3518 9.147 54.043
## 3519 9.147 54.043
## 3520 9.147 54.043
## 3521 9.147 54.043
## 3522 9.147 54.043
## 3523 NA NA
## 3524 NA NA
## 3525 NA NA
## 3526 NA NA
## 3527 NA NA
## 3528 NA NA
## 3529 83.030 179.968
## 3530 83.030 179.968
## 3531 83.030 179.968
## 3532 83.030 179.968
## 3533 83.030 179.968
## 3534 83.030 179.968
## 3535 NA NA
## 3536 NA NA
## 3537 NA NA
## 3538 NA NA
## 3539 NA NA
## 3540 NA NA
## 3541 NA NA
## 3542 NA NA
## 3543 NA NA
## 3544 NA NA
## 3545 NA NA
## 3546 NA NA
## 3547 NA NA
## 3548 NA NA
## 3549 NA NA
## 3550 NA NA
## 3551 NA NA
## 3552 NA NA
## 3553 NA NA
## 3554 NA NA
## 3555 NA NA
## 3556 NA NA
## 3557 NA NA
## 3558 NA NA
## 3559 297.957 319.289
## 3560 297.957 319.289
## 3561 297.957 319.289
## 3562 297.957 319.289
## 3563 297.957 319.289
## 3564 297.957 319.289
## 3565 NA NA
## 3566 NA NA
## 3567 NA NA
## 3568 NA NA
## 3569 NA NA
## 3570 NA NA
## 3571 175.292 223.289
## 3572 175.292 223.289
## 3573 175.292 223.289
## 3574 175.292 223.289
## 3575 175.292 223.289
## 3576 175.292 223.289
## 3577 15.373 38.176
## 3578 15.373 38.176
## 3579 15.373 38.176
## 3580 15.373 38.176
## 3581 15.373 38.176
## 3582 15.373 38.176
## 3583 NA NA
## 3584 NA NA
## 3585 NA NA
## 3586 NA NA
## 3587 NA NA
## 3588 NA NA
## 3589 NA NA
## 3590 NA NA
## 3591 NA NA
## 3592 NA NA
## 3593 NA NA
## 3594 NA NA
## 3595 NA NA
## 3596 NA NA
## 3597 NA NA
## 3598 NA NA
## 3599 NA NA
## 3600 NA NA
## 3601 NA NA
## 3602 NA NA
## 3603 NA NA
## 3604 NA NA
## 3605 NA NA
## 3606 NA NA
## 3607 23.530 37.657
## 3608 23.530 37.657
## 3609 23.530 37.657
## 3610 23.530 37.657
## 3611 23.530 37.657
## 3612 23.530 37.657
## 3613 NA NA
## 3614 NA NA
## 3615 NA NA
## 3616 NA NA
## 3617 NA NA
## 3618 NA NA
## 3619 NA NA
## 3620 NA NA
## 3621 NA NA
## 3622 NA NA
## 3623 NA NA
## 3624 NA NA
## 3625 1.947 24.916
## 3626 1.947 24.916
## 3627 1.947 24.916
## 3628 1.947 24.916
## 3629 1.947 24.916
## 3630 1.947 24.916
## 3631 NA NA
## 3632 NA NA
## 3633 NA NA
## 3634 NA NA
## 3635 NA NA
## 3636 NA NA
## 3637 NA NA
## 3638 NA NA
## 3639 NA NA
## 3640 NA NA
## 3641 NA NA
## 3642 NA NA
## 3643 NA NA
## 3644 NA NA
## 3645 NA NA
## 3646 NA NA
## 3647 NA NA
## 3648 NA NA
## 3649 NA NA
## 3650 NA NA
## 3651 NA NA
## 3652 NA NA
## 3653 NA NA
## 3654 NA NA
## 3655 NA NA
## 3656 NA NA
## 3657 NA NA
## 3658 NA NA
## 3659 NA NA
## 3660 NA NA
## 3661 NA NA
## 3662 NA NA
## 3663 NA NA
## 3664 NA NA
## 3665 NA NA
## 3666 NA NA
## 3667 NA NA
## 3668 NA NA
## 3669 NA NA
## 3670 NA NA
## 3671 NA NA
## 3672 NA NA
## 3673 NA NA
## 3674 NA NA
## 3675 NA NA
## 3676 NA NA
## 3677 NA NA
## 3678 NA NA
## 3679 NA NA
## 3680 NA NA
## 3681 NA NA
## 3682 NA NA
## 3683 NA NA
## 3684 NA NA
## 3685 NA NA
## 3686 NA NA
## 3687 NA NA
## 3688 NA NA
## 3689 NA NA
## 3690 NA NA
## 3691 NA NA
## 3692 NA NA
## 3693 NA NA
## 3694 NA NA
## 3695 NA NA
## 3696 NA NA
## 3697 38.621 65.512
## 3698 38.621 65.512
## 3699 38.621 65.512
## 3700 38.621 65.512
## 3701 38.621 65.512
## 3702 38.621 65.512
## 3703 NA NA
## 3704 NA NA
## 3705 NA NA
## 3706 NA NA
## 3707 NA NA
## 3708 NA NA
## 3709 NA NA
## 3710 NA NA
## 3711 NA NA
## 3712 NA NA
## 3713 NA NA
## 3714 NA NA
## 3715 NA NA
## 3716 NA NA
## 3717 NA NA
## 3718 NA NA
## 3719 NA NA
## 3720 NA NA
## 3721 NA NA
## 3722 NA NA
## 3723 NA NA
## 3724 NA NA
## 3725 NA NA
## 3726 NA NA
## 3727 19.945 38.029
## 3728 19.945 38.029
## 3729 19.945 38.029
## 3730 19.945 38.029
## 3731 19.945 38.029
## 3732 19.945 38.029
## 3733 NA NA
## 3734 NA NA
## 3735 NA NA
## 3736 NA NA
## 3737 NA NA
## 3738 NA NA
## 3739 NA NA
## 3740 NA NA
## 3741 NA NA
## 3742 NA NA
## 3743 NA NA
## 3744 NA NA
## 3745 NA NA
## 3746 NA NA
## 3747 NA NA
## 3748 NA NA
## 3749 NA NA
## 3750 NA NA
## 3751 NA NA
## 3752 NA NA
## 3753 NA NA
## 3754 NA NA
## 3755 NA NA
## 3756 NA NA
## 3757 NA NA
## 3758 NA NA
## 3759 NA NA
## 3760 NA NA
## 3761 NA NA
## 3762 NA NA
## 3763 NA NA
## 3764 NA NA
## 3765 NA NA
## 3766 NA NA
## 3767 NA NA
## 3768 NA NA
## 3769 NA NA
## 3770 NA NA
## 3771 NA NA
## 3772 NA NA
## 3773 NA NA
## 3774 NA NA
## 3775 NA NA
## 3776 NA NA
## 3777 NA NA
## 3778 NA NA
## 3779 NA NA
## 3780 NA NA
## 3781 NA NA
## 3782 NA NA
## 3783 NA NA
## 3784 NA NA
## 3785 NA NA
## 3786 NA NA
## 3787 NA NA
## 3788 NA NA
## 3789 NA NA
## 3790 NA NA
## 3791 NA NA
## 3792 NA NA
## 3793 NA NA
## 3794 NA NA
## 3795 NA NA
## 3796 NA NA
## 3797 NA NA
## 3798 NA NA
## 3799 NA NA
## 3800 NA NA
## 3801 NA NA
## 3802 NA NA
## 3803 NA NA
## 3804 NA NA
## 3805 NA NA
## 3806 NA NA
## 3807 NA NA
## 3808 NA NA
## 3809 NA NA
## 3810 NA NA
## 3811 NA NA
## 3812 NA NA
## 3813 NA NA
## 3814 NA NA
## 3815 NA NA
## 3816 NA NA
## 3817 NA NA
## 3818 NA NA
## 3819 NA NA
## 3820 NA NA
## 3821 NA NA
## 3822 NA NA
## 3823 NA NA
## 3824 NA NA
## 3825 NA NA
## 3826 NA NA
## 3827 NA NA
## 3828 NA NA
## 3829 12.697 23.585
## 3830 12.697 23.585
## 3831 12.697 23.585
## 3832 12.697 23.585
## 3833 12.697 23.585
## 3834 12.697 23.585
## 3835 7.658 26.821
## 3836 7.658 26.821
## 3837 7.658 26.821
## 3838 7.658 26.821
## 3839 7.658 26.821
## 3840 7.658 26.821
## 3841 NA NA
## 3842 NA NA
## 3843 NA NA
## 3844 NA NA
## 3845 NA NA
## 3846 NA NA
## 3847 NA NA
## 3848 NA NA
## 3849 NA NA
## 3850 NA NA
## 3851 NA NA
## 3852 NA NA
## 3853 NA NA
## 3854 NA NA
## 3855 NA NA
## 3856 NA NA
## 3857 NA NA
## 3858 NA NA
## 3859 NA NA
## 3860 NA NA
## 3861 NA NA
## 3862 NA NA
## 3863 NA NA
## 3864 NA NA
## 3865 19.429 59.839
## 3866 19.429 59.839
## 3867 19.429 59.839
## 3868 19.429 59.839
## 3869 19.429 59.839
## 3870 19.429 59.839
## 3871 NA NA
## 3872 NA NA
## 3873 NA NA
## 3874 NA NA
## 3875 NA NA
## 3876 NA NA
## 3877 NA NA
## 3878 NA NA
## 3879 NA NA
## 3880 NA NA
## 3881 NA NA
## 3882 NA NA
## 3883 NA NA
## 3884 NA NA
## 3885 NA NA
## 3886 NA NA
## 3887 NA NA
## 3888 NA NA
## 3889 2.722 117.667
## 3890 2.722 117.667
## 3891 2.722 117.667
## 3892 2.722 117.667
## 3893 2.722 117.667
## 3894 2.722 117.667
## 3895 17.932 27.921
## 3896 17.932 27.921
## 3897 17.932 27.921
## 3898 17.932 27.921
## 3899 17.932 27.921
## 3900 17.932 27.921
## 3901 24.397 107.601
## 3902 24.397 107.601
## 3903 24.397 107.601
## 3904 24.397 107.601
## 3905 24.397 107.601
## 3906 24.397 107.601
## 3907 NA NA
## 3908 NA NA
## 3909 NA NA
## 3910 NA NA
## 3911 NA NA
## 3912 NA NA
## 3913 NA NA
## 3914 NA NA
## 3915 NA NA
## 3916 NA NA
## 3917 NA NA
## 3918 NA NA
## 3919 NA NA
## 3920 NA NA
## 3921 NA NA
## 3922 NA NA
## 3923 NA NA
## 3924 NA NA
## 3925 NA NA
## 3926 NA NA
## 3927 NA NA
## 3928 NA NA
## 3929 NA NA
## 3930 NA NA
## 3931 NA NA
## 3932 NA NA
## 3933 NA NA
## 3934 NA NA
## 3935 NA NA
## 3936 NA NA
## 3937 NA NA
## 3938 NA NA
## 3939 NA NA
## 3940 NA NA
## 3941 NA NA
## 3942 NA NA
## 3943 15.404 79.492
## 3944 15.404 79.492
## 3945 15.404 79.492
## 3946 15.404 79.492
## 3947 15.404 79.492
## 3948 15.404 79.492
## 3949 NA NA
## 3950 NA NA
## 3951 NA NA
## 3952 NA NA
## 3953 NA NA
## 3954 NA NA
## 3955 NA NA
## 3956 NA NA
## 3957 NA NA
## 3958 NA NA
## 3959 NA NA
## 3960 NA NA
## 3961 NA NA
## 3962 NA NA
## 3963 NA NA
## 3964 NA NA
## 3965 NA NA
## 3966 NA NA
## 3967 NA NA
## 3968 NA NA
## 3969 NA NA
## 3970 NA NA
## 3971 NA NA
## 3972 NA NA
## 3973 5.530 32.298
## 3974 5.530 32.298
## 3975 5.530 32.298
## 3976 5.530 32.298
## 3977 5.530 32.298
## 3978 5.530 32.298
## 3979 NA NA
## 3980 NA NA
## 3981 NA NA
## 3982 NA NA
## 3983 NA NA
## 3984 NA NA
## 3985 NA NA
## 3986 NA NA
## 3987 NA NA
## 3988 NA NA
## 3989 NA NA
## 3990 NA NA
## 3991 NA NA
## 3992 NA NA
## 3993 NA NA
## 3994 NA NA
## 3995 NA NA
## 3996 NA NA
## 3997 NA NA
## 3998 NA NA
## 3999 NA NA
## 4000 NA NA
## 4001 NA NA
## 4002 NA NA
## 4003 NA NA
## 4004 NA NA
## 4005 NA NA
## 4006 NA NA
## 4007 NA NA
## 4008 NA NA
## 4009 17.054 46.323
## 4010 17.054 46.323
## 4011 17.054 46.323
## 4012 17.054 46.323
## 4013 17.054 46.323
## 4014 17.054 46.323
## 4015 NA NA
## 4016 NA NA
## 4017 NA NA
## 4018 NA NA
## 4019 NA NA
## 4020 NA NA
## 4021 NA NA
## 4022 NA NA
## 4023 NA NA
## 4024 NA NA
## 4025 NA NA
## 4026 NA NA
## 4027 NA NA
## 4028 NA NA
## 4029 NA NA
## 4030 NA NA
## 4031 NA NA
## 4032 NA NA
## 4033 NA NA
## 4034 NA NA
## 4035 NA NA
## 4036 NA NA
## 4037 NA NA
## 4038 NA NA
## 4039 NA NA
## 4040 NA NA
## 4041 NA NA
## 4042 NA NA
## 4043 NA NA
## 4044 NA NA
## 4045 NA NA
## 4046 NA NA
## 4047 NA NA
## 4048 NA NA
## 4049 NA NA
## 4050 NA NA
## 4051 NA NA
## 4052 NA NA
## 4053 NA NA
## 4054 NA NA
## 4055 NA NA
## 4056 NA NA
## 4057 NA NA
## 4058 NA NA
## 4059 NA NA
## 4060 NA NA
## 4061 NA NA
## 4062 NA NA
## 4063 7.705 36.245
## 4064 7.705 36.245
## 4065 7.705 36.245
## 4066 7.705 36.245
## 4067 7.705 36.245
## 4068 7.705 36.245
## 4069 17.329 42.596
## 4070 17.329 42.596
## 4071 17.329 42.596
## 4072 17.329 42.596
## 4073 17.329 42.596
## 4074 17.329 42.596
## 4075 31.747 46.744
## 4076 31.747 46.744
## 4077 31.747 46.744
## 4078 31.747 46.744
## 4079 31.747 46.744
## 4080 31.747 46.744
## 4081 15.964 23.211
## 4082 15.964 23.211
## 4083 15.964 23.211
## 4084 15.964 23.211
## 4085 15.964 23.211
## 4086 15.964 23.211
## 4087 NA NA
## 4088 NA NA
## 4089 NA NA
## 4090 NA NA
## 4091 NA NA
## 4092 NA NA
## 4093 NA NA
## 4094 NA NA
## 4095 NA NA
## 4096 NA NA
## 4097 NA NA
## 4098 NA NA
## 4099 8.053 14.740
## 4100 8.053 14.740
## 4101 8.053 14.740
## 4102 8.053 14.740
## 4103 8.053 14.740
## 4104 8.053 14.740
## 4105 NA NA
## 4106 NA NA
## 4107 NA NA
## 4108 NA NA
## 4109 NA NA
## 4110 NA NA
## 4111 NA NA
## 4112 NA NA
## 4113 NA NA
## 4114 NA NA
## 4115 NA NA
## 4116 NA NA
## 4117 NA NA
## 4118 NA NA
## 4119 NA NA
## 4120 NA NA
## 4121 NA NA
## 4122 NA NA
## 4123 NA NA
## 4124 NA NA
## 4125 NA NA
## 4126 NA NA
## 4127 NA NA
## 4128 NA NA
## 4129 2.344 121.982
## 4130 2.344 121.982
## 4131 2.344 121.982
## 4132 2.344 121.982
## 4133 2.344 121.982
## 4134 2.344 121.982
## 4135 NA NA
## 4136 NA NA
## 4137 NA NA
## 4138 NA NA
## 4139 NA NA
## 4140 NA NA
## 4141 NA NA
## 4142 NA NA
## 4143 NA NA
## 4144 NA NA
## 4145 NA NA
## 4146 NA NA
## 4147 NA NA
## 4148 NA NA
## 4149 NA NA
## 4150 NA NA
## 4151 NA NA
## 4152 NA NA
## 4153 1.629 35.409
## 4154 1.629 35.409
## 4155 1.629 35.409
## 4156 1.629 35.409
## 4157 1.629 35.409
## 4158 1.629 35.409
## 4159 NA NA
## 4160 NA NA
## 4161 NA NA
## 4162 NA NA
## 4163 NA NA
## 4164 NA NA
## 4165 NA NA
## 4166 NA NA
## 4167 NA NA
## 4168 NA NA
## 4169 NA NA
## 4170 NA NA
## 4171 NA NA
## 4172 NA NA
## 4173 NA NA
## 4174 NA NA
## 4175 NA NA
## 4176 NA NA
## 4177 14.159 39.870
## 4178 14.159 39.870
## 4179 14.159 39.870
## 4180 14.159 39.870
## 4181 14.159 39.870
## 4182 14.159 39.870
## 4183 NA NA
## 4184 NA NA
## 4185 NA NA
## 4186 NA NA
## 4187 NA NA
## 4188 NA NA
## 4189 21.270 44.835
## 4190 21.270 44.835
## 4191 21.270 44.835
## 4192 21.270 44.835
## 4193 21.270 44.835
## 4194 21.270 44.835
## 4195 26.853 49.887
## 4196 26.853 49.887
## 4197 26.853 49.887
## 4198 26.853 49.887
## 4199 26.853 49.887
## 4200 26.853 49.887
## 4201 NA NA
## 4202 NA NA
## 4203 NA NA
## 4204 NA NA
## 4205 NA NA
## 4206 NA NA
## 4207 NA NA
## 4208 NA NA
## 4209 NA NA
## 4210 NA NA
## 4211 NA NA
## 4212 NA NA
## 4213 26.144 47.211
## 4214 26.144 47.211
## 4215 26.144 47.211
## 4216 26.144 47.211
## 4217 26.144 47.211
## 4218 26.144 47.211
## 4219 6.518 37.851
## 4220 6.518 37.851
## 4221 6.518 37.851
## 4222 6.518 37.851
## 4223 6.518 37.851
## 4224 6.518 37.851
## 4225 1.790 39.665
## 4226 1.790 39.665
## 4227 1.790 39.665
## 4228 1.790 39.665
## 4229 1.790 39.665
## 4230 1.790 39.665
## 4231 NA NA
## 4232 NA NA
## 4233 NA NA
## 4234 NA NA
## 4235 NA NA
## 4236 NA NA
## 4237 8.344 35.731
## 4238 8.344 35.731
## 4239 8.344 35.731
## 4240 8.344 35.731
## 4241 8.344 35.731
## 4242 8.344 35.731
## 4243 NA NA
## 4244 NA NA
## 4245 NA NA
## 4246 NA NA
## 4247 NA NA
## 4248 NA NA
## 4249 10.929 44.366
## 4250 10.929 44.366
## 4251 10.929 44.366
## 4252 10.929 44.366
## 4253 10.929 44.366
## 4254 10.929 44.366
## 4255 NA NA
## 4256 NA NA
## 4257 NA NA
## 4258 NA NA
## 4259 NA NA
## 4260 NA NA
## 4261 NA NA
## 4262 NA NA
## 4263 NA NA
## 4264 NA NA
## 4265 NA NA
## 4266 NA NA
## 4267 NA NA
## 4268 NA NA
## 4269 NA NA
## 4270 NA NA
## 4271 NA NA
## 4272 NA NA
## 4273 NA NA
## 4274 NA NA
## 4275 NA NA
## 4276 NA NA
## 4277 NA NA
## 4278 NA NA
## 4279 NA NA
## 4280 NA NA
## 4281 NA NA
## 4282 NA NA
## 4283 NA NA
## 4284 NA NA
## 4285 6.953 41.160
## 4286 6.953 41.160
## 4287 6.953 41.160
## 4288 6.953 41.160
## 4289 6.953 41.160
## 4290 6.953 41.160
## 4291 NA NA
## 4292 NA NA
## 4293 NA NA
## 4294 NA NA
## 4295 NA NA
## 4296 NA NA
## 4297 NA NA
## 4298 NA NA
## 4299 NA NA
## 4300 NA NA
## 4301 NA NA
## 4302 NA NA
## 4303 NA NA
## 4304 NA NA
## 4305 NA NA
## 4306 NA NA
## 4307 NA NA
## 4308 NA NA
## 4309 NA NA
## 4310 NA NA
## 4311 NA NA
## 4312 NA NA
## 4313 NA NA
## 4314 NA NA
## 4315 NA NA
## 4316 NA NA
## 4317 NA NA
## 4318 NA NA
## 4319 NA NA
## 4320 NA NA
## 4321 NA NA
## 4322 NA NA
## 4323 NA NA
## 4324 NA NA
## 4325 NA NA
## 4326 NA NA
## 4327 NA NA
## 4328 NA NA
## 4329 NA NA
## 4330 NA NA
## 4331 NA NA
## 4332 NA NA
## 4333 NA NA
## 4334 NA NA
## 4335 NA NA
## 4336 NA NA
## 4337 NA NA
## 4338 NA NA
## 4339 NA NA
## 4340 NA NA
## 4341 NA NA
## 4342 NA NA
## 4343 NA NA
## 4344 NA NA
## 4345 6.374 130.174
## 4346 6.374 130.174
## 4347 6.374 130.174
## 4348 6.374 130.174
## 4349 6.374 130.174
## 4350 6.374 130.174
## 4351 23.806 37.726
## 4352 23.806 37.726
## 4353 23.806 37.726
## 4354 23.806 37.726
## 4355 23.806 37.726
## 4356 23.806 37.726
## 4357 NA NA
## 4358 NA NA
## 4359 NA NA
## 4360 NA NA
## 4361 NA NA
## 4362 NA NA
## 4363 31.247 41.164
## 4364 31.247 41.164
## 4365 31.247 41.164
## 4366 31.247 41.164
## 4367 31.247 41.164
## 4368 31.247 41.164
## 4369 NA NA
## 4370 NA NA
## 4371 NA NA
## 4372 NA NA
## 4373 NA NA
## 4374 NA NA
## 4375 NA NA
## 4376 NA NA
## 4377 NA NA
## 4378 NA NA
## 4379 NA NA
## 4380 NA NA
## 4381 31.094 44.812
## 4382 31.094 44.812
## 4383 31.094 44.812
## 4384 31.094 44.812
## 4385 31.094 44.812
## 4386 31.094 44.812
## 4387 1.364 57.858
## 4388 1.364 57.858
## 4389 1.364 57.858
## 4390 1.364 57.858
## 4391 1.364 57.858
## 4392 1.364 57.858
## 4393 NA NA
## 4394 NA NA
## 4395 NA NA
## 4396 NA NA
## 4397 NA NA
## 4398 NA NA
## 4399 32.463 56.262
## 4400 32.463 56.262
## 4401 32.463 56.262
## 4402 32.463 56.262
## 4403 32.463 56.262
## 4404 32.463 56.262
## 4405 NA NA
## 4406 NA NA
## 4407 NA NA
## 4408 NA NA
## 4409 NA NA
## 4410 NA NA
## 4411 NA NA
## 4412 NA NA
## 4413 NA NA
## 4414 NA NA
## 4415 NA NA
## 4416 NA NA
## 4417 NA NA
## 4418 NA NA
## 4419 NA NA
## 4420 NA NA
## 4421 NA NA
## 4422 NA NA
## 4423 NA NA
## 4424 NA NA
## 4425 NA NA
## 4426 NA NA
## 4427 NA NA
## 4428 NA NA
## 4429 NA NA
## 4430 NA NA
## 4431 NA NA
## 4432 NA NA
## 4433 NA NA
## 4434 NA NA
## 4435 NA NA
## 4436 NA NA
## 4437 NA NA
## 4438 NA NA
## 4439 NA NA
## 4440 NA NA
## 4441 NA NA
## 4442 NA NA
## 4443 NA NA
## 4444 NA NA
## 4445 NA NA
## 4446 NA NA
## 4447 3.463 31.421
## 4448 3.463 31.421
## 4449 3.463 31.421
## 4450 3.463 31.421
## 4451 3.463 31.421
## 4452 3.463 31.421
## 4453 NA NA
## 4454 NA NA
## 4455 NA NA
## 4456 NA NA
## 4457 NA NA
## 4458 NA NA
## 4459 NA NA
## 4460 NA NA
## 4461 NA NA
## 4462 NA NA
## 4463 NA NA
## 4464 NA NA
## 4465 14.992 51.428
## 4466 14.992 51.428
## 4467 14.992 51.428
## 4468 14.992 51.428
## 4469 14.992 51.428
## 4470 14.992 51.428
## 4471 NA NA
## 4472 NA NA
## 4473 NA NA
## 4474 NA NA
## 4475 NA NA
## 4476 NA NA
## 4477 NA NA
## 4478 NA NA
## 4479 NA NA
## 4480 NA NA
## 4481 NA NA
## 4482 NA NA
## 4483 18.525 29.548
## 4484 18.525 29.548
## 4485 18.525 29.548
## 4486 18.525 29.548
## 4487 18.525 29.548
## 4488 18.525 29.548
## 4489 NA NA
## 4490 NA NA
## 4491 NA NA
## 4492 NA NA
## 4493 NA NA
## 4494 NA NA
## 4495 NA NA
## 4496 NA NA
## 4497 NA NA
## 4498 NA NA
## 4499 NA NA
## 4500 NA NA
## 4501 NA NA
## 4502 NA NA
## 4503 NA NA
## 4504 NA NA
## 4505 NA NA
## 4506 NA NA
## 4507 NA NA
## 4508 NA NA
## 4509 NA NA
## 4510 NA NA
## 4511 NA NA
## 4512 NA NA
## 4513 NA NA
## 4514 NA NA
## 4515 NA NA
## 4516 NA NA
## 4517 NA NA
## 4518 NA NA
## 4519 NA NA
## 4520 NA NA
## 4521 NA NA
## 4522 NA NA
## 4523 NA NA
## 4524 NA NA
## 4525 NA NA
## 4526 NA NA
## 4527 NA NA
## 4528 NA NA
## 4529 NA NA
## 4530 NA NA
## 4531 NA NA
## 4532 NA NA
## 4533 NA NA
## 4534 NA NA
## 4535 NA NA
## 4536 NA NA
## 4537 NA NA
## 4538 NA NA
## 4539 NA NA
## 4540 NA NA
## 4541 NA NA
## 4542 NA NA
## 4543 NA NA
## 4544 NA NA
## 4545 NA NA
## 4546 NA NA
## 4547 NA NA
## 4548 NA NA
## 4549 NA NA
## 4550 NA NA
## 4551 NA NA
## 4552 NA NA
## 4553 NA NA
## 4554 NA NA
## 4555 26.115 49.772
## 4556 26.115 49.772
## 4557 26.115 49.772
## 4558 26.115 49.772
## 4559 26.115 49.772
## 4560 26.115 49.772
## 4561 NA NA
## 4562 NA NA
## 4563 NA NA
## 4564 NA NA
## 4565 NA NA
## 4566 NA NA
## 4567 NA NA
## 4568 NA NA
## 4569 NA NA
## 4570 NA NA
## 4571 NA NA
## 4572 NA NA
## 4573 NA NA
## 4574 NA NA
## 4575 NA NA
## 4576 NA NA
## 4577 NA NA
## 4578 NA NA
## 4579 NA NA
## 4580 NA NA
## 4581 NA NA
## 4582 NA NA
## 4583 NA NA
## 4584 NA NA
## 4585 NA NA
## 4586 NA NA
## 4587 NA NA
## 4588 NA NA
## 4589 NA NA
## 4590 NA NA
## 4591 NA NA
## 4592 NA NA
## 4593 NA NA
## 4594 NA NA
## 4595 NA NA
## 4596 NA NA
## 4597 NA NA
## 4598 NA NA
## 4599 NA NA
## 4600 NA NA
## 4601 NA NA
## 4602 NA NA
## 4603 NA NA
## 4604 NA NA
## 4605 NA NA
## 4606 NA NA
## 4607 NA NA
## 4608 NA NA
## 4609 NA NA
## 4610 NA NA
## 4611 NA NA
## 4612 NA NA
## 4613 NA NA
## 4614 NA NA
## 4615 NA NA
## 4616 NA NA
## 4617 NA NA
## 4618 NA NA
## 4619 NA NA
## 4620 NA NA
## 4621 NA NA
## 4622 NA NA
## 4623 NA NA
## 4624 NA NA
## 4625 NA NA
## 4626 NA NA
## 4627 NA NA
## 4628 NA NA
## 4629 NA NA
## 4630 NA NA
## 4631 NA NA
## 4632 NA NA
## 4633 NA NA
## 4634 NA NA
## 4635 NA NA
## 4636 NA NA
## 4637 NA NA
## 4638 NA NA
## 4639 NA NA
## 4640 NA NA
## 4641 NA NA
## 4642 NA NA
## 4643 NA NA
## 4644 NA NA
## 4645 NA NA
## 4646 NA NA
## 4647 NA NA
## 4648 NA NA
## 4649 NA NA
## 4650 NA NA
## 4651 NA NA
## 4652 NA NA
## 4653 NA NA
## 4654 NA NA
## 4655 NA NA
## 4656 NA NA
## 4657 NA NA
## 4658 NA NA
## 4659 NA NA
## 4660 NA NA
## 4661 NA NA
## 4662 NA NA
## 4663 NA NA
## 4664 NA NA
## 4665 NA NA
## 4666 NA NA
## 4667 NA NA
## 4668 NA NA
## 4669 NA NA
## 4670 NA NA
## 4671 NA NA
## 4672 NA NA
## 4673 NA NA
## 4674 NA NA
## 4675 NA NA
## 4676 NA NA
## 4677 NA NA
## 4678 NA NA
## 4679 NA NA
## 4680 NA NA
## 4681 NA NA
## 4682 NA NA
## 4683 NA NA
## 4684 NA NA
## 4685 NA NA
## 4686 NA NA
## 4687 NA NA
## 4688 NA NA
## 4689 NA NA
## 4690 NA NA
## 4691 NA NA
## 4692 NA NA
## 4693 NA NA
## 4694 NA NA
## 4695 NA NA
## 4696 NA NA
## 4697 NA NA
## 4698 NA NA
## 4699 NA NA
## 4700 NA NA
## 4701 NA NA
## 4702 NA NA
## 4703 NA NA
## 4704 NA NA
## 4705 NA NA
## 4706 NA NA
## 4707 NA NA
## 4708 NA NA
## 4709 NA NA
## 4710 NA NA
## 4711 NA NA
## 4712 NA NA
## 4713 NA NA
## 4714 NA NA
## 4715 NA NA
## 4716 NA NA
## 4717 46.500 66.288
## 4718 46.500 66.288
## 4719 46.500 66.288
## 4720 46.500 66.288
## 4721 46.500 66.288
## 4722 46.500 66.288
## 4723 NA NA
## 4724 NA NA
## 4725 NA NA
## 4726 NA NA
## 4727 NA NA
## 4728 NA NA
## 4729 NA NA
## 4730 NA NA
## 4731 NA NA
## 4732 NA NA
## 4733 NA NA
## 4734 NA NA
## 4735 NA NA
## 4736 NA NA
## 4737 NA NA
## 4738 NA NA
## 4739 NA NA
## 4740 NA NA
## 4741 NA NA
## 4742 NA NA
## 4743 NA NA
## 4744 NA NA
## 4745 NA NA
## 4746 NA NA
## 4747 NA NA
## 4748 NA NA
## 4749 NA NA
## 4750 NA NA
## 4751 NA NA
## 4752 NA NA
## 4753 NA NA
## 4754 NA NA
## 4755 NA NA
## 4756 NA NA
## 4757 NA NA
## 4758 NA NA
## 4759 3.983 79.673
## 4760 3.983 79.673
## 4761 3.983 79.673
## 4762 3.983 79.673
## 4763 3.983 79.673
## 4764 3.983 79.673
## 4765 NA NA
## 4766 NA NA
## 4767 NA NA
## 4768 NA NA
## 4769 NA NA
## 4770 NA NA
## 4771 NA NA
## 4772 NA NA
## 4773 NA NA
## 4774 NA NA
## 4775 NA NA
## 4776 NA NA
## 4777 NA NA
## 4778 NA NA
## 4779 NA NA
## 4780 NA NA
## 4781 NA NA
## 4782 NA NA
## 4783 NA NA
## 4784 NA NA
## 4785 NA NA
## 4786 NA NA
## 4787 NA NA
## 4788 NA NA
## 4789 NA NA
## 4790 NA NA
## 4791 NA NA
## 4792 NA NA
## 4793 NA NA
## 4794 NA NA
## 4795 NA NA
## 4796 NA NA
## 4797 NA NA
## 4798 NA NA
## 4799 NA NA
## 4800 NA NA
## 4801 NA NA
## 4802 NA NA
## 4803 NA NA
## 4804 NA NA
## 4805 NA NA
## 4806 NA NA
## 4807 NA NA
## 4808 NA NA
## 4809 NA NA
## 4810 NA NA
## 4811 NA NA
## 4812 NA NA
## 4813 NA NA
## 4814 NA NA
## 4815 NA NA
## 4816 NA NA
## 4817 NA NA
## 4818 NA NA
## 4819 NA NA
## 4820 NA NA
## 4821 NA NA
## 4822 NA NA
## 4823 NA NA
## 4824 NA NA
## 4825 NA NA
## 4826 NA NA
## 4827 NA NA
## 4828 NA NA
## 4829 NA NA
## 4830 NA NA
## 4831 NA NA
## 4832 NA NA
## 4833 NA NA
## 4834 NA NA
## 4835 NA NA
## 4836 NA NA
## 4837 NA NA
## 4838 NA NA
## 4839 NA NA
## 4840 NA NA
## 4841 NA NA
## 4842 NA NA
## 4843 NA NA
## 4844 NA NA
## 4845 NA NA
## 4846 NA NA
## 4847 NA NA
## 4848 NA NA
## 4849 NA NA
## 4850 NA NA
## 4851 NA NA
## 4852 NA NA
## 4853 NA NA
## 4854 NA NA
## 4855 NA NA
## 4856 NA NA
## 4857 NA NA
## 4858 NA NA
## 4859 NA NA
## 4860 NA NA
## 4861 36.585 74.619
## 4862 36.585 74.619
## 4863 36.585 74.619
## 4864 36.585 74.619
## 4865 36.585 74.619
## 4866 36.585 74.619
## 4867 NA NA
## 4868 NA NA
## 4869 NA NA
## 4870 NA NA
## 4871 NA NA
## 4872 NA NA
## 4873 65.688 88.684
## 4874 65.688 88.684
## 4875 65.688 88.684
## 4876 65.688 88.684
## 4877 65.688 88.684
## 4878 65.688 88.684
## 4879 3.239 78.138
## 4880 3.239 78.138
## 4881 3.239 78.138
## 4882 3.239 78.138
## 4883 3.239 78.138
## 4884 3.239 78.138
## 4885 NA NA
## 4886 NA NA
## 4887 NA NA
## 4888 NA NA
## 4889 NA NA
## 4890 NA NA
## 4891 16.299 66.988
## 4892 16.299 66.988
## 4893 16.299 66.988
## 4894 16.299 66.988
## 4895 16.299 66.988
## 4896 16.299 66.988
## 4897 NA NA
## 4898 NA NA
## 4899 NA NA
## 4900 NA NA
## 4901 NA NA
## 4902 NA NA
## 4903 NA NA
## 4904 NA NA
## 4905 NA NA
## 4906 NA NA
## 4907 NA NA
## 4908 NA NA
## 4909 NA NA
## 4910 NA NA
## 4911 NA NA
## 4912 NA NA
## 4913 NA NA
## 4914 NA NA
## 4915 NA NA
## 4916 NA NA
## 4917 NA NA
## 4918 NA NA
## 4919 NA NA
## 4920 NA NA
## 4921 NA NA
## 4922 NA NA
## 4923 NA NA
## 4924 NA NA
## 4925 NA NA
## 4926 NA NA
## 4927 NA NA
## 4928 NA NA
## 4929 NA NA
## 4930 NA NA
## 4931 NA NA
## 4932 NA NA
## 4933 NA NA
## 4934 NA NA
## 4935 NA NA
## 4936 NA NA
## 4937 NA NA
## 4938 NA NA
## 4939 NA NA
## 4940 NA NA
## 4941 NA NA
## 4942 NA NA
## 4943 NA NA
## 4944 NA NA
## 4945 NA NA
## 4946 NA NA
## 4947 NA NA
## 4948 NA NA
## 4949 NA NA
## 4950 NA NA
## 4951 31.636 64.980
## 4952 31.636 64.980
## 4953 31.636 64.980
## 4954 31.636 64.980
## 4955 31.636 64.980
## 4956 31.636 64.980
## 4957 14.125 33.093
## 4958 14.125 33.093
## 4959 14.125 33.093
## 4960 14.125 33.093
## 4961 14.125 33.093
## 4962 14.125 33.093
## 4963 1.842 65.940
## 4964 1.842 65.940
## 4965 1.842 65.940
## 4966 1.842 65.940
## 4967 1.842 65.940
## 4968 1.842 65.940
## 4969 29.309 56.490
## 4970 29.309 56.490
## 4971 29.309 56.490
## 4972 29.309 56.490
## 4973 29.309 56.490
## 4974 29.309 56.490
## 4975 9.432 15.155
## 4976 9.432 15.155
## 4977 9.432 15.155
## 4978 9.432 15.155
## 4979 9.432 15.155
## 4980 9.432 15.155
## 4981 NA NA
## 4982 NA NA
## 4983 NA NA
## 4984 NA NA
## 4985 NA NA
## 4986 NA NA
## 4987 NA NA
## 4988 NA NA
## 4989 NA NA
## 4990 NA NA
## 4991 NA NA
## 4992 NA NA
## 4993 NA NA
## 4994 NA NA
## 4995 NA NA
## 4996 NA NA
## 4997 NA NA
## 4998 NA NA
## 4999 NA NA
## 5000 NA NA
## 5001 NA NA
## 5002 NA NA
## 5003 NA NA
## 5004 NA NA
## 5005 NA NA
## 5006 NA NA
## 5007 NA NA
## 5008 NA NA
## 5009 NA NA
## 5010 NA NA
## 5011 NA NA
## 5012 NA NA
## 5013 NA NA
## 5014 NA NA
## 5015 NA NA
## 5016 NA NA
## 5017 19.363 36.760
## 5018 19.363 36.760
## 5019 19.363 36.760
## 5020 19.363 36.760
## 5021 19.363 36.760
## 5022 19.363 36.760
## 5023 9.770 63.443
## 5024 9.770 63.443
## 5025 9.770 63.443
## 5026 9.770 63.443
## 5027 9.770 63.443
## 5028 9.770 63.443
## 5029 35.558 57.411
## 5030 35.558 57.411
## 5031 35.558 57.411
## 5032 35.558 57.411
## 5033 35.558 57.411
## 5034 35.558 57.411
## 5035 1.372 27.372
## 5036 1.372 27.372
## 5037 1.372 27.372
## 5038 1.372 27.372
## 5039 1.372 27.372
## 5040 1.372 27.372
## 5041 NA NA
## 5042 NA NA
## 5043 NA NA
## 5044 NA NA
## 5045 NA NA
## 5046 NA NA
## 5047 NA NA
## 5048 NA NA
## 5049 NA NA
## 5050 NA NA
## 5051 NA NA
## 5052 NA NA
## 5053 NA NA
## 5054 NA NA
## 5055 NA NA
## 5056 NA NA
## 5057 NA NA
## 5058 NA NA
## 5059 NA NA
## 5060 NA NA
## 5061 NA NA
## 5062 NA NA
## 5063 NA NA
## 5064 NA NA
## 5065 NA NA
## 5066 NA NA
## 5067 NA NA
## 5068 NA NA
## 5069 NA NA
## 5070 NA NA
## 5071 NA NA
## 5072 NA NA
## 5073 NA NA
## 5074 NA NA
## 5075 NA NA
## 5076 NA NA
## 5077 NA NA
## 5078 NA NA
## 5079 NA NA
## 5080 NA NA
## 5081 NA NA
## 5082 NA NA
## 5083 NA NA
## 5084 NA NA
## 5085 NA NA
## 5086 NA NA
## 5087 NA NA
## 5088 NA NA
## 5089 NA NA
## 5090 NA NA
## 5091 NA NA
## 5092 NA NA
## 5093 NA NA
## 5094 NA NA
## 5095 NA NA
## 5096 NA NA
## 5097 NA NA
## 5098 NA NA
## 5099 NA NA
## 5100 NA NA
## 5101 NA NA
## 5102 NA NA
## 5103 NA NA
## 5104 NA NA
## 5105 NA NA
## 5106 NA NA
## 5107 NA NA
## 5108 NA NA
## 5109 NA NA
## 5110 NA NA
## 5111 NA NA
## 5112 NA NA
## 5113 67.125 81.106
## 5114 67.125 81.106
## 5115 67.125 81.106
## 5116 67.125 81.106
## 5117 67.125 81.106
## 5118 67.125 81.106
## 5119 4.227 90.032
## 5120 4.227 90.032
## 5121 4.227 90.032
## 5122 4.227 90.032
## 5123 4.227 90.032
## 5124 4.227 90.032
## 5125 NA NA
## 5126 NA NA
## 5127 NA NA
## 5128 NA NA
## 5129 NA NA
## 5130 NA NA
## 5131 NA NA
## 5132 NA NA
## 5133 NA NA
## 5134 NA NA
## 5135 NA NA
## 5136 NA NA
## 5137 NA NA
## 5138 NA NA
## 5139 NA NA
## 5140 NA NA
## 5141 NA NA
## 5142 NA NA
## 5143 NA NA
## 5144 NA NA
## 5145 NA NA
## 5146 NA NA
## 5147 NA NA
## 5148 NA NA
## 5149 NA NA
## 5150 NA NA
## 5151 NA NA
## 5152 NA NA
## 5153 NA NA
## 5154 NA NA
## 5155 NA NA
## 5156 NA NA
## 5157 NA NA
## 5158 NA NA
## 5159 NA NA
## 5160 NA NA
## 5161 NA NA
## 5162 NA NA
## 5163 NA NA
## 5164 NA NA
## 5165 NA NA
## 5166 NA NA
## 5167 NA NA
## 5168 NA NA
## 5169 NA NA
## 5170 NA NA
## 5171 NA NA
## 5172 NA NA
## 5173 11.694 17.604
## 5174 11.694 17.604
## 5175 11.694 17.604
## 5176 11.694 17.604
## 5177 11.694 17.604
## 5178 11.694 17.604
## 5179 NA NA
## 5180 NA NA
## 5181 NA NA
## 5182 NA NA
## 5183 NA NA
## 5184 NA NA
## 5185 NA NA
## 5186 NA NA
## 5187 NA NA
## 5188 NA NA
## 5189 NA NA
## 5190 NA NA
## 5191 68.491 87.323
## 5192 68.491 87.323
## 5193 68.491 87.323
## 5194 68.491 87.323
## 5195 68.491 87.323
## 5196 68.491 87.323
## 5197 21.781 120.370
## 5198 21.781 120.370
## 5199 21.781 120.370
## 5200 21.781 120.370
## 5201 21.781 120.370
## 5202 21.781 120.370
## 5203 NA NA
## 5204 NA NA
## 5205 NA NA
## 5206 NA NA
## 5207 NA NA
## 5208 NA NA
## 5209 NA NA
## 5210 NA NA
## 5211 NA NA
## 5212 NA NA
## 5213 NA NA
## 5214 NA NA
## 5215 NA NA
## 5216 NA NA
## 5217 NA NA
## 5218 NA NA
## 5219 NA NA
## 5220 NA NA
## 5221 NA NA
## 5222 NA NA
## 5223 NA NA
## 5224 NA NA
## 5225 NA NA
## 5226 NA NA
## 5227 35.896 88.261
## 5228 35.896 88.261
## 5229 35.896 88.261
## 5230 35.896 88.261
## 5231 35.896 88.261
## 5232 35.896 88.261
## 5233 NA NA
## 5234 NA NA
## 5235 NA NA
## 5236 NA NA
## 5237 NA NA
## 5238 NA NA
## 5239 NA NA
## 5240 NA NA
## 5241 NA NA
## 5242 NA NA
## 5243 NA NA
## 5244 NA NA
## 5245 NA NA
## 5246 NA NA
## 5247 NA NA
## 5248 NA NA
## 5249 NA NA
## 5250 NA NA
## 5251 NA NA
## 5252 NA NA
## 5253 NA NA
## 5254 NA NA
## 5255 NA NA
## 5256 NA NA
## 5257 NA NA
## 5258 NA NA
## 5259 NA NA
## 5260 NA NA
## 5261 NA NA
## 5262 NA NA
## 5263 NA NA
## 5264 NA NA
## 5265 NA NA
## 5266 NA NA
## 5267 NA NA
## 5268 NA NA
## 5269 69.370 88.610
## 5270 69.370 88.610
## 5271 69.370 88.610
## 5272 69.370 88.610
## 5273 69.370 88.610
## 5274 69.370 88.610
## 5275 14.122 51.805
## 5276 14.122 51.805
## 5277 14.122 51.805
## 5278 14.122 51.805
## 5279 14.122 51.805
## 5280 14.122 51.805
## 5281 NA NA
## 5282 NA NA
## 5283 NA NA
## 5284 NA NA
## 5285 NA NA
## 5286 NA NA
## 5287 NA NA
## 5288 NA NA
## 5289 NA NA
## 5290 NA NA
## 5291 NA NA
## 5292 NA NA
## 5293 NA NA
## 5294 NA NA
## 5295 NA NA
## 5296 NA NA
## 5297 NA NA
## 5298 NA NA
## 5299 44.610 96.893
## 5300 44.610 96.893
## 5301 44.610 96.893
## 5302 44.610 96.893
## 5303 44.610 96.893
## 5304 44.610 96.893
## 5305 NA NA
## 5306 NA NA
## 5307 NA NA
## 5308 NA NA
## 5309 NA NA
## 5310 NA NA
## 5311 NA NA
## 5312 NA NA
## 5313 NA NA
## 5314 NA NA
## 5315 NA NA
## 5316 NA NA
## 5317 10.294 36.540
## 5318 10.294 36.540
## 5319 10.294 36.540
## 5320 10.294 36.540
## 5321 10.294 36.540
## 5322 10.294 36.540
## 5323 9.936 158.686
## 5324 9.936 158.686
## 5325 9.936 158.686
## 5326 9.936 158.686
## 5327 9.936 158.686
## 5328 9.936 158.686
## 5329 NA NA
## 5330 NA NA
## 5331 NA NA
## 5332 NA NA
## 5333 NA NA
## 5334 NA NA
## 5335 29.392 108.429
## 5336 29.392 108.429
## 5337 29.392 108.429
## 5338 29.392 108.429
## 5339 29.392 108.429
## 5340 29.392 108.429
## 5341 NA NA
## 5342 NA NA
## 5343 NA NA
## 5344 NA NA
## 5345 NA NA
## 5346 NA NA
## 5347 NA NA
## 5348 NA NA
## 5349 NA NA
## 5350 NA NA
## 5351 NA NA
## 5352 NA NA
## 5353 NA NA
## 5354 NA NA
## 5355 NA NA
## 5356 NA NA
## 5357 NA NA
## 5358 NA NA
## 5359 NA NA
## 5360 NA NA
## 5361 NA NA
## 5362 NA NA
## 5363 NA NA
## 5364 NA NA
## 5365 NA NA
## 5366 NA NA
## 5367 NA NA
## 5368 NA NA
## 5369 NA NA
## 5370 NA NA
## 5371 NA NA
## 5372 NA NA
## 5373 NA NA
## 5374 NA NA
## 5375 NA NA
## 5376 NA NA
## 5377 NA NA
## 5378 NA NA
## 5379 NA NA
## 5380 NA NA
## 5381 NA NA
## 5382 NA NA
## 5383 NA NA
## 5384 NA NA
## 5385 NA NA
## 5386 NA NA
## 5387 NA NA
## 5388 NA NA
## 5389 14.248 31.895
## 5390 14.248 31.895
## 5391 14.248 31.895
## 5392 14.248 31.895
## 5393 14.248 31.895
## 5394 14.248 31.895
## 5395 8.383 21.434
## 5396 8.383 21.434
## 5397 8.383 21.434
## 5398 8.383 21.434
## 5399 8.383 21.434
## 5400 8.383 21.434
## 5401 NA NA
## 5402 NA NA
## 5403 NA NA
## 5404 NA NA
## 5405 NA NA
## 5406 NA NA
## 5407 NA NA
## 5408 NA NA
## 5409 NA NA
## 5410 NA NA
## 5411 NA NA
## 5412 NA NA
## 5413 NA NA
## 5414 NA NA
## 5415 NA NA
## 5416 NA NA
## 5417 NA NA
## 5418 NA NA
## 5419 17.521 25.775
## 5420 17.521 25.775
## 5421 17.521 25.775
## 5422 17.521 25.775
## 5423 17.521 25.775
## 5424 17.521 25.775
## 5425 104.947 116.741
## 5426 104.947 116.741
## 5427 104.947 116.741
## 5428 104.947 116.741
## 5429 104.947 116.741
## 5430 104.947 116.741
## 5431 NA NA
## 5432 NA NA
## 5433 NA NA
## 5434 NA NA
## 5435 NA NA
## 5436 NA NA
## 5437 NA NA
## 5438 NA NA
## 5439 NA NA
## 5440 NA NA
## 5441 NA NA
## 5442 NA NA
## 5443 NA NA
## 5444 NA NA
## 5445 NA NA
## 5446 NA NA
## 5447 NA NA
## 5448 NA NA
## 5449 NA NA
## 5450 NA NA
## 5451 NA NA
## 5452 NA NA
## 5453 NA NA
## 5454 NA NA
## 5455 16.101 32.370
## 5456 16.101 32.370
## 5457 16.101 32.370
## 5458 16.101 32.370
## 5459 16.101 32.370
## 5460 16.101 32.370
## 5461 NA NA
## 5462 NA NA
## 5463 NA NA
## 5464 NA NA
## 5465 NA NA
## 5466 NA NA
## 5467 NA NA
## 5468 NA NA
## 5469 NA NA
## 5470 NA NA
## 5471 NA NA
## 5472 NA NA
## 5473 NA NA
## 5474 NA NA
## 5475 NA NA
## 5476 NA NA
## 5477 NA NA
## 5478 NA NA
## 5479 NA NA
## 5480 NA NA
## 5481 NA NA
## 5482 NA NA
## 5483 NA NA
## 5484 NA NA
## 5485 23.174 27.021
## 5486 23.174 27.021
## 5487 23.174 27.021
## 5488 23.174 27.021
## 5489 23.174 27.021
## 5490 23.174 27.021
## 5491 NA NA
## 5492 NA NA
## 5493 NA NA
## 5494 NA NA
## 5495 NA NA
## 5496 NA NA
## 5497 NA NA
## 5498 NA NA
## 5499 NA NA
## 5500 NA NA
## 5501 NA NA
## 5502 NA NA
## 5503 NA NA
## 5504 NA NA
## 5505 NA NA
## 5506 NA NA
## 5507 NA NA
## 5508 NA NA
## 5509 NA NA
## 5510 NA NA
## 5511 NA NA
## 5512 NA NA
## 5513 NA NA
## 5514 NA NA
## 5515 NA NA
## 5516 NA NA
## 5517 NA NA
## 5518 NA NA
## 5519 NA NA
## 5520 NA NA
## 5521 49.571 109.437
## 5522 49.571 109.437
## 5523 49.571 109.437
## 5524 49.571 109.437
## 5525 49.571 109.437
## 5526 49.571 109.437
## 5527 NA NA
## 5528 NA NA
## 5529 NA NA
## 5530 NA NA
## 5531 NA NA
## 5532 NA NA
## 5533 40.000 83.291
## 5534 40.000 83.291
## 5535 40.000 83.291
## 5536 40.000 83.291
## 5537 40.000 83.291
## 5538 40.000 83.291
## 5539 NA NA
## 5540 NA NA
## 5541 NA NA
## 5542 NA NA
## 5543 NA NA
## 5544 NA NA
## 5545 NA NA
## 5546 NA NA
## 5547 NA NA
## 5548 NA NA
## 5549 NA NA
## 5550 NA NA
## 5551 NA NA
## 5552 NA NA
## 5553 NA NA
## 5554 NA NA
## 5555 NA NA
## 5556 NA NA
## 5557 NA NA
## 5558 NA NA
## 5559 NA NA
## 5560 NA NA
## 5561 NA NA
## 5562 NA NA
## 5563 NA NA
## 5564 NA NA
## 5565 NA NA
## 5566 NA NA
## 5567 NA NA
## 5568 NA NA
## 5569 15.578 36.601
## 5570 15.578 36.601
## 5571 15.578 36.601
## 5572 15.578 36.601
## 5573 15.578 36.601
## 5574 15.578 36.601
## 5575 NA NA
## 5576 NA NA
## 5577 NA NA
## 5578 NA NA
## 5579 NA NA
## 5580 NA NA
## 5581 9.224 22.856
## 5582 9.224 22.856
## 5583 9.224 22.856
## 5584 9.224 22.856
## 5585 9.224 22.856
## 5586 9.224 22.856
## 5587 NA NA
## 5588 NA NA
## 5589 NA NA
## 5590 NA NA
## 5591 NA NA
## 5592 NA NA
## 5593 NA NA
## 5594 NA NA
## 5595 NA NA
## 5596 NA NA
## 5597 NA NA
## 5598 NA NA
## 5599 NA NA
## 5600 NA NA
## 5601 NA NA
## 5602 NA NA
## 5603 NA NA
## 5604 NA NA
## 5605 21.471 33.053
## 5606 21.471 33.053
## 5607 21.471 33.053
## 5608 21.471 33.053
## 5609 21.471 33.053
## 5610 21.471 33.053
## 5611 NA NA
## 5612 NA NA
## 5613 NA NA
## 5614 NA NA
## 5615 NA NA
## 5616 NA NA
## 5617 1.186 59.541
## 5618 1.186 59.541
## 5619 1.186 59.541
## 5620 1.186 59.541
## 5621 1.186 59.541
## 5622 1.186 59.541
## 5623 13.752 36.948
## 5624 13.752 36.948
## 5625 13.752 36.948
## 5626 13.752 36.948
## 5627 13.752 36.948
## 5628 13.752 36.948
## 5629 NA NA
## 5630 NA NA
## 5631 NA NA
## 5632 NA NA
## 5633 NA NA
## 5634 NA NA
## 5635 NA NA
## 5636 NA NA
## 5637 NA NA
## 5638 NA NA
## 5639 NA NA
## 5640 NA NA
## 5641 13.535 33.126
## 5642 13.535 33.126
## 5643 13.535 33.126
## 5644 13.535 33.126
## 5645 13.535 33.126
## 5646 13.535 33.126
## 5647 NA NA
## 5648 NA NA
## 5649 NA NA
## 5650 NA NA
## 5651 NA NA
## 5652 NA NA
## 5653 NA NA
## 5654 NA NA
## 5655 NA NA
## 5656 NA NA
## 5657 NA NA
## 5658 NA NA
## 5659 NA NA
## 5660 NA NA
## 5661 NA NA
## 5662 NA NA
## 5663 NA NA
## 5664 NA NA
## 5665 NA NA
## 5666 NA NA
## 5667 NA NA
## 5668 NA NA
## 5669 NA NA
## 5670 NA NA
## 5671 1349.256 1354.321
## 5672 1349.256 1354.321
## 5673 1349.256 1354.321
## 5674 1349.256 1354.321
## 5675 1349.256 1354.321
## 5676 1349.256 1354.321
## 5677 10.328 18.950
## 5678 10.328 18.950
## 5679 10.328 18.950
## 5680 10.328 18.950
## 5681 10.328 18.950
## 5682 10.328 18.950
## 5683 NA NA
## 5684 NA NA
## 5685 NA NA
## 5686 NA NA
## 5687 NA NA
## 5688 NA NA
## 5689 NA NA
## 5690 NA NA
## 5691 NA NA
## 5692 NA NA
## 5693 NA NA
## 5694 NA NA
## 5695 9.706 32.702
## 5696 9.706 32.702
## 5697 9.706 32.702
## 5698 9.706 32.702
## 5699 9.706 32.702
## 5700 9.706 32.702
## 5701 10.497 32.149
## 5702 10.497 32.149
## 5703 10.497 32.149
## 5704 10.497 32.149
## 5705 10.497 32.149
## 5706 10.497 32.149
## 5707 NA NA
## 5708 NA NA
## 5709 NA NA
## 5710 NA NA
## 5711 NA NA
## 5712 NA NA
## 5713 15.149 27.059
## 5714 15.149 27.059
## 5715 15.149 27.059
## 5716 15.149 27.059
## 5717 15.149 27.059
## 5718 15.149 27.059
## 5719 NA NA
## 5720 NA NA
## 5721 NA NA
## 5722 NA NA
## 5723 NA NA
## 5724 NA NA
## 5725 14.301 19.297
## 5726 14.301 19.297
## 5727 14.301 19.297
## 5728 14.301 19.297
## 5729 14.301 19.297
## 5730 14.301 19.297
## 5731 2.538 78.538
## 5732 2.538 78.538
## 5733 2.538 78.538
## 5734 2.538 78.538
## 5735 2.538 78.538
## 5736 2.538 78.538
## 5737 NA NA
## 5738 NA NA
## 5739 NA NA
## 5740 NA NA
## 5741 NA NA
## 5742 NA NA
## 5743 NA NA
## 5744 NA NA
## 5745 NA NA
## 5746 NA NA
## 5747 NA NA
## 5748 NA NA
## 5749 NA NA
## 5750 NA NA
## 5751 NA NA
## 5752 NA NA
## 5753 NA NA
## 5754 NA NA
## 5755 10.549 34.404
## 5756 10.549 34.404
## 5757 10.549 34.404
## 5758 10.549 34.404
## 5759 10.549 34.404
## 5760 10.549 34.404
## 5761 NA NA
## 5762 NA NA
## 5763 NA NA
## 5764 NA NA
## 5765 NA NA
## 5766 NA NA
## 5767 NA NA
## 5768 NA NA
## 5769 NA NA
## 5770 NA NA
## 5771 NA NA
## 5772 NA NA
## 5773 0.944 15.647
## 5774 0.944 15.647
## 5775 0.944 15.647
## 5776 0.944 15.647
## 5777 0.944 15.647
## 5778 0.944 15.647
## 5779 NA NA
## 5780 NA NA
## 5781 NA NA
## 5782 NA NA
## 5783 NA NA
## 5784 NA NA
## 5785 NA NA
## 5786 NA NA
## 5787 NA NA
## 5788 NA NA
## 5789 NA NA
## 5790 NA NA
## 5791 16.091 33.320
## 5792 16.091 33.320
## 5793 16.091 33.320
## 5794 16.091 33.320
## 5795 16.091 33.320
## 5796 16.091 33.320
## 5797 NA NA
## 5798 NA NA
## 5799 NA NA
## 5800 NA NA
## 5801 NA NA
## 5802 NA NA
## 5803 NA NA
## 5804 NA NA
## 5805 NA NA
## 5806 NA NA
## 5807 NA NA
## 5808 NA NA
## 5809 NA NA
## 5810 NA NA
## 5811 NA NA
## 5812 NA NA
## 5813 NA NA
## 5814 NA NA
## 5815 NA NA
## 5816 NA NA
## 5817 NA NA
## 5818 NA NA
## 5819 NA NA
## 5820 NA NA
## 5821 NA NA
## 5822 NA NA
## 5823 NA NA
## 5824 NA NA
## 5825 NA NA
## 5826 NA NA
## 5827 1.570 20.956
## 5828 1.570 20.956
## 5829 1.570 20.956
## 5830 1.570 20.956
## 5831 1.570 20.956
## 5832 1.570 20.956
## 5833 NA NA
## 5834 NA NA
## 5835 NA NA
## 5836 NA NA
## 5837 NA NA
## 5838 NA NA
## 5839 NA NA
## 5840 NA NA
## 5841 NA NA
## 5842 NA NA
## 5843 NA NA
## 5844 NA NA
## 5845 NA NA
## 5846 NA NA
## 5847 NA NA
## 5848 NA NA
## 5849 NA NA
## 5850 NA NA
## 5851 NA NA
## 5852 NA NA
## 5853 NA NA
## 5854 NA NA
## 5855 NA NA
## 5856 NA NA
## 5857 NA NA
## 5858 NA NA
## 5859 NA NA
## 5860 NA NA
## 5861 NA NA
## 5862 NA NA
## 5863 NA NA
## 5864 NA NA
## 5865 NA NA
## 5866 NA NA
## 5867 NA NA
## 5868 NA NA
## 5869 NA NA
## 5870 NA NA
## 5871 NA NA
## 5872 NA NA
## 5873 NA NA
## 5874 NA NA
## 5875 NA NA
## 5876 NA NA
## 5877 NA NA
## 5878 NA NA
## 5879 NA NA
## 5880 NA NA
## 5881 NA NA
## 5882 NA NA
## 5883 NA NA
## 5884 NA NA
## 5885 NA NA
## 5886 NA NA
## 5887 NA NA
## 5888 NA NA
## 5889 NA NA
## 5890 NA NA
## 5891 NA NA
## 5892 NA NA
## 5893 NA NA
## 5894 NA NA
## 5895 NA NA
## 5896 NA NA
## 5897 NA NA
## 5898 NA NA
## 5899 NA NA
## 5900 NA NA
## 5901 NA NA
## 5902 NA NA
## 5903 NA NA
## 5904 NA NA
## 5905 NA NA
## 5906 NA NA
## 5907 NA NA
## 5908 NA NA
## 5909 NA NA
## 5910 NA NA
## 5911 NA NA
## 5912 NA NA
## 5913 NA NA
## 5914 NA NA
## 5915 NA NA
## 5916 NA NA
## 5917 NA NA
## 5918 NA NA
## 5919 NA NA
## 5920 NA NA
## 5921 NA NA
## 5922 NA NA
## 5923 NA NA
## 5924 NA NA
## 5925 NA NA
## 5926 NA NA
## 5927 NA NA
## 5928 NA NA
## 5929 NA NA
## 5930 NA NA
## 5931 NA NA
## 5932 NA NA
## 5933 NA NA
## 5934 NA NA
## 5935 26.308 47.677
## 5936 26.308 47.677
## 5937 26.308 47.677
## 5938 26.308 47.677
## 5939 26.308 47.677
## 5940 26.308 47.677
## 5941 33.723 62.262
## 5942 33.723 62.262
## 5943 33.723 62.262
## 5944 33.723 62.262
## 5945 33.723 62.262
## 5946 33.723 62.262
## 5947 NA NA
## 5948 NA NA
## 5949 NA NA
## 5950 NA NA
## 5951 NA NA
## 5952 NA NA
## 5953 NA NA
## 5954 NA NA
## 5955 NA NA
## 5956 NA NA
## 5957 NA NA
## 5958 NA NA
## 5959 NA NA
## 5960 NA NA
## 5961 NA NA
## 5962 NA NA
## 5963 NA NA
## 5964 NA NA
## 5965 44.750 65.198
## 5966 44.750 65.198
## 5967 44.750 65.198
## 5968 44.750 65.198
## 5969 44.750 65.198
## 5970 44.750 65.198
## 5971 NA NA
## 5972 NA NA
## 5973 NA NA
## 5974 NA NA
## 5975 NA NA
## 5976 NA NA
## 5977 NA NA
## 5978 NA NA
## 5979 NA NA
## 5980 NA NA
## 5981 NA NA
## 5982 NA NA
## 5983 NA NA
## 5984 NA NA
## 5985 NA NA
## 5986 NA NA
## 5987 NA NA
## 5988 NA NA
## 5989 NA NA
## 5990 NA NA
## 5991 NA NA
## 5992 NA NA
## 5993 NA NA
## 5994 NA NA
## 5995 NA NA
## 5996 NA NA
## 5997 NA NA
## 5998 NA NA
## 5999 NA NA
## 6000 NA NA
## 6001 NA NA
## 6002 NA NA
## 6003 NA NA
## 6004 NA NA
## 6005 NA NA
## 6006 NA NA
## 6007 7.854 11.254
## 6008 7.854 11.254
## 6009 7.854 11.254
## 6010 7.854 11.254
## 6011 7.854 11.254
## 6012 7.854 11.254
## 6013 NA NA
## 6014 NA NA
## 6015 NA NA
## 6016 NA NA
## 6017 NA NA
## 6018 NA NA
## 6019 22.686 35.370
## 6020 22.686 35.370
## 6021 22.686 35.370
## 6022 22.686 35.370
## 6023 22.686 35.370
## 6024 22.686 35.370
## 6025 14.731 25.465
## 6026 14.731 25.465
## 6027 14.731 25.465
## 6028 14.731 25.465
## 6029 14.731 25.465
## 6030 14.731 25.465
## 6031 NA NA
## 6032 NA NA
## 6033 NA NA
## 6034 NA NA
## 6035 NA NA
## 6036 NA NA
## 6037 NA NA
## 6038 NA NA
## 6039 NA NA
## 6040 NA NA
## 6041 NA NA
## 6042 NA NA
## 6043 NA NA
## 6044 NA NA
## 6045 NA NA
## 6046 NA NA
## 6047 NA NA
## 6048 NA NA
## 6049 7.629 18.812
## 6050 7.629 18.812
## 6051 7.629 18.812
## 6052 7.629 18.812
## 6053 7.629 18.812
## 6054 7.629 18.812
## 6055 NA NA
## 6056 NA NA
## 6057 NA NA
## 6058 NA NA
## 6059 NA NA
## 6060 NA NA
## 6061 NA NA
## 6062 NA NA
## 6063 NA NA
## 6064 NA NA
## 6065 NA NA
## 6066 NA NA
## 6067 NA NA
## 6068 NA NA
## 6069 NA NA
## 6070 NA NA
## 6071 NA NA
## 6072 NA NA
## 6073 NA NA
## 6074 NA NA
## 6075 NA NA
## 6076 NA NA
## 6077 NA NA
## 6078 NA NA
## 6079 NA NA
## 6080 NA NA
## 6081 NA NA
## 6082 NA NA
## 6083 NA NA
## 6084 NA NA
## 6085 NA NA
## 6086 NA NA
## 6087 NA NA
## 6088 NA NA
## 6089 NA NA
## 6090 NA NA
## 6091 NA NA
## 6092 NA NA
## 6093 NA NA
## 6094 NA NA
## 6095 NA NA
## 6096 NA NA
## 6097 NA NA
## 6098 NA NA
## 6099 NA NA
## 6100 NA NA
## 6101 NA NA
## 6102 NA NA
## 6103 NA NA
## 6104 NA NA
## 6105 NA NA
## 6106 NA NA
## 6107 NA NA
## 6108 NA NA
## 6109 NA NA
## 6110 NA NA
## 6111 NA NA
## 6112 NA NA
## 6113 NA NA
## 6114 NA NA
## 6115 NA NA
## 6116 NA NA
## 6117 NA NA
## 6118 NA NA
## 6119 NA NA
## 6120 NA NA
## 6121 NA NA
## 6122 NA NA
## 6123 NA NA
## 6124 NA NA
## 6125 NA NA
## 6126 NA NA
## 6127 NA NA
## 6128 NA NA
## 6129 NA NA
## 6130 NA NA
## 6131 NA NA
## 6132 NA NA
## 6133 NA NA
## 6134 NA NA
## 6135 NA NA
## 6136 NA NA
## 6137 NA NA
## 6138 NA NA
## 6139 NA NA
## 6140 NA NA
## 6141 NA NA
## 6142 NA NA
## 6143 NA NA
## 6144 NA NA
## 6145 NA NA
## 6146 NA NA
## 6147 NA NA
## 6148 NA NA
## 6149 NA NA
## 6150 NA NA
## 6151 NA NA
## 6152 NA NA
## 6153 NA NA
## 6154 NA NA
## 6155 NA NA
## 6156 NA NA
## 6157 NA NA
## 6158 NA NA
## 6159 NA NA
## 6160 NA NA
## 6161 NA NA
## 6162 NA NA
## 6163 13.360 46.032
## 6164 13.360 46.032
## 6165 13.360 46.032
## 6166 13.360 46.032
## 6167 13.360 46.032
## 6168 13.360 46.032
## 6169 1.951 42.446
## 6170 1.951 42.446
## 6171 1.951 42.446
## 6172 1.951 42.446
## 6173 1.951 42.446
## 6174 1.951 42.446
## 6175 8.636 22.186
## 6176 8.636 22.186
## 6177 8.636 22.186
## 6178 8.636 22.186
## 6179 8.636 22.186
## 6180 8.636 22.186
## 6181 NA NA
## 6182 NA NA
## 6183 NA NA
## 6184 NA NA
## 6185 NA NA
## 6186 NA NA
## 6187 NA NA
## 6188 NA NA
## 6189 NA NA
## 6190 NA NA
## 6191 NA NA
## 6192 NA NA
## 6193 NA NA
## 6194 NA NA
## 6195 NA NA
## 6196 NA NA
## 6197 NA NA
## 6198 NA NA
## 6199 NA NA
## 6200 NA NA
## 6201 NA NA
## 6202 NA NA
## 6203 NA NA
## 6204 NA NA
## 6205 17.701 26.160
## 6206 17.701 26.160
## 6207 17.701 26.160
## 6208 17.701 26.160
## 6209 17.701 26.160
## 6210 17.701 26.160
## 6211 NA NA
## 6212 NA NA
## 6213 NA NA
## 6214 NA NA
## 6215 NA NA
## 6216 NA NA
## 6217 NA NA
## 6218 NA NA
## 6219 NA NA
## 6220 NA NA
## 6221 NA NA
## 6222 NA NA
## 6223 NA NA
## 6224 NA NA
## 6225 NA NA
## 6226 NA NA
## 6227 NA NA
## 6228 NA NA
## 6229 NA NA
## 6230 NA NA
## 6231 NA NA
## 6232 NA NA
## 6233 NA NA
## 6234 NA NA
## 6235 NA NA
## 6236 NA NA
## 6237 NA NA
## 6238 NA NA
## 6239 NA NA
## 6240 NA NA
## 6241 NA NA
## 6242 NA NA
## 6243 NA NA
## 6244 NA NA
## 6245 NA NA
## 6246 NA NA
## 6247 NA NA
## 6248 NA NA
## 6249 NA NA
## 6250 NA NA
## 6251 NA NA
## 6252 NA NA
## 6253 NA NA
## 6254 NA NA
## 6255 NA NA
## 6256 NA NA
## 6257 NA NA
## 6258 NA NA
## 6259 NA NA
## 6260 NA NA
## 6261 NA NA
## 6262 NA NA
## 6263 NA NA
## 6264 NA NA
## 6265 NA NA
## 6266 NA NA
## 6267 NA NA
## 6268 NA NA
## 6269 NA NA
## 6270 NA NA
## 6271 NA NA
## 6272 NA NA
## 6273 NA NA
## 6274 NA NA
## 6275 NA NA
## 6276 NA NA
## 6277 NA NA
## 6278 NA NA
## 6279 NA NA
## 6280 NA NA
## 6281 NA NA
## 6282 NA NA
## 6283 NA NA
## 6284 NA NA
## 6285 NA NA
## 6286 NA NA
## 6287 NA NA
## 6288 NA NA
## 6289 NA NA
## 6290 NA NA
## 6291 NA NA
## 6292 NA NA
## 6293 NA NA
## 6294 NA NA
## 6295 NA NA
## 6296 NA NA
## 6297 NA NA
## 6298 NA NA
## 6299 NA NA
## 6300 NA NA
## 6301 26.066 49.417
## 6302 26.066 49.417
## 6303 26.066 49.417
## 6304 26.066 49.417
## 6305 26.066 49.417
## 6306 26.066 49.417
## 6307 NA NA
## 6308 NA NA
## 6309 NA NA
## 6310 NA NA
## 6311 NA NA
## 6312 NA NA
## 6313 NA NA
## 6314 NA NA
## 6315 NA NA
## 6316 NA NA
## 6317 NA NA
## 6318 NA NA
## 6319 NA NA
## 6320 NA NA
## 6321 NA NA
## 6322 NA NA
## 6323 NA NA
## 6324 NA NA
## 6325 NA NA
## 6326 NA NA
## 6327 NA NA
## 6328 NA NA
## 6329 NA NA
## 6330 NA NA
## 6331 14.476 26.207
## 6332 14.476 26.207
## 6333 14.476 26.207
## 6334 14.476 26.207
## 6335 14.476 26.207
## 6336 14.476 26.207
## 6337 NA NA
## 6338 NA NA
## 6339 NA NA
## 6340 NA NA
## 6341 NA NA
## 6342 NA NA
## 6343 12.768 19.522
## 6344 12.768 19.522
## 6345 12.768 19.522
## 6346 12.768 19.522
## 6347 12.768 19.522
## 6348 12.768 19.522
## 6349 NA NA
## 6350 NA NA
## 6351 NA NA
## 6352 NA NA
## 6353 NA NA
## 6354 NA NA
## 6355 NA NA
## 6356 NA NA
## 6357 NA NA
## 6358 NA NA
## 6359 NA NA
## 6360 NA NA
## 6361 NA NA
## 6362 NA NA
## 6363 NA NA
## 6364 NA NA
## 6365 NA NA
## 6366 NA NA
## 6367 NA NA
## 6368 NA NA
## 6369 NA NA
## 6370 NA NA
## 6371 NA NA
## 6372 NA NA
## 6373 NA NA
## 6374 NA NA
## 6375 NA NA
## 6376 NA NA
## 6377 NA NA
## 6378 NA NA
## 6379 NA NA
## 6380 NA NA
## 6381 NA NA
## 6382 NA NA
## 6383 NA NA
## 6384 NA NA
## 6385 NA NA
## 6386 NA NA
## 6387 NA NA
## 6388 NA NA
## 6389 NA NA
## 6390 NA NA
## 6391 NA NA
## 6392 NA NA
## 6393 NA NA
## 6394 NA NA
## 6395 NA NA
## 6396 NA NA
## 6397 NA NA
## 6398 NA NA
## 6399 NA NA
## 6400 NA NA
## 6401 NA NA
## 6402 NA NA
## 6403 15.720 36.066
## 6404 15.720 36.066
## 6405 15.720 36.066
## 6406 15.720 36.066
## 6407 15.720 36.066
## 6408 15.720 36.066
## 6409 NA NA
## 6410 NA NA
## 6411 NA NA
## 6412 NA NA
## 6413 NA NA
## 6414 NA NA
## 6415 NA NA
## 6416 NA NA
## 6417 NA NA
## 6418 NA NA
## 6419 NA NA
## 6420 NA NA
## 6421 NA NA
## 6422 NA NA
## 6423 NA NA
## 6424 NA NA
## 6425 NA NA
## 6426 NA NA
## 6427 14.951 19.759
## 6428 14.951 19.759
## 6429 14.951 19.759
## 6430 14.951 19.759
## 6431 14.951 19.759
## 6432 14.951 19.759
## 6433 NA NA
## 6434 NA NA
## 6435 NA NA
## 6436 NA NA
## 6437 NA NA
## 6438 NA NA
## 6439 8.287 40.506
## 6440 8.287 40.506
## 6441 8.287 40.506
## 6442 8.287 40.506
## 6443 8.287 40.506
## 6444 8.287 40.506
## 6445 NA NA
## 6446 NA NA
## 6447 NA NA
## 6448 NA NA
## 6449 NA NA
## 6450 NA NA
## 6451 NA NA
## 6452 NA NA
## 6453 NA NA
## 6454 NA NA
## 6455 NA NA
## 6456 NA NA
## 6457 10.155 22.198
## 6458 10.155 22.198
## 6459 10.155 22.198
## 6460 10.155 22.198
## 6461 10.155 22.198
## 6462 10.155 22.198
## 6463 NA NA
## 6464 NA NA
## 6465 NA NA
## 6466 NA NA
## 6467 NA NA
## 6468 NA NA
## 6469 NA NA
## 6470 NA NA
## 6471 NA NA
## 6472 NA NA
## 6473 NA NA
## 6474 NA NA
## 6475 NA NA
## 6476 NA NA
## 6477 NA NA
## 6478 NA NA
## 6479 NA NA
## 6480 NA NA
## 6481 NA NA
## 6482 NA NA
## 6483 NA NA
## 6484 NA NA
## 6485 NA NA
## 6486 NA NA
## 6487 NA NA
## 6488 NA NA
## 6489 NA NA
## 6490 NA NA
## 6491 NA NA
## 6492 NA NA
## 6493 21.157 28.045
## 6494 21.157 28.045
## 6495 21.157 28.045
## 6496 21.157 28.045
## 6497 21.157 28.045
## 6498 21.157 28.045
## 6499 12.057 27.598
## 6500 12.057 27.598
## 6501 12.057 27.598
## 6502 12.057 27.598
## 6503 12.057 27.598
## 6504 12.057 27.598
## 6505 NA NA
## 6506 NA NA
## 6507 NA NA
## 6508 NA NA
## 6509 NA NA
## 6510 NA NA
## 6511 NA NA
## 6512 NA NA
## 6513 NA NA
## 6514 NA NA
## 6515 NA NA
## 6516 NA NA
## 6517 5.125 34.921
## 6518 5.125 34.921
## 6519 5.125 34.921
## 6520 5.125 34.921
## 6521 5.125 34.921
## 6522 5.125 34.921
## 6523 NA NA
## 6524 NA NA
## 6525 NA NA
## 6526 NA NA
## 6527 NA NA
## 6528 NA NA
## 6529 5.190 53.413
## 6530 5.190 53.413
## 6531 5.190 53.413
## 6532 5.190 53.413
## 6533 5.190 53.413
## 6534 5.190 53.413
## 6535 42.996 77.427
## 6536 42.996 77.427
## 6537 42.996 77.427
## 6538 42.996 77.427
## 6539 42.996 77.427
## 6540 42.996 77.427
## 6541 82.054 108.601
## 6542 82.054 108.601
## 6543 82.054 108.601
## 6544 82.054 108.601
## 6545 82.054 108.601
## 6546 82.054 108.601
## 6547 7.652 21.091
## 6548 7.652 21.091
## 6549 7.652 21.091
## 6550 7.652 21.091
## 6551 7.652 21.091
## 6552 7.652 21.091
## 6553 NA NA
## 6554 NA NA
## 6555 NA NA
## 6556 NA NA
## 6557 NA NA
## 6558 NA NA
## 6559 NA NA
## 6560 NA NA
## 6561 NA NA
## 6562 NA NA
## 6563 NA NA
## 6564 NA NA
## 6565 NA NA
## 6566 NA NA
## 6567 NA NA
## 6568 NA NA
## 6569 NA NA
## 6570 NA NA
## 6571 NA NA
## 6572 NA NA
## 6573 NA NA
## 6574 NA NA
## 6575 NA NA
## 6576 NA NA
## 6577 NA NA
## 6578 NA NA
## 6579 NA NA
## 6580 NA NA
## 6581 NA NA
## 6582 NA NA
## 6583 NA NA
## 6584 NA NA
## 6585 NA NA
## 6586 NA NA
## 6587 NA NA
## 6588 NA NA
## 6589 NA NA
## 6590 NA NA
## 6591 NA NA
## 6592 NA NA
## 6593 NA NA
## 6594 NA NA
## 6595 NA NA
## 6596 NA NA
## 6597 NA NA
## 6598 NA NA
## 6599 NA NA
## 6600 NA NA
## 6601 NA NA
## 6602 NA NA
## 6603 NA NA
## 6604 NA NA
## 6605 NA NA
## 6606 NA NA
## 6607 4.125 53.145
## 6608 4.125 53.145
## 6609 4.125 53.145
## 6610 4.125 53.145
## 6611 4.125 53.145
## 6612 4.125 53.145
## 6613 NA NA
## 6614 NA NA
## 6615 NA NA
## 6616 NA NA
## 6617 NA NA
## 6618 NA NA
## 6619 NA NA
## 6620 NA NA
## 6621 NA NA
## 6622 NA NA
## 6623 NA NA
## 6624 NA NA
## 6625 NA NA
## 6626 NA NA
## 6627 NA NA
## 6628 NA NA
## 6629 NA NA
## 6630 NA NA
## 6631 NA NA
## 6632 NA NA
## 6633 NA NA
## 6634 NA NA
## 6635 NA NA
## 6636 NA NA
## 6637 25.233 35.974
## 6638 25.233 35.974
## 6639 25.233 35.974
## 6640 25.233 35.974
## 6641 25.233 35.974
## 6642 25.233 35.974
## 6643 NA NA
## 6644 NA NA
## 6645 NA NA
## 6646 NA NA
## 6647 NA NA
## 6648 NA NA
## 6649 NA NA
## 6650 NA NA
## 6651 NA NA
## 6652 NA NA
## 6653 NA NA
## 6654 NA NA
## 6655 NA NA
## 6656 NA NA
## 6657 NA NA
## 6658 NA NA
## 6659 NA NA
## 6660 NA NA
## 6661 NA NA
## 6662 NA NA
## 6663 NA NA
## 6664 NA NA
## 6665 NA NA
## 6666 NA NA
## 6667 12.802 19.048
## 6668 12.802 19.048
## 6669 12.802 19.048
## 6670 12.802 19.048
## 6671 12.802 19.048
## 6672 12.802 19.048
## 6673 NA NA
## 6674 NA NA
## 6675 NA NA
## 6676 NA NA
## 6677 NA NA
## 6678 NA NA
## 6679 NA NA
## 6680 NA NA
## 6681 NA NA
## 6682 NA NA
## 6683 NA NA
## 6684 NA NA
## 6685 25.007 41.396
## 6686 25.007 41.396
## 6687 25.007 41.396
## 6688 25.007 41.396
## 6689 25.007 41.396
## 6690 25.007 41.396
## 6691 12.329 19.259
## 6692 12.329 19.259
## 6693 12.329 19.259
## 6694 12.329 19.259
## 6695 12.329 19.259
## 6696 12.329 19.259
## 6697 10.246 15.903
## 6698 10.246 15.903
## 6699 10.246 15.903
## 6700 10.246 15.903
## 6701 10.246 15.903
## 6702 10.246 15.903
## 6703 NA NA
## 6704 NA NA
## 6705 NA NA
## 6706 NA NA
## 6707 NA NA
## 6708 NA NA
## 6709 NA NA
## 6710 NA NA
## 6711 NA NA
## 6712 NA NA
## 6713 NA NA
## 6714 NA NA
## 6715 NA NA
## 6716 NA NA
## 6717 NA NA
## 6718 NA NA
## 6719 NA NA
## 6720 NA NA
## 6721 NA NA
## 6722 NA NA
## 6723 NA NA
## 6724 NA NA
## 6725 NA NA
## 6726 NA NA
## 6727 NA NA
## 6728 NA NA
## 6729 NA NA
## 6730 NA NA
## 6731 NA NA
## 6732 NA NA
## 6733 25.644 69.733
## 6734 25.644 69.733
## 6735 25.644 69.733
## 6736 25.644 69.733
## 6737 25.644 69.733
## 6738 25.644 69.733
## 6739 NA NA
## 6740 NA NA
## 6741 NA NA
## 6742 NA NA
## 6743 NA NA
## 6744 NA NA
## 6745 NA NA
## 6746 NA NA
## 6747 NA NA
## 6748 NA NA
## 6749 NA NA
## 6750 NA NA
## 6751 NA NA
## 6752 NA NA
## 6753 NA NA
## 6754 NA NA
## 6755 NA NA
## 6756 NA NA
## 6757 NA NA
## 6758 NA NA
## 6759 NA NA
## 6760 NA NA
## 6761 NA NA
## 6762 NA NA
## 6763 NA NA
## 6764 NA NA
## 6765 NA NA
## 6766 NA NA
## 6767 NA NA
## 6768 NA NA
## 6769 NA NA
## 6770 NA NA
## 6771 NA NA
## 6772 NA NA
## 6773 NA NA
## 6774 NA NA
## 6775 44.392 53.649
## 6776 44.392 53.649
## 6777 44.392 53.649
## 6778 44.392 53.649
## 6779 44.392 53.649
## 6780 44.392 53.649
## 6781 NA NA
## 6782 NA NA
## 6783 NA NA
## 6784 NA NA
## 6785 NA NA
## 6786 NA NA
## 6787 3.389 7.877
## 6788 3.389 7.877
## 6789 3.389 7.877
## 6790 3.389 7.877
## 6791 3.389 7.877
## 6792 3.389 7.877
## 6793 NA NA
## 6794 NA NA
## 6795 NA NA
## 6796 NA NA
## 6797 NA NA
## 6798 NA NA
## 6799 NA NA
## 6800 NA NA
## 6801 NA NA
## 6802 NA NA
## 6803 NA NA
## 6804 NA NA
## 6805 NA NA
## 6806 NA NA
## 6807 NA NA
## 6808 NA NA
## 6809 NA NA
## 6810 NA NA
## 6811 26.573 42.853
## 6812 26.573 42.853
## 6813 26.573 42.853
## 6814 26.573 42.853
## 6815 26.573 42.853
## 6816 26.573 42.853
## 6817 NA NA
## 6818 NA NA
## 6819 NA NA
## 6820 NA NA
## 6821 NA NA
## 6822 NA NA
## 6823 22.088 33.231
## 6824 22.088 33.231
## 6825 22.088 33.231
## 6826 22.088 33.231
## 6827 22.088 33.231
## 6828 22.088 33.231
## 6829 2.080 48.901
## 6830 2.080 48.901
## 6831 2.080 48.901
## 6832 2.080 48.901
## 6833 2.080 48.901
## 6834 2.080 48.901
## 6835 NA NA
## 6836 NA NA
## 6837 NA NA
## 6838 NA NA
## 6839 NA NA
## 6840 NA NA
## 6841 NA NA
## 6842 NA NA
## 6843 NA NA
## 6844 NA NA
## 6845 NA NA
## 6846 NA NA
## 6847 NA NA
## 6848 NA NA
## 6849 NA NA
## 6850 NA NA
## 6851 NA NA
## 6852 NA NA
## 6853 NA NA
## 6854 NA NA
## 6855 NA NA
## 6856 NA NA
## 6857 NA NA
## 6858 NA NA
## 6859 13.384 23.472
## 6860 13.384 23.472
## 6861 13.384 23.472
## 6862 13.384 23.472
## 6863 13.384 23.472
## 6864 13.384 23.472
## 6865 NA NA
## 6866 NA NA
## 6867 NA NA
## 6868 NA NA
## 6869 NA NA
## 6870 NA NA
## 6871 NA NA
## 6872 NA NA
## 6873 NA NA
## 6874 NA NA
## 6875 NA NA
## 6876 NA NA
## 6877 2.456 30.696
## 6878 2.456 30.696
## 6879 2.456 30.696
## 6880 2.456 30.696
## 6881 2.456 30.696
## 6882 2.456 30.696
## 6883 NA NA
## 6884 NA NA
## 6885 NA NA
## 6886 NA NA
## 6887 NA NA
## 6888 NA NA
## 6889 NA NA
## 6890 NA NA
## 6891 NA NA
## 6892 NA NA
## 6893 NA NA
## 6894 NA NA
## 6895 28.552 81.070
## 6896 28.552 81.070
## 6897 28.552 81.070
## 6898 28.552 81.070
## 6899 28.552 81.070
## 6900 28.552 81.070
## 6901 21.894 79.758
## 6902 21.894 79.758
## 6903 21.894 79.758
## 6904 21.894 79.758
## 6905 21.894 79.758
## 6906 21.894 79.758
## 6907 NA NA
## 6908 NA NA
## 6909 NA NA
## 6910 NA NA
## 6911 NA NA
## 6912 NA NA
## 6913 NA NA
## 6914 NA NA
## 6915 NA NA
## 6916 NA NA
## 6917 NA NA
## 6918 NA NA
## 6919 NA NA
## 6920 NA NA
## 6921 NA NA
## 6922 NA NA
## 6923 NA NA
## 6924 NA NA
## 6925 NA NA
## 6926 NA NA
## 6927 NA NA
## 6928 NA NA
## 6929 NA NA
## 6930 NA NA
## 6931 NA NA
## 6932 NA NA
## 6933 NA NA
## 6934 NA NA
## 6935 NA NA
## 6936 NA NA
## 6937 NA NA
## 6938 NA NA
## 6939 NA NA
## 6940 NA NA
## 6941 NA NA
## 6942 NA NA
## 6943 NA NA
## 6944 NA NA
## 6945 NA NA
## 6946 NA NA
## 6947 NA NA
## 6948 NA NA
## 6949 NA NA
## 6950 NA NA
## 6951 NA NA
## 6952 NA NA
## 6953 NA NA
## 6954 NA NA
## 6955 9.654 18.153
## 6956 9.654 18.153
## 6957 9.654 18.153
## 6958 9.654 18.153
## 6959 9.654 18.153
## 6960 9.654 18.153
## 6961 NA NA
## 6962 NA NA
## 6963 NA NA
## 6964 NA NA
## 6965 NA NA
## 6966 NA NA
## 6967 NA NA
## 6968 NA NA
## 6969 NA NA
## 6970 NA NA
## 6971 NA NA
## 6972 NA NA
## 6973 NA NA
## 6974 NA NA
## 6975 NA NA
## 6976 NA NA
## 6977 NA NA
## 6978 NA NA
## 6979 NA NA
## 6980 NA NA
## 6981 NA NA
## 6982 NA NA
## 6983 NA NA
## 6984 NA NA
## 6985 NA NA
## 6986 NA NA
## 6987 NA NA
## 6988 NA NA
## 6989 NA NA
## 6990 NA NA
## 6991 NA NA
## 6992 NA NA
## 6993 NA NA
## 6994 NA NA
## 6995 NA NA
## 6996 NA NA
## 6997 NA NA
## 6998 NA NA
## 6999 NA NA
## 7000 NA NA
## 7001 NA NA
## 7002 NA NA
## 7003 NA NA
## 7004 NA NA
## 7005 NA NA
## 7006 NA NA
## 7007 NA NA
## 7008 NA NA
## 7009 20.534 54.378
## 7010 20.534 54.378
## 7011 20.534 54.378
## 7012 20.534 54.378
## 7013 20.534 54.378
## 7014 20.534 54.378
## 7015 NA NA
## 7016 NA NA
## 7017 NA NA
## 7018 NA NA
## 7019 NA NA
## 7020 NA NA
## 7021 NA NA
## 7022 NA NA
## 7023 NA NA
## 7024 NA NA
## 7025 NA NA
## 7026 NA NA
## 7027 17.050 28.956
## 7028 17.050 28.956
## 7029 17.050 28.956
## 7030 17.050 28.956
## 7031 17.050 28.956
## 7032 17.050 28.956
## 7033 NA NA
## 7034 NA NA
## 7035 NA NA
## 7036 NA NA
## 7037 NA NA
## 7038 NA NA
## 7039 NA NA
## 7040 NA NA
## 7041 NA NA
## 7042 NA NA
## 7043 NA NA
## 7044 NA NA
## 7045 10.389 19.800
## 7046 10.389 19.800
## 7047 10.389 19.800
## 7048 10.389 19.800
## 7049 10.389 19.800
## 7050 10.389 19.800
## 7051 NA NA
## 7052 NA NA
## 7053 NA NA
## 7054 NA NA
## 7055 NA NA
## 7056 NA NA
## 7057 NA NA
## 7058 NA NA
## 7059 NA NA
## 7060 NA NA
## 7061 NA NA
## 7062 NA NA
## 7063 NA NA
## 7064 NA NA
## 7065 NA NA
## 7066 NA NA
## 7067 NA NA
## 7068 NA NA
## 7069 1.308 34.259
## 7070 1.308 34.259
## 7071 1.308 34.259
## 7072 1.308 34.259
## 7073 1.308 34.259
## 7074 1.308 34.259
## 7075 NA NA
## 7076 NA NA
## 7077 NA NA
## 7078 NA NA
## 7079 NA NA
## 7080 NA NA
## 7081 NA NA
## 7082 NA NA
## 7083 NA NA
## 7084 NA NA
## 7085 NA NA
## 7086 NA NA
## 7087 NA NA
## 7088 NA NA
## 7089 NA NA
## 7090 NA NA
## 7091 NA NA
## 7092 NA NA
## 7093 NA NA
## 7094 NA NA
## 7095 NA NA
## 7096 NA NA
## 7097 NA NA
## 7098 NA NA
## 7099 25.469 54.141
## 7100 25.469 54.141
## 7101 25.469 54.141
## 7102 25.469 54.141
## 7103 25.469 54.141
## 7104 25.469 54.141
## 7105 2.034 38.997
## 7106 2.034 38.997
## 7107 2.034 38.997
## 7108 2.034 38.997
## 7109 2.034 38.997
## 7110 2.034 38.997
## 7111 NA NA
## 7112 NA NA
## 7113 NA NA
## 7114 NA NA
## 7115 NA NA
## 7116 NA NA
## 7117 NA NA
## 7118 NA NA
## 7119 NA NA
## 7120 NA NA
## 7121 NA NA
## 7122 NA NA
## 7123 24.010 41.859
## 7124 24.010 41.859
## 7125 24.010 41.859
## 7126 24.010 41.859
## 7127 24.010 41.859
## 7128 24.010 41.859
## 7129 NA NA
## 7130 NA NA
## 7131 NA NA
## 7132 NA NA
## 7133 NA NA
## 7134 NA NA
## 7135 NA NA
## 7136 NA NA
## 7137 NA NA
## 7138 NA NA
## 7139 NA NA
## 7140 NA NA
## 7141 NA NA
## 7142 NA NA
## 7143 NA NA
## 7144 NA NA
## 7145 NA NA
## 7146 NA NA
## 7147 NA NA
## 7148 NA NA
## 7149 NA NA
## 7150 NA NA
## 7151 NA NA
## 7152 NA NA
## 7153 NA NA
## 7154 NA NA
## 7155 NA NA
## 7156 NA NA
## 7157 NA NA
## 7158 NA NA
## 7159 NA NA
## 7160 NA NA
## 7161 NA NA
## 7162 NA NA
## 7163 NA NA
## 7164 NA NA
## 7165 22.202 27.277
## 7166 22.202 27.277
## 7167 22.202 27.277
## 7168 22.202 27.277
## 7169 22.202 27.277
## 7170 22.202 27.277
## 7171 NA NA
## 7172 NA NA
## 7173 NA NA
## 7174 NA NA
## 7175 NA NA
## 7176 NA NA
## 7177 24.137 31.782
## 7178 24.137 31.782
## 7179 24.137 31.782
## 7180 24.137 31.782
## 7181 24.137 31.782
## 7182 24.137 31.782
## 7183 6.124 49.601
## 7184 6.124 49.601
## 7185 6.124 49.601
## 7186 6.124 49.601
## 7187 6.124 49.601
## 7188 6.124 49.601
## 7189 NA NA
## 7190 NA NA
## 7191 NA NA
## 7192 NA NA
## 7193 NA NA
## 7194 NA NA
## 7195 NA NA
## 7196 NA NA
## 7197 NA NA
## 7198 NA NA
## 7199 NA NA
## 7200 NA NA
## 7201 18.490 29.355
## 7202 18.490 29.355
## 7203 18.490 29.355
## 7204 18.490 29.355
## 7205 18.490 29.355
## 7206 18.490 29.355
## 7207 NA NA
## 7208 NA NA
## 7209 NA NA
## 7210 NA NA
## 7211 NA NA
## 7212 NA NA
## 7213 7.357 36.300
## 7214 7.357 36.300
## 7215 7.357 36.300
## 7216 7.357 36.300
## 7217 7.357 36.300
## 7218 7.357 36.300
## 7219 NA NA
## 7220 NA NA
## 7221 NA NA
## 7222 NA NA
## 7223 NA NA
## 7224 NA NA
## 7225 NA NA
## 7226 NA NA
## 7227 NA NA
## 7228 NA NA
## 7229 NA NA
## 7230 NA NA
## 7231 NA NA
## 7232 NA NA
## 7233 NA NA
## 7234 NA NA
## 7235 NA NA
## 7236 NA NA
## 7237 52.783 70.990
## 7238 52.783 70.990
## 7239 52.783 70.990
## 7240 52.783 70.990
## 7241 52.783 70.990
## 7242 52.783 70.990
## 7243 NA NA
## 7244 NA NA
## 7245 NA NA
## 7246 NA NA
## 7247 NA NA
## 7248 NA NA
## 7249 NA NA
## 7250 NA NA
## 7251 NA NA
## 7252 NA NA
## 7253 NA NA
## 7254 NA NA
## 7255 NA NA
## 7256 NA NA
## 7257 NA NA
## 7258 NA NA
## 7259 NA NA
## 7260 NA NA
## 7261 11.131 40.350
## 7262 11.131 40.350
## 7263 11.131 40.350
## 7264 11.131 40.350
## 7265 11.131 40.350
## 7266 11.131 40.350
## 7267 NA NA
## 7268 NA NA
## 7269 NA NA
## 7270 NA NA
## 7271 NA NA
## 7272 NA NA
## 7273 NA NA
## 7274 NA NA
## 7275 NA NA
## 7276 NA NA
## 7277 NA NA
## 7278 NA NA
## 7279 NA NA
## 7280 NA NA
## 7281 NA NA
## 7282 NA NA
## 7283 NA NA
## 7284 NA NA
## 7285 NA NA
## 7286 NA NA
## 7287 NA NA
## 7288 NA NA
## 7289 NA NA
## 7290 NA NA
## 7291 NA NA
## 7292 NA NA
## 7293 NA NA
## 7294 NA NA
## 7295 NA NA
## 7296 NA NA
## 7297 NA NA
## 7298 NA NA
## 7299 NA NA
## 7300 NA NA
## 7301 NA NA
## 7302 NA NA
## 7303 NA NA
## 7304 NA NA
## 7305 NA NA
## 7306 NA NA
## 7307 NA NA
## 7308 NA NA
## 7309 NA NA
## 7310 NA NA
## 7311 NA NA
## 7312 NA NA
## 7313 NA NA
## 7314 NA NA
## 7315 NA NA
## 7316 NA NA
## 7317 NA NA
## 7318 NA NA
## 7319 NA NA
## 7320 NA NA
## 7321 NA NA
## 7322 NA NA
## 7323 NA NA
## 7324 NA NA
## 7325 NA NA
## 7326 NA NA
## 7327 NA NA
## 7328 NA NA
## 7329 NA NA
## 7330 NA NA
## 7331 NA NA
## 7332 NA NA
## 7333 NA NA
## 7334 NA NA
## 7335 NA NA
## 7336 NA NA
## 7337 NA NA
## 7338 NA NA
## 7339 NA NA
## 7340 NA NA
## 7341 NA NA
## 7342 NA NA
## 7343 NA NA
## 7344 NA NA
## 7345 NA NA
## 7346 NA NA
## 7347 NA NA
## 7348 NA NA
## 7349 NA NA
## 7350 NA NA
## 7351 NA NA
## 7352 NA NA
## 7353 NA NA
## 7354 NA NA
## 7355 NA NA
## 7356 NA NA
## 7357 12.790 40.876
## 7358 12.790 40.876
## 7359 12.790 40.876
## 7360 12.790 40.876
## 7361 12.790 40.876
## 7362 12.790 40.876
## 7363 266.885 274.995
## 7364 266.885 274.995
## 7365 266.885 274.995
## 7366 266.885 274.995
## 7367 266.885 274.995
## 7368 266.885 274.995
## 7369 NA NA
## 7370 NA NA
## 7371 NA NA
## 7372 NA NA
## 7373 NA NA
## 7374 NA NA
## 7375 NA NA
## 7376 NA NA
## 7377 NA NA
## 7378 NA NA
## 7379 NA NA
## 7380 NA NA
## 7381 NA NA
## 7382 NA NA
## 7383 NA NA
## 7384 NA NA
## 7385 NA NA
## 7386 NA NA
## 7387 NA NA
## 7388 NA NA
## 7389 NA NA
## 7390 NA NA
## 7391 NA NA
## 7392 NA NA
## 7393 NA NA
## 7394 NA NA
## 7395 NA NA
## 7396 NA NA
## 7397 NA NA
## 7398 NA NA
## 7399 21.930 39.749
## 7400 21.930 39.749
## 7401 21.930 39.749
## 7402 21.930 39.749
## 7403 21.930 39.749
## 7404 21.930 39.749
## 7405 3.247 34.446
## 7406 3.247 34.446
## 7407 3.247 34.446
## 7408 3.247 34.446
## 7409 3.247 34.446
## 7410 3.247 34.446
## 7411 NA NA
## 7412 NA NA
## 7413 NA NA
## 7414 NA NA
## 7415 NA NA
## 7416 NA NA
## 7417 NA NA
## 7418 NA NA
## 7419 NA NA
## 7420 NA NA
## 7421 NA NA
## 7422 NA NA
## 7423 NA NA
## 7424 NA NA
## 7425 NA NA
## 7426 NA NA
## 7427 NA NA
## 7428 NA NA
## 7429 NA NA
## 7430 NA NA
## 7431 NA NA
## 7432 NA NA
## 7433 NA NA
## 7434 NA NA
## 7435 NA NA
## 7436 NA NA
## 7437 NA NA
## 7438 NA NA
## 7439 NA NA
## 7440 NA NA
## 7441 NA NA
## 7442 NA NA
## 7443 NA NA
## 7444 NA NA
## 7445 NA NA
## 7446 NA NA
## 7447 NA NA
## 7448 NA NA
## 7449 NA NA
## 7450 NA NA
## 7451 NA NA
## 7452 NA NA
## 7453 36.296 43.154
## 7454 36.296 43.154
## 7455 36.296 43.154
## 7456 36.296 43.154
## 7457 36.296 43.154
## 7458 36.296 43.154
## 7459 30.226 96.592
## 7460 30.226 96.592
## 7461 30.226 96.592
## 7462 30.226 96.592
## 7463 30.226 96.592
## 7464 30.226 96.592
## 7465 0.999 27.896
## 7466 0.999 27.896
## 7467 0.999 27.896
## 7468 0.999 27.896
## 7469 0.999 27.896
## 7470 0.999 27.896
## 7471 NA NA
## 7472 NA NA
## 7473 NA NA
## 7474 NA NA
## 7475 NA NA
## 7476 NA NA
## 7477 NA NA
## 7478 NA NA
## 7479 NA NA
## 7480 NA NA
## 7481 NA NA
## 7482 NA NA
## 7483 NA NA
## 7484 NA NA
## 7485 NA NA
## 7486 NA NA
## 7487 NA NA
## 7488 NA NA
## 7489 9.147 54.043
## 7490 9.147 54.043
## 7491 9.147 54.043
## 7492 9.147 54.043
## 7493 9.147 54.043
## 7494 9.147 54.043
## 7495 NA NA
## 7496 NA NA
## 7497 NA NA
## 7498 NA NA
## 7499 NA NA
## 7500 NA NA
## 7501 83.030 179.968
## 7502 83.030 179.968
## 7503 83.030 179.968
## 7504 83.030 179.968
## 7505 83.030 179.968
## 7506 83.030 179.968
## 7507 NA NA
## 7508 NA NA
## 7509 NA NA
## 7510 NA NA
## 7511 NA NA
## 7512 NA NA
## 7513 NA NA
## 7514 NA NA
## 7515 NA NA
## 7516 NA NA
## 7517 NA NA
## 7518 NA NA
## 7519 NA NA
## 7520 NA NA
## 7521 NA NA
## 7522 NA NA
## 7523 NA NA
## 7524 NA NA
## 7525 NA NA
## 7526 NA NA
## 7527 NA NA
## 7528 NA NA
## 7529 NA NA
## 7530 NA NA
## 7531 297.957 319.289
## 7532 297.957 319.289
## 7533 297.957 319.289
## 7534 297.957 319.289
## 7535 297.957 319.289
## 7536 297.957 319.289
## 7537 NA NA
## 7538 NA NA
## 7539 NA NA
## 7540 NA NA
## 7541 NA NA
## 7542 NA NA
## 7543 175.292 223.289
## 7544 175.292 223.289
## 7545 175.292 223.289
## 7546 175.292 223.289
## 7547 175.292 223.289
## 7548 175.292 223.289
## 7549 15.373 38.176
## 7550 15.373 38.176
## 7551 15.373 38.176
## 7552 15.373 38.176
## 7553 15.373 38.176
## 7554 15.373 38.176
## 7555 NA NA
## 7556 NA NA
## 7557 NA NA
## 7558 NA NA
## 7559 NA NA
## 7560 NA NA
## 7561 NA NA
## 7562 NA NA
## 7563 NA NA
## 7564 NA NA
## 7565 NA NA
## 7566 NA NA
## 7567 NA NA
## 7568 NA NA
## 7569 NA NA
## 7570 NA NA
## 7571 NA NA
## 7572 NA NA
## 7573 NA NA
## 7574 NA NA
## 7575 NA NA
## 7576 NA NA
## 7577 NA NA
## 7578 NA NA
## 7579 23.530 37.657
## 7580 23.530 37.657
## 7581 23.530 37.657
## 7582 23.530 37.657
## 7583 23.530 37.657
## 7584 23.530 37.657
## 7585 NA NA
## 7586 NA NA
## 7587 NA NA
## 7588 NA NA
## 7589 NA NA
## 7590 NA NA
## 7591 NA NA
## 7592 NA NA
## 7593 NA NA
## 7594 NA NA
## 7595 NA NA
## 7596 NA NA
## 7597 1.947 24.916
## 7598 1.947 24.916
## 7599 1.947 24.916
## 7600 1.947 24.916
## 7601 1.947 24.916
## 7602 1.947 24.916
## 7603 NA NA
## 7604 NA NA
## 7605 NA NA
## 7606 NA NA
## 7607 NA NA
## 7608 NA NA
## 7609 NA NA
## 7610 NA NA
## 7611 NA NA
## 7612 NA NA
## 7613 NA NA
## 7614 NA NA
## 7615 NA NA
## 7616 NA NA
## 7617 NA NA
## 7618 NA NA
## 7619 NA NA
## 7620 NA NA
## 7621 NA NA
## 7622 NA NA
## 7623 NA NA
## 7624 NA NA
## 7625 NA NA
## 7626 NA NA
## 7627 NA NA
## 7628 NA NA
## 7629 NA NA
## 7630 NA NA
## 7631 NA NA
## 7632 NA NA
## 7633 NA NA
## 7634 NA NA
## 7635 NA NA
## 7636 NA NA
## 7637 NA NA
## 7638 NA NA
## 7639 NA NA
## 7640 NA NA
## 7641 NA NA
## 7642 NA NA
## 7643 NA NA
## 7644 NA NA
## 7645 NA NA
## 7646 NA NA
## 7647 NA NA
## 7648 NA NA
## 7649 NA NA
## 7650 NA NA
## 7651 NA NA
## 7652 NA NA
## 7653 NA NA
## 7654 NA NA
## 7655 NA NA
## 7656 NA NA
## 7657 NA NA
## 7658 NA NA
## 7659 NA NA
## 7660 NA NA
## 7661 NA NA
## 7662 NA NA
## 7663 NA NA
## 7664 NA NA
## 7665 NA NA
## 7666 NA NA
## 7667 NA NA
## 7668 NA NA
## 7669 38.621 65.512
## 7670 38.621 65.512
## 7671 38.621 65.512
## 7672 38.621 65.512
## 7673 38.621 65.512
## 7674 38.621 65.512
## 7675 NA NA
## 7676 NA NA
## 7677 NA NA
## 7678 NA NA
## 7679 NA NA
## 7680 NA NA
## 7681 NA NA
## 7682 NA NA
## 7683 NA NA
## 7684 NA NA
## 7685 NA NA
## 7686 NA NA
## 7687 NA NA
## 7688 NA NA
## 7689 NA NA
## 7690 NA NA
## 7691 NA NA
## 7692 NA NA
## 7693 NA NA
## 7694 NA NA
## 7695 NA NA
## 7696 NA NA
## 7697 NA NA
## 7698 NA NA
## 7699 19.945 38.029
## 7700 19.945 38.029
## 7701 19.945 38.029
## 7702 19.945 38.029
## 7703 19.945 38.029
## 7704 19.945 38.029
## 7705 NA NA
## 7706 NA NA
## 7707 NA NA
## 7708 NA NA
## 7709 NA NA
## 7710 NA NA
## 7711 NA NA
## 7712 NA NA
## 7713 NA NA
## 7714 NA NA
## 7715 NA NA
## 7716 NA NA
## 7717 NA NA
## 7718 NA NA
## 7719 NA NA
## 7720 NA NA
## 7721 NA NA
## 7722 NA NA
## 7723 NA NA
## 7724 NA NA
## 7725 NA NA
## 7726 NA NA
## 7727 NA NA
## 7728 NA NA
## 7729 NA NA
## 7730 NA NA
## 7731 NA NA
## 7732 NA NA
## 7733 NA NA
## 7734 NA NA
## 7735 NA NA
## 7736 NA NA
## 7737 NA NA
## 7738 NA NA
## 7739 NA NA
## 7740 NA NA
## 7741 NA NA
## 7742 NA NA
## 7743 NA NA
## 7744 NA NA
## 7745 NA NA
## 7746 NA NA
## 7747 NA NA
## 7748 NA NA
## 7749 NA NA
## 7750 NA NA
## 7751 NA NA
## 7752 NA NA
## 7753 NA NA
## 7754 NA NA
## 7755 NA NA
## 7756 NA NA
## 7757 NA NA
## 7758 NA NA
## 7759 NA NA
## 7760 NA NA
## 7761 NA NA
## 7762 NA NA
## 7763 NA NA
## 7764 NA NA
## 7765 NA NA
## 7766 NA NA
## 7767 NA NA
## 7768 NA NA
## 7769 NA NA
## 7770 NA NA
## 7771 NA NA
## 7772 NA NA
## 7773 NA NA
## 7774 NA NA
## 7775 NA NA
## 7776 NA NA
## 7777 NA NA
## 7778 NA NA
## 7779 NA NA
## 7780 NA NA
## 7781 NA NA
## 7782 NA NA
## 7783 NA NA
## 7784 NA NA
## 7785 NA NA
## 7786 NA NA
## 7787 NA NA
## 7788 NA NA
## 7789 NA NA
## 7790 NA NA
## 7791 NA NA
## 7792 NA NA
## 7793 NA NA
## 7794 NA NA
## 7795 NA NA
## 7796 NA NA
## 7797 NA NA
## 7798 NA NA
## 7799 NA NA
## 7800 NA NA
## 7801 12.697 23.585
## 7802 12.697 23.585
## 7803 12.697 23.585
## 7804 12.697 23.585
## 7805 12.697 23.585
## 7806 12.697 23.585
## 7807 7.658 26.821
## 7808 7.658 26.821
## 7809 7.658 26.821
## 7810 7.658 26.821
## 7811 7.658 26.821
## 7812 7.658 26.821
## 7813 NA NA
## 7814 NA NA
## 7815 NA NA
## 7816 NA NA
## 7817 NA NA
## 7818 NA NA
## 7819 NA NA
## 7820 NA NA
## 7821 NA NA
## 7822 NA NA
## 7823 NA NA
## 7824 NA NA
## 7825 NA NA
## 7826 NA NA
## 7827 NA NA
## 7828 NA NA
## 7829 NA NA
## 7830 NA NA
## 7831 NA NA
## 7832 NA NA
## 7833 NA NA
## 7834 NA NA
## 7835 NA NA
## 7836 NA NA
## 7837 19.429 59.839
## 7838 19.429 59.839
## 7839 19.429 59.839
## 7840 19.429 59.839
## 7841 19.429 59.839
## 7842 19.429 59.839
## 7843 NA NA
## 7844 NA NA
## 7845 NA NA
## 7846 NA NA
## 7847 NA NA
## 7848 NA NA
## 7849 NA NA
## 7850 NA NA
## 7851 NA NA
## 7852 NA NA
## 7853 NA NA
## 7854 NA NA
## 7855 NA NA
## 7856 NA NA
## 7857 NA NA
## 7858 NA NA
## 7859 NA NA
## 7860 NA NA
## 7861 2.722 117.667
## 7862 2.722 117.667
## 7863 2.722 117.667
## 7864 2.722 117.667
## 7865 2.722 117.667
## 7866 2.722 117.667
## 7867 17.932 27.921
## 7868 17.932 27.921
## 7869 17.932 27.921
## 7870 17.932 27.921
## 7871 17.932 27.921
## 7872 17.932 27.921
## 7873 24.397 107.601
## 7874 24.397 107.601
## 7875 24.397 107.601
## 7876 24.397 107.601
## 7877 24.397 107.601
## 7878 24.397 107.601
## 7879 NA NA
## 7880 NA NA
## 7881 NA NA
## 7882 NA NA
## 7883 NA NA
## 7884 NA NA
## 7885 NA NA
## 7886 NA NA
## 7887 NA NA
## 7888 NA NA
## 7889 NA NA
## 7890 NA NA
## 7891 NA NA
## 7892 NA NA
## 7893 NA NA
## 7894 NA NA
## 7895 NA NA
## 7896 NA NA
## 7897 NA NA
## 7898 NA NA
## 7899 NA NA
## 7900 NA NA
## 7901 NA NA
## 7902 NA NA
## 7903 NA NA
## 7904 NA NA
## 7905 NA NA
## 7906 NA NA
## 7907 NA NA
## 7908 NA NA
## 7909 NA NA
## 7910 NA NA
## 7911 NA NA
## 7912 NA NA
## 7913 NA NA
## 7914 NA NA
## 7915 15.404 79.492
## 7916 15.404 79.492
## 7917 15.404 79.492
## 7918 15.404 79.492
## 7919 15.404 79.492
## 7920 15.404 79.492
## 7921 NA NA
## 7922 NA NA
## 7923 NA NA
## 7924 NA NA
## 7925 NA NA
## 7926 NA NA
## 7927 NA NA
## 7928 NA NA
## 7929 NA NA
## 7930 NA NA
## 7931 NA NA
## 7932 NA NA
## 7933 NA NA
## 7934 NA NA
## 7935 NA NA
## 7936 NA NA
## 7937 NA NA
## 7938 NA NA
## 7939 NA NA
## 7940 NA NA
## 7941 NA NA
## 7942 NA NA
## 7943 NA NA
## 7944 NA NA
## 7945 5.530 32.298
## 7946 5.530 32.298
## 7947 5.530 32.298
## 7948 5.530 32.298
## 7949 5.530 32.298
## 7950 5.530 32.298
## 7951 NA NA
## 7952 NA NA
## 7953 NA NA
## 7954 NA NA
## 7955 NA NA
## 7956 NA NA
## 7957 NA NA
## 7958 NA NA
## 7959 NA NA
## 7960 NA NA
## 7961 NA NA
## 7962 NA NA
## 7963 NA NA
## 7964 NA NA
## 7965 NA NA
## 7966 NA NA
## 7967 NA NA
## 7968 NA NA
## 7969 NA NA
## 7970 NA NA
## 7971 NA NA
## 7972 NA NA
## 7973 NA NA
## 7974 NA NA
## 7975 NA NA
## 7976 NA NA
## 7977 NA NA
## 7978 NA NA
## 7979 NA NA
## 7980 NA NA
## 7981 17.054 46.323
## 7982 17.054 46.323
## 7983 17.054 46.323
## 7984 17.054 46.323
## 7985 17.054 46.323
## 7986 17.054 46.323
## 7987 NA NA
## 7988 NA NA
## 7989 NA NA
## 7990 NA NA
## 7991 NA NA
## 7992 NA NA
## 7993 NA NA
## 7994 NA NA
## 7995 NA NA
## 7996 NA NA
## 7997 NA NA
## 7998 NA NA
## 7999 NA NA
## 8000 NA NA
## 8001 NA NA
## 8002 NA NA
## 8003 NA NA
## 8004 NA NA
## 8005 NA NA
## 8006 NA NA
## 8007 NA NA
## 8008 NA NA
## 8009 NA NA
## 8010 NA NA
## 8011 NA NA
## 8012 NA NA
## 8013 NA NA
## 8014 NA NA
## 8015 NA NA
## 8016 NA NA
## 8017 NA NA
## 8018 NA NA
## 8019 NA NA
## 8020 NA NA
## 8021 NA NA
## 8022 NA NA
## 8023 NA NA
## 8024 NA NA
## 8025 NA NA
## 8026 NA NA
## 8027 NA NA
## 8028 NA NA
## 8029 NA NA
## 8030 NA NA
## 8031 NA NA
## 8032 NA NA
## 8033 NA NA
## 8034 NA NA
## 8035 7.705 36.245
## 8036 7.705 36.245
## 8037 7.705 36.245
## 8038 7.705 36.245
## 8039 7.705 36.245
## 8040 7.705 36.245
## 8041 17.329 42.596
## 8042 17.329 42.596
## 8043 17.329 42.596
## 8044 17.329 42.596
## 8045 17.329 42.596
## 8046 17.329 42.596
## 8047 31.747 46.744
## 8048 31.747 46.744
## 8049 31.747 46.744
## 8050 31.747 46.744
## 8051 31.747 46.744
## 8052 31.747 46.744
## 8053 15.964 23.211
## 8054 15.964 23.211
## 8055 15.964 23.211
## 8056 15.964 23.211
## 8057 15.964 23.211
## 8058 15.964 23.211
## 8059 NA NA
## 8060 NA NA
## 8061 NA NA
## 8062 NA NA
## 8063 NA NA
## 8064 NA NA
## 8065 NA NA
## 8066 NA NA
## 8067 NA NA
## 8068 NA NA
## 8069 NA NA
## 8070 NA NA
## 8071 8.053 14.740
## 8072 8.053 14.740
## 8073 8.053 14.740
## 8074 8.053 14.740
## 8075 8.053 14.740
## 8076 8.053 14.740
## 8077 NA NA
## 8078 NA NA
## 8079 NA NA
## 8080 NA NA
## 8081 NA NA
## 8082 NA NA
## 8083 NA NA
## 8084 NA NA
## 8085 NA NA
## 8086 NA NA
## 8087 NA NA
## 8088 NA NA
## 8089 NA NA
## 8090 NA NA
## 8091 NA NA
## 8092 NA NA
## 8093 NA NA
## 8094 NA NA
## 8095 NA NA
## 8096 NA NA
## 8097 NA NA
## 8098 NA NA
## 8099 NA NA
## 8100 NA NA
## 8101 2.344 121.982
## 8102 2.344 121.982
## 8103 2.344 121.982
## 8104 2.344 121.982
## 8105 2.344 121.982
## 8106 2.344 121.982
## 8107 NA NA
## 8108 NA NA
## 8109 NA NA
## 8110 NA NA
## 8111 NA NA
## 8112 NA NA
## 8113 NA NA
## 8114 NA NA
## 8115 NA NA
## 8116 NA NA
## 8117 NA NA
## 8118 NA NA
## 8119 NA NA
## 8120 NA NA
## 8121 NA NA
## 8122 NA NA
## 8123 NA NA
## 8124 NA NA
## 8125 1.629 35.409
## 8126 1.629 35.409
## 8127 1.629 35.409
## 8128 1.629 35.409
## 8129 1.629 35.409
## 8130 1.629 35.409
## 8131 NA NA
## 8132 NA NA
## 8133 NA NA
## 8134 NA NA
## 8135 NA NA
## 8136 NA NA
## 8137 NA NA
## 8138 NA NA
## 8139 NA NA
## 8140 NA NA
## 8141 NA NA
## 8142 NA NA
## 8143 NA NA
## 8144 NA NA
## 8145 NA NA
## 8146 NA NA
## 8147 NA NA
## 8148 NA NA
## 8149 14.159 39.870
## 8150 14.159 39.870
## 8151 14.159 39.870
## 8152 14.159 39.870
## 8153 14.159 39.870
## 8154 14.159 39.870
## 8155 NA NA
## 8156 NA NA
## 8157 NA NA
## 8158 NA NA
## 8159 NA NA
## 8160 NA NA
## 8161 21.270 44.835
## 8162 21.270 44.835
## 8163 21.270 44.835
## 8164 21.270 44.835
## 8165 21.270 44.835
## 8166 21.270 44.835
## 8167 26.853 49.887
## 8168 26.853 49.887
## 8169 26.853 49.887
## 8170 26.853 49.887
## 8171 26.853 49.887
## 8172 26.853 49.887
## 8173 NA NA
## 8174 NA NA
## 8175 NA NA
## 8176 NA NA
## 8177 NA NA
## 8178 NA NA
## 8179 NA NA
## 8180 NA NA
## 8181 NA NA
## 8182 NA NA
## 8183 NA NA
## 8184 NA NA
## 8185 26.144 47.211
## 8186 26.144 47.211
## 8187 26.144 47.211
## 8188 26.144 47.211
## 8189 26.144 47.211
## 8190 26.144 47.211
## 8191 6.518 37.851
## 8192 6.518 37.851
## 8193 6.518 37.851
## 8194 6.518 37.851
## 8195 6.518 37.851
## 8196 6.518 37.851
## 8197 1.790 39.665
## 8198 1.790 39.665
## 8199 1.790 39.665
## 8200 1.790 39.665
## 8201 1.790 39.665
## 8202 1.790 39.665
## 8203 NA NA
## 8204 NA NA
## 8205 NA NA
## 8206 NA NA
## 8207 NA NA
## 8208 NA NA
## 8209 8.344 35.731
## 8210 8.344 35.731
## 8211 8.344 35.731
## 8212 8.344 35.731
## 8213 8.344 35.731
## 8214 8.344 35.731
## 8215 NA NA
## 8216 NA NA
## 8217 NA NA
## 8218 NA NA
## 8219 NA NA
## 8220 NA NA
## 8221 10.929 44.366
## 8222 10.929 44.366
## 8223 10.929 44.366
## 8224 10.929 44.366
## 8225 10.929 44.366
## 8226 10.929 44.366
## 8227 NA NA
## 8228 NA NA
## 8229 NA NA
## 8230 NA NA
## 8231 NA NA
## 8232 NA NA
## 8233 NA NA
## 8234 NA NA
## 8235 NA NA
## 8236 NA NA
## 8237 NA NA
## 8238 NA NA
## 8239 NA NA
## 8240 NA NA
## 8241 NA NA
## 8242 NA NA
## 8243 NA NA
## 8244 NA NA
## 8245 NA NA
## 8246 NA NA
## 8247 NA NA
## 8248 NA NA
## 8249 NA NA
## 8250 NA NA
## 8251 NA NA
## 8252 NA NA
## 8253 NA NA
## 8254 NA NA
## 8255 NA NA
## 8256 NA NA
## 8257 6.953 41.160
## 8258 6.953 41.160
## 8259 6.953 41.160
## 8260 6.953 41.160
## 8261 6.953 41.160
## 8262 6.953 41.160
## 8263 NA NA
## 8264 NA NA
## 8265 NA NA
## 8266 NA NA
## 8267 NA NA
## 8268 NA NA
## 8269 NA NA
## 8270 NA NA
## 8271 NA NA
## 8272 NA NA
## 8273 NA NA
## 8274 NA NA
## 8275 NA NA
## 8276 NA NA
## 8277 NA NA
## 8278 NA NA
## 8279 NA NA
## 8280 NA NA
## 8281 NA NA
## 8282 NA NA
## 8283 NA NA
## 8284 NA NA
## 8285 NA NA
## 8286 NA NA
## 8287 NA NA
## 8288 NA NA
## 8289 NA NA
## 8290 NA NA
## 8291 NA NA
## 8292 NA NA
## 8293 NA NA
## 8294 NA NA
## 8295 NA NA
## 8296 NA NA
## 8297 NA NA
## 8298 NA NA
## 8299 NA NA
## 8300 NA NA
## 8301 NA NA
## 8302 NA NA
## 8303 NA NA
## 8304 NA NA
## 8305 NA NA
## 8306 NA NA
## 8307 NA NA
## 8308 NA NA
## 8309 NA NA
## 8310 NA NA
## 8311 NA NA
## 8312 NA NA
## 8313 NA NA
## 8314 NA NA
## 8315 NA NA
## 8316 NA NA
## 8317 6.374 130.174
## 8318 6.374 130.174
## 8319 6.374 130.174
## 8320 6.374 130.174
## 8321 6.374 130.174
## 8322 6.374 130.174
## 8323 23.806 37.726
## 8324 23.806 37.726
## 8325 23.806 37.726
## 8326 23.806 37.726
## 8327 23.806 37.726
## 8328 23.806 37.726
## 8329 NA NA
## 8330 NA NA
## 8331 NA NA
## 8332 NA NA
## 8333 NA NA
## 8334 NA NA
## 8335 31.247 41.164
## 8336 31.247 41.164
## 8337 31.247 41.164
## 8338 31.247 41.164
## 8339 31.247 41.164
## 8340 31.247 41.164
## 8341 NA NA
## 8342 NA NA
## 8343 NA NA
## 8344 NA NA
## 8345 NA NA
## 8346 NA NA
## 8347 NA NA
## 8348 NA NA
## 8349 NA NA
## 8350 NA NA
## 8351 NA NA
## 8352 NA NA
## 8353 31.094 44.812
## 8354 31.094 44.812
## 8355 31.094 44.812
## 8356 31.094 44.812
## 8357 31.094 44.812
## 8358 31.094 44.812
## 8359 1.364 57.858
## 8360 1.364 57.858
## 8361 1.364 57.858
## 8362 1.364 57.858
## 8363 1.364 57.858
## 8364 1.364 57.858
## 8365 NA NA
## 8366 NA NA
## 8367 NA NA
## 8368 NA NA
## 8369 NA NA
## 8370 NA NA
## 8371 32.463 56.262
## 8372 32.463 56.262
## 8373 32.463 56.262
## 8374 32.463 56.262
## 8375 32.463 56.262
## 8376 32.463 56.262
## 8377 NA NA
## 8378 NA NA
## 8379 NA NA
## 8380 NA NA
## 8381 NA NA
## 8382 NA NA
## 8383 NA NA
## 8384 NA NA
## 8385 NA NA
## 8386 NA NA
## 8387 NA NA
## 8388 NA NA
## 8389 NA NA
## 8390 NA NA
## 8391 NA NA
## 8392 NA NA
## 8393 NA NA
## 8394 NA NA
## 8395 NA NA
## 8396 NA NA
## 8397 NA NA
## 8398 NA NA
## 8399 NA NA
## 8400 NA NA
## 8401 NA NA
## 8402 NA NA
## 8403 NA NA
## 8404 NA NA
## 8405 NA NA
## 8406 NA NA
## 8407 NA NA
## 8408 NA NA
## 8409 NA NA
## 8410 NA NA
## 8411 NA NA
## 8412 NA NA
## 8413 NA NA
## 8414 NA NA
## 8415 NA NA
## 8416 NA NA
## 8417 NA NA
## 8418 NA NA
## 8419 3.463 31.421
## 8420 3.463 31.421
## 8421 3.463 31.421
## 8422 3.463 31.421
## 8423 3.463 31.421
## 8424 3.463 31.421
## 8425 NA NA
## 8426 NA NA
## 8427 NA NA
## 8428 NA NA
## 8429 NA NA
## 8430 NA NA
## 8431 NA NA
## 8432 NA NA
## 8433 NA NA
## 8434 NA NA
## 8435 NA NA
## 8436 NA NA
## 8437 14.992 51.428
## 8438 14.992 51.428
## 8439 14.992 51.428
## 8440 14.992 51.428
## 8441 14.992 51.428
## 8442 14.992 51.428
## 8443 NA NA
## 8444 NA NA
## 8445 NA NA
## 8446 NA NA
## 8447 NA NA
## 8448 NA NA
## 8449 NA NA
## 8450 NA NA
## 8451 NA NA
## 8452 NA NA
## 8453 NA NA
## 8454 NA NA
## 8455 18.525 29.548
## 8456 18.525 29.548
## 8457 18.525 29.548
## 8458 18.525 29.548
## 8459 18.525 29.548
## 8460 18.525 29.548
## 8461 NA NA
## 8462 NA NA
## 8463 NA NA
## 8464 NA NA
## 8465 NA NA
## 8466 NA NA
## 8467 NA NA
## 8468 NA NA
## 8469 NA NA
## 8470 NA NA
## 8471 NA NA
## 8472 NA NA
## 8473 NA NA
## 8474 NA NA
## 8475 NA NA
## 8476 NA NA
## 8477 NA NA
## 8478 NA NA
## 8479 NA NA
## 8480 NA NA
## 8481 NA NA
## 8482 NA NA
## 8483 NA NA
## 8484 NA NA
## 8485 NA NA
## 8486 NA NA
## 8487 NA NA
## 8488 NA NA
## 8489 NA NA
## 8490 NA NA
## 8491 NA NA
## 8492 NA NA
## 8493 NA NA
## 8494 NA NA
## 8495 NA NA
## 8496 NA NA
## 8497 NA NA
## 8498 NA NA
## 8499 NA NA
## 8500 NA NA
## 8501 NA NA
## 8502 NA NA
## 8503 NA NA
## 8504 NA NA
## 8505 NA NA
## 8506 NA NA
## 8507 NA NA
## 8508 NA NA
## 8509 NA NA
## 8510 NA NA
## 8511 NA NA
## 8512 NA NA
## 8513 NA NA
## 8514 NA NA
## 8515 NA NA
## 8516 NA NA
## 8517 NA NA
## 8518 NA NA
## 8519 NA NA
## 8520 NA NA
## 8521 NA NA
## 8522 NA NA
## 8523 NA NA
## 8524 NA NA
## 8525 NA NA
## 8526 NA NA
## 8527 26.115 49.772
## 8528 26.115 49.772
## 8529 26.115 49.772
## 8530 26.115 49.772
## 8531 26.115 49.772
## 8532 26.115 49.772
## 8533 NA NA
## 8534 NA NA
## 8535 NA NA
## 8536 NA NA
## 8537 NA NA
## 8538 NA NA
## 8539 NA NA
## 8540 NA NA
## 8541 NA NA
## 8542 NA NA
## 8543 NA NA
## 8544 NA NA
## 8545 NA NA
## 8546 NA NA
## 8547 NA NA
## 8548 NA NA
## 8549 NA NA
## 8550 NA NA
## 8551 NA NA
## 8552 NA NA
## 8553 NA NA
## 8554 NA NA
## 8555 NA NA
## 8556 NA NA
## 8557 NA NA
## 8558 NA NA
## 8559 NA NA
## 8560 NA NA
## 8561 NA NA
## 8562 NA NA
## 8563 NA NA
## 8564 NA NA
## 8565 NA NA
## 8566 NA NA
## 8567 NA NA
## 8568 NA NA
## 8569 NA NA
## 8570 NA NA
## 8571 NA NA
## 8572 NA NA
## 8573 NA NA
## 8574 NA NA
## 8575 NA NA
## 8576 NA NA
## 8577 NA NA
## 8578 NA NA
## 8579 NA NA
## 8580 NA NA
## 8581 NA NA
## 8582 NA NA
## 8583 NA NA
## 8584 NA NA
## 8585 NA NA
## 8586 NA NA
## 8587 NA NA
## 8588 NA NA
## 8589 NA NA
## 8590 NA NA
## 8591 NA NA
## 8592 NA NA
## 8593 NA NA
## 8594 NA NA
## 8595 NA NA
## 8596 NA NA
## 8597 NA NA
## 8598 NA NA
## 8599 NA NA
## 8600 NA NA
## 8601 NA NA
## 8602 NA NA
## 8603 NA NA
## 8604 NA NA
## 8605 NA NA
## 8606 NA NA
## 8607 NA NA
## 8608 NA NA
## 8609 NA NA
## 8610 NA NA
## 8611 NA NA
## 8612 NA NA
## 8613 NA NA
## 8614 NA NA
## 8615 NA NA
## 8616 NA NA
## 8617 NA NA
## 8618 NA NA
## 8619 NA NA
## 8620 NA NA
## 8621 NA NA
## 8622 NA NA
## 8623 NA NA
## 8624 NA NA
## 8625 NA NA
## 8626 NA NA
## 8627 NA NA
## 8628 NA NA
## 8629 NA NA
## 8630 NA NA
## 8631 NA NA
## 8632 NA NA
## 8633 NA NA
## 8634 NA NA
## 8635 NA NA
## 8636 NA NA
## 8637 NA NA
## 8638 NA NA
## 8639 NA NA
## 8640 NA NA
## 8641 NA NA
## 8642 NA NA
## 8643 NA NA
## 8644 NA NA
## 8645 NA NA
## 8646 NA NA
## 8647 NA NA
## 8648 NA NA
## 8649 NA NA
## 8650 NA NA
## 8651 NA NA
## 8652 NA NA
## 8653 NA NA
## 8654 NA NA
## 8655 NA NA
## 8656 NA NA
## 8657 NA NA
## 8658 NA NA
## 8659 NA NA
## 8660 NA NA
## 8661 NA NA
## 8662 NA NA
## 8663 NA NA
## 8664 NA NA
## 8665 NA NA
## 8666 NA NA
## 8667 NA NA
## 8668 NA NA
## 8669 NA NA
## 8670 NA NA
## 8671 NA NA
## 8672 NA NA
## 8673 NA NA
## 8674 NA NA
## 8675 NA NA
## 8676 NA NA
## 8677 NA NA
## 8678 NA NA
## 8679 NA NA
## 8680 NA NA
## 8681 NA NA
## 8682 NA NA
## 8683 NA NA
## 8684 NA NA
## 8685 NA NA
## 8686 NA NA
## 8687 NA NA
## 8688 NA NA
## 8689 46.500 66.288
## 8690 46.500 66.288
## 8691 46.500 66.288
## 8692 46.500 66.288
## 8693 46.500 66.288
## 8694 46.500 66.288
## 8695 NA NA
## 8696 NA NA
## 8697 NA NA
## 8698 NA NA
## 8699 NA NA
## 8700 NA NA
## 8701 NA NA
## 8702 NA NA
## 8703 NA NA
## 8704 NA NA
## 8705 NA NA
## 8706 NA NA
## 8707 NA NA
## 8708 NA NA
## 8709 NA NA
## 8710 NA NA
## 8711 NA NA
## 8712 NA NA
## 8713 NA NA
## 8714 NA NA
## 8715 NA NA
## 8716 NA NA
## 8717 NA NA
## 8718 NA NA
## 8719 NA NA
## 8720 NA NA
## 8721 NA NA
## 8722 NA NA
## 8723 NA NA
## 8724 NA NA
## 8725 NA NA
## 8726 NA NA
## 8727 NA NA
## 8728 NA NA
## 8729 NA NA
## 8730 NA NA
## 8731 3.983 79.673
## 8732 3.983 79.673
## 8733 3.983 79.673
## 8734 3.983 79.673
## 8735 3.983 79.673
## 8736 3.983 79.673
## 8737 NA NA
## 8738 NA NA
## 8739 NA NA
## 8740 NA NA
## 8741 NA NA
## 8742 NA NA
## 8743 NA NA
## 8744 NA NA
## 8745 NA NA
## 8746 NA NA
## 8747 NA NA
## 8748 NA NA
## 8749 NA NA
## 8750 NA NA
## 8751 NA NA
## 8752 NA NA
## 8753 NA NA
## 8754 NA NA
## 8755 NA NA
## 8756 NA NA
## 8757 NA NA
## 8758 NA NA
## 8759 NA NA
## 8760 NA NA
## 8761 NA NA
## 8762 NA NA
## 8763 NA NA
## 8764 NA NA
## 8765 NA NA
## 8766 NA NA
## 8767 NA NA
## 8768 NA NA
## 8769 NA NA
## 8770 NA NA
## 8771 NA NA
## 8772 NA NA
## 8773 NA NA
## 8774 NA NA
## 8775 NA NA
## 8776 NA NA
## 8777 NA NA
## 8778 NA NA
## 8779 NA NA
## 8780 NA NA
## 8781 NA NA
## 8782 NA NA
## 8783 NA NA
## 8784 NA NA
## 8785 NA NA
## 8786 NA NA
## 8787 NA NA
## 8788 NA NA
## 8789 NA NA
## 8790 NA NA
## 8791 NA NA
## 8792 NA NA
## 8793 NA NA
## 8794 NA NA
## 8795 NA NA
## 8796 NA NA
## 8797 NA NA
## 8798 NA NA
## 8799 NA NA
## 8800 NA NA
## 8801 NA NA
## 8802 NA NA
## 8803 NA NA
## 8804 NA NA
## 8805 NA NA
## 8806 NA NA
## 8807 NA NA
## 8808 NA NA
## 8809 NA NA
## 8810 NA NA
## 8811 NA NA
## 8812 NA NA
## 8813 NA NA
## 8814 NA NA
## 8815 NA NA
## 8816 NA NA
## 8817 NA NA
## 8818 NA NA
## 8819 NA NA
## 8820 NA NA
## 8821 NA NA
## 8822 NA NA
## 8823 NA NA
## 8824 NA NA
## 8825 NA NA
## 8826 NA NA
## 8827 NA NA
## 8828 NA NA
## 8829 NA NA
## 8830 NA NA
## 8831 NA NA
## 8832 NA NA
## 8833 36.585 74.619
## 8834 36.585 74.619
## 8835 36.585 74.619
## 8836 36.585 74.619
## 8837 36.585 74.619
## 8838 36.585 74.619
## 8839 NA NA
## 8840 NA NA
## 8841 NA NA
## 8842 NA NA
## 8843 NA NA
## 8844 NA NA
## 8845 65.688 88.684
## 8846 65.688 88.684
## 8847 65.688 88.684
## 8848 65.688 88.684
## 8849 65.688 88.684
## 8850 65.688 88.684
## 8851 3.239 78.138
## 8852 3.239 78.138
## 8853 3.239 78.138
## 8854 3.239 78.138
## 8855 3.239 78.138
## 8856 3.239 78.138
## 8857 NA NA
## 8858 NA NA
## 8859 NA NA
## 8860 NA NA
## 8861 NA NA
## 8862 NA NA
## 8863 16.299 66.988
## 8864 16.299 66.988
## 8865 16.299 66.988
## 8866 16.299 66.988
## 8867 16.299 66.988
## 8868 16.299 66.988
## 8869 NA NA
## 8870 NA NA
## 8871 NA NA
## 8872 NA NA
## 8873 NA NA
## 8874 NA NA
## 8875 NA NA
## 8876 NA NA
## 8877 NA NA
## 8878 NA NA
## 8879 NA NA
## 8880 NA NA
## 8881 NA NA
## 8882 NA NA
## 8883 NA NA
## 8884 NA NA
## 8885 NA NA
## 8886 NA NA
## 8887 NA NA
## 8888 NA NA
## 8889 NA NA
## 8890 NA NA
## 8891 NA NA
## 8892 NA NA
## 8893 NA NA
## 8894 NA NA
## 8895 NA NA
## 8896 NA NA
## 8897 NA NA
## 8898 NA NA
## 8899 NA NA
## 8900 NA NA
## 8901 NA NA
## 8902 NA NA
## 8903 NA NA
## 8904 NA NA
## 8905 NA NA
## 8906 NA NA
## 8907 NA NA
## 8908 NA NA
## 8909 NA NA
## 8910 NA NA
## 8911 NA NA
## 8912 NA NA
## 8913 NA NA
## 8914 NA NA
## 8915 NA NA
## 8916 NA NA
## 8917 NA NA
## 8918 NA NA
## 8919 NA NA
## 8920 NA NA
## 8921 NA NA
## 8922 NA NA
## 8923 31.636 64.980
## 8924 31.636 64.980
## 8925 31.636 64.980
## 8926 31.636 64.980
## 8927 31.636 64.980
## 8928 31.636 64.980
## 8929 14.125 33.093
## 8930 14.125 33.093
## 8931 14.125 33.093
## 8932 14.125 33.093
## 8933 14.125 33.093
## 8934 14.125 33.093
## 8935 1.842 65.940
## 8936 1.842 65.940
## 8937 1.842 65.940
## 8938 1.842 65.940
## 8939 1.842 65.940
## 8940 1.842 65.940
## 8941 29.309 56.490
## 8942 29.309 56.490
## 8943 29.309 56.490
## 8944 29.309 56.490
## 8945 29.309 56.490
## 8946 29.309 56.490
## 8947 9.432 15.155
## 8948 9.432 15.155
## 8949 9.432 15.155
## 8950 9.432 15.155
## 8951 9.432 15.155
## 8952 9.432 15.155
## 8953 NA NA
## 8954 NA NA
## 8955 NA NA
## 8956 NA NA
## 8957 NA NA
## 8958 NA NA
## 8959 NA NA
## 8960 NA NA
## 8961 NA NA
## 8962 NA NA
## 8963 NA NA
## 8964 NA NA
## 8965 NA NA
## 8966 NA NA
## 8967 NA NA
## 8968 NA NA
## 8969 NA NA
## 8970 NA NA
## 8971 NA NA
## 8972 NA NA
## 8973 NA NA
## 8974 NA NA
## 8975 NA NA
## 8976 NA NA
## 8977 NA NA
## 8978 NA NA
## 8979 NA NA
## 8980 NA NA
## 8981 NA NA
## 8982 NA NA
## 8983 NA NA
## 8984 NA NA
## 8985 NA NA
## 8986 NA NA
## 8987 NA NA
## 8988 NA NA
## 8989 19.363 36.760
## 8990 19.363 36.760
## 8991 19.363 36.760
## 8992 19.363 36.760
## 8993 19.363 36.760
## 8994 19.363 36.760
## 8995 9.770 63.443
## 8996 9.770 63.443
## 8997 9.770 63.443
## 8998 9.770 63.443
## 8999 9.770 63.443
## 9000 9.770 63.443
## 9001 35.558 57.411
## 9002 35.558 57.411
## 9003 35.558 57.411
## 9004 35.558 57.411
## 9005 35.558 57.411
## 9006 35.558 57.411
## 9007 1.372 27.372
## 9008 1.372 27.372
## 9009 1.372 27.372
## 9010 1.372 27.372
## 9011 1.372 27.372
## 9012 1.372 27.372
## 9013 NA NA
## 9014 NA NA
## 9015 NA NA
## 9016 NA NA
## 9017 NA NA
## 9018 NA NA
## 9019 NA NA
## 9020 NA NA
## 9021 NA NA
## 9022 NA NA
## 9023 NA NA
## 9024 NA NA
## 9025 NA NA
## 9026 NA NA
## 9027 NA NA
## 9028 NA NA
## 9029 NA NA
## 9030 NA NA
## 9031 NA NA
## 9032 NA NA
## 9033 NA NA
## 9034 NA NA
## 9035 NA NA
## 9036 NA NA
## 9037 NA NA
## 9038 NA NA
## 9039 NA NA
## 9040 NA NA
## 9041 NA NA
## 9042 NA NA
## 9043 NA NA
## 9044 NA NA
## 9045 NA NA
## 9046 NA NA
## 9047 NA NA
## 9048 NA NA
## 9049 NA NA
## 9050 NA NA
## 9051 NA NA
## 9052 NA NA
## 9053 NA NA
## 9054 NA NA
## 9055 NA NA
## 9056 NA NA
## 9057 NA NA
## 9058 NA NA
## 9059 NA NA
## 9060 NA NA
## 9061 NA NA
## 9062 NA NA
## 9063 NA NA
## 9064 NA NA
## 9065 NA NA
## 9066 NA NA
## 9067 NA NA
## 9068 NA NA
## 9069 NA NA
## 9070 NA NA
## 9071 NA NA
## 9072 NA NA
## 9073 NA NA
## 9074 NA NA
## 9075 NA NA
## 9076 NA NA
## 9077 NA NA
## 9078 NA NA
## 9079 NA NA
## 9080 NA NA
## 9081 NA NA
## 9082 NA NA
## 9083 NA NA
## 9084 NA NA
## 9085 67.125 81.106
## 9086 67.125 81.106
## 9087 67.125 81.106
## 9088 67.125 81.106
## 9089 67.125 81.106
## 9090 67.125 81.106
## 9091 4.227 90.032
## 9092 4.227 90.032
## 9093 4.227 90.032
## 9094 4.227 90.032
## 9095 4.227 90.032
## 9096 4.227 90.032
## 9097 NA NA
## 9098 NA NA
## 9099 NA NA
## 9100 NA NA
## 9101 NA NA
## 9102 NA NA
## 9103 NA NA
## 9104 NA NA
## 9105 NA NA
## 9106 NA NA
## 9107 NA NA
## 9108 NA NA
## 9109 NA NA
## 9110 NA NA
## 9111 NA NA
## 9112 NA NA
## 9113 NA NA
## 9114 NA NA
## 9115 NA NA
## 9116 NA NA
## 9117 NA NA
## 9118 NA NA
## 9119 NA NA
## 9120 NA NA
## 9121 NA NA
## 9122 NA NA
## 9123 NA NA
## 9124 NA NA
## 9125 NA NA
## 9126 NA NA
## 9127 NA NA
## 9128 NA NA
## 9129 NA NA
## 9130 NA NA
## 9131 NA NA
## 9132 NA NA
## 9133 NA NA
## 9134 NA NA
## 9135 NA NA
## 9136 NA NA
## 9137 NA NA
## 9138 NA NA
## 9139 NA NA
## 9140 NA NA
## 9141 NA NA
## 9142 NA NA
## 9143 NA NA
## 9144 NA NA
## 9145 11.694 17.604
## 9146 11.694 17.604
## 9147 11.694 17.604
## 9148 11.694 17.604
## 9149 11.694 17.604
## 9150 11.694 17.604
## 9151 NA NA
## 9152 NA NA
## 9153 NA NA
## 9154 NA NA
## 9155 NA NA
## 9156 NA NA
## 9157 NA NA
## 9158 NA NA
## 9159 NA NA
## 9160 NA NA
## 9161 NA NA
## 9162 NA NA
## 9163 68.491 87.323
## 9164 68.491 87.323
## 9165 68.491 87.323
## 9166 68.491 87.323
## 9167 68.491 87.323
## 9168 68.491 87.323
## 9169 21.781 120.370
## 9170 21.781 120.370
## 9171 21.781 120.370
## 9172 21.781 120.370
## 9173 21.781 120.370
## 9174 21.781 120.370
## 9175 NA NA
## 9176 NA NA
## 9177 NA NA
## 9178 NA NA
## 9179 NA NA
## 9180 NA NA
## 9181 NA NA
## 9182 NA NA
## 9183 NA NA
## 9184 NA NA
## 9185 NA NA
## 9186 NA NA
## 9187 NA NA
## 9188 NA NA
## 9189 NA NA
## 9190 NA NA
## 9191 NA NA
## 9192 NA NA
## 9193 NA NA
## 9194 NA NA
## 9195 NA NA
## 9196 NA NA
## 9197 NA NA
## 9198 NA NA
## 9199 35.896 88.261
## 9200 35.896 88.261
## 9201 35.896 88.261
## 9202 35.896 88.261
## 9203 35.896 88.261
## 9204 35.896 88.261
## 9205 NA NA
## 9206 NA NA
## 9207 NA NA
## 9208 NA NA
## 9209 NA NA
## 9210 NA NA
## 9211 NA NA
## 9212 NA NA
## 9213 NA NA
## 9214 NA NA
## 9215 NA NA
## 9216 NA NA
## 9217 NA NA
## 9218 NA NA
## 9219 NA NA
## 9220 NA NA
## 9221 NA NA
## 9222 NA NA
## 9223 NA NA
## 9224 NA NA
## 9225 NA NA
## 9226 NA NA
## 9227 NA NA
## 9228 NA NA
## 9229 NA NA
## 9230 NA NA
## 9231 NA NA
## 9232 NA NA
## 9233 NA NA
## 9234 NA NA
## 9235 NA NA
## 9236 NA NA
## 9237 NA NA
## 9238 NA NA
## 9239 NA NA
## 9240 NA NA
## 9241 69.370 88.610
## 9242 69.370 88.610
## 9243 69.370 88.610
## 9244 69.370 88.610
## 9245 69.370 88.610
## 9246 69.370 88.610
## 9247 14.122 51.805
## 9248 14.122 51.805
## 9249 14.122 51.805
## 9250 14.122 51.805
## 9251 14.122 51.805
## 9252 14.122 51.805
## 9253 NA NA
## 9254 NA NA
## 9255 NA NA
## 9256 NA NA
## 9257 NA NA
## 9258 NA NA
## 9259 NA NA
## 9260 NA NA
## 9261 NA NA
## 9262 NA NA
## 9263 NA NA
## 9264 NA NA
## 9265 NA NA
## 9266 NA NA
## 9267 NA NA
## 9268 NA NA
## 9269 NA NA
## 9270 NA NA
## 9271 44.610 96.893
## 9272 44.610 96.893
## 9273 44.610 96.893
## 9274 44.610 96.893
## 9275 44.610 96.893
## 9276 44.610 96.893
## 9277 NA NA
## 9278 NA NA
## 9279 NA NA
## 9280 NA NA
## 9281 NA NA
## 9282 NA NA
## 9283 NA NA
## 9284 NA NA
## 9285 NA NA
## 9286 NA NA
## 9287 NA NA
## 9288 NA NA
## 9289 10.294 36.540
## 9290 10.294 36.540
## 9291 10.294 36.540
## 9292 10.294 36.540
## 9293 10.294 36.540
## 9294 10.294 36.540
## 9295 9.936 158.686
## 9296 9.936 158.686
## 9297 9.936 158.686
## 9298 9.936 158.686
## 9299 9.936 158.686
## 9300 9.936 158.686
## 9301 NA NA
## 9302 NA NA
## 9303 NA NA
## 9304 NA NA
## 9305 NA NA
## 9306 NA NA
## 9307 29.392 108.429
## 9308 29.392 108.429
## 9309 29.392 108.429
## 9310 29.392 108.429
## 9311 29.392 108.429
## 9312 29.392 108.429
## 9313 NA NA
## 9314 NA NA
## 9315 NA NA
## 9316 NA NA
## 9317 NA NA
## 9318 NA NA
## 9319 NA NA
## 9320 NA NA
## 9321 NA NA
## 9322 NA NA
## 9323 NA NA
## 9324 NA NA
## 9325 NA NA
## 9326 NA NA
## 9327 NA NA
## 9328 NA NA
## 9329 NA NA
## 9330 NA NA
## 9331 NA NA
## 9332 NA NA
## 9333 NA NA
## 9334 NA NA
## 9335 NA NA
## 9336 NA NA
## 9337 NA NA
## 9338 NA NA
## 9339 NA NA
## 9340 NA NA
## 9341 NA NA
## 9342 NA NA
## 9343 NA NA
## 9344 NA NA
## 9345 NA NA
## 9346 NA NA
## 9347 NA NA
## 9348 NA NA
## 9349 NA NA
## 9350 NA NA
## 9351 NA NA
## 9352 NA NA
## 9353 NA NA
## 9354 NA NA
## 9355 NA NA
## 9356 NA NA
## 9357 NA NA
## 9358 NA NA
## 9359 NA NA
## 9360 NA NA
## 9361 14.248 31.895
## 9362 14.248 31.895
## 9363 14.248 31.895
## 9364 14.248 31.895
## 9365 14.248 31.895
## 9366 14.248 31.895
## 9367 8.383 21.434
## 9368 8.383 21.434
## 9369 8.383 21.434
## 9370 8.383 21.434
## 9371 8.383 21.434
## 9372 8.383 21.434
## 9373 NA NA
## 9374 NA NA
## 9375 NA NA
## 9376 NA NA
## 9377 NA NA
## 9378 NA NA
## 9379 NA NA
## 9380 NA NA
## 9381 NA NA
## 9382 NA NA
## 9383 NA NA
## 9384 NA NA
## 9385 NA NA
## 9386 NA NA
## 9387 NA NA
## 9388 NA NA
## 9389 NA NA
## 9390 NA NA
## 9391 17.521 25.775
## 9392 17.521 25.775
## 9393 17.521 25.775
## 9394 17.521 25.775
## 9395 17.521 25.775
## 9396 17.521 25.775
## 9397 104.947 116.741
## 9398 104.947 116.741
## 9399 104.947 116.741
## 9400 104.947 116.741
## 9401 104.947 116.741
## 9402 104.947 116.741
## 9403 NA NA
## 9404 NA NA
## 9405 NA NA
## 9406 NA NA
## 9407 NA NA
## 9408 NA NA
## 9409 NA NA
## 9410 NA NA
## 9411 NA NA
## 9412 NA NA
## 9413 NA NA
## 9414 NA NA
## 9415 NA NA
## 9416 NA NA
## 9417 NA NA
## 9418 NA NA
## 9419 NA NA
## 9420 NA NA
## 9421 NA NA
## 9422 NA NA
## 9423 NA NA
## 9424 NA NA
## 9425 NA NA
## 9426 NA NA
## 9427 16.101 32.370
## 9428 16.101 32.370
## 9429 16.101 32.370
## 9430 16.101 32.370
## 9431 16.101 32.370
## 9432 16.101 32.370
## 9433 NA NA
## 9434 NA NA
## 9435 NA NA
## 9436 NA NA
## 9437 NA NA
## 9438 NA NA
## 9439 NA NA
## 9440 NA NA
## 9441 NA NA
## 9442 NA NA
## 9443 NA NA
## 9444 NA NA
## 9445 NA NA
## 9446 NA NA
## 9447 NA NA
## 9448 NA NA
## 9449 NA NA
## 9450 NA NA
## 9451 NA NA
## 9452 NA NA
## 9453 NA NA
## 9454 NA NA
## 9455 NA NA
## 9456 NA NA
## 9457 23.174 27.021
## 9458 23.174 27.021
## 9459 23.174 27.021
## 9460 23.174 27.021
## 9461 23.174 27.021
## 9462 23.174 27.021
## 9463 NA NA
## 9464 NA NA
## 9465 NA NA
## 9466 NA NA
## 9467 NA NA
## 9468 NA NA
## 9469 NA NA
## 9470 NA NA
## 9471 NA NA
## 9472 NA NA
## 9473 NA NA
## 9474 NA NA
## 9475 NA NA
## 9476 NA NA
## 9477 NA NA
## 9478 NA NA
## 9479 NA NA
## 9480 NA NA
## 9481 NA NA
## 9482 NA NA
## 9483 NA NA
## 9484 NA NA
## 9485 NA NA
## 9486 NA NA
## 9487 NA NA
## 9488 NA NA
## 9489 NA NA
## 9490 NA NA
## 9491 NA NA
## 9492 NA NA
## 9493 49.571 109.437
## 9494 49.571 109.437
## 9495 49.571 109.437
## 9496 49.571 109.437
## 9497 49.571 109.437
## 9498 49.571 109.437
## 9499 NA NA
## 9500 NA NA
## 9501 NA NA
## 9502 NA NA
## 9503 NA NA
## 9504 NA NA
## 9505 40.000 83.291
## 9506 40.000 83.291
## 9507 40.000 83.291
## 9508 40.000 83.291
## 9509 40.000 83.291
## 9510 40.000 83.291
## 9511 NA NA
## 9512 NA NA
## 9513 NA NA
## 9514 NA NA
## 9515 NA NA
## 9516 NA NA
## 9517 NA NA
## 9518 NA NA
## 9519 NA NA
## 9520 NA NA
## 9521 NA NA
## 9522 NA NA
## 9523 NA NA
## 9524 NA NA
## 9525 NA NA
## 9526 NA NA
## 9527 NA NA
## 9528 NA NA
## 9529 NA NA
## 9530 NA NA
## 9531 NA NA
## 9532 NA NA
## 9533 NA NA
## 9534 NA NA
## 9535 NA NA
## 9536 NA NA
## 9537 NA NA
## 9538 NA NA
## 9539 NA NA
## 9540 NA NA
## 9541 15.578 36.601
## 9542 15.578 36.601
## 9543 15.578 36.601
## 9544 15.578 36.601
## 9545 15.578 36.601
## 9546 15.578 36.601
## 9547 NA NA
## 9548 NA NA
## 9549 NA NA
## 9550 NA NA
## 9551 NA NA
## 9552 NA NA
## 9553 9.224 22.856
## 9554 9.224 22.856
## 9555 9.224 22.856
## 9556 9.224 22.856
## 9557 9.224 22.856
## 9558 9.224 22.856
## 9559 NA NA
## 9560 NA NA
## 9561 NA NA
## 9562 NA NA
## 9563 NA NA
## 9564 NA NA
## 9565 NA NA
## 9566 NA NA
## 9567 NA NA
## 9568 NA NA
## 9569 NA NA
## 9570 NA NA
## 9571 NA NA
## 9572 NA NA
## 9573 NA NA
## 9574 NA NA
## 9575 NA NA
## 9576 NA NA
## 9577 21.471 33.053
## 9578 21.471 33.053
## 9579 21.471 33.053
## 9580 21.471 33.053
## 9581 21.471 33.053
## 9582 21.471 33.053
## 9583 NA NA
## 9584 NA NA
## 9585 NA NA
## 9586 NA NA
## 9587 NA NA
## 9588 NA NA
## 9589 1.186 59.541
## 9590 1.186 59.541
## 9591 1.186 59.541
## 9592 1.186 59.541
## 9593 1.186 59.541
## 9594 1.186 59.541
## 9595 13.752 36.948
## 9596 13.752 36.948
## 9597 13.752 36.948
## 9598 13.752 36.948
## 9599 13.752 36.948
## 9600 13.752 36.948
## 9601 NA NA
## 9602 NA NA
## 9603 NA NA
## 9604 NA NA
## 9605 NA NA
## 9606 NA NA
## 9607 NA NA
## 9608 NA NA
## 9609 NA NA
## 9610 NA NA
## 9611 NA NA
## 9612 NA NA
## 9613 13.535 33.126
## 9614 13.535 33.126
## 9615 13.535 33.126
## 9616 13.535 33.126
## 9617 13.535 33.126
## 9618 13.535 33.126
## 9619 NA NA
## 9620 NA NA
## 9621 NA NA
## 9622 NA NA
## 9623 NA NA
## 9624 NA NA
## 9625 NA NA
## 9626 NA NA
## 9627 NA NA
## 9628 NA NA
## 9629 NA NA
## 9630 NA NA
## 9631 NA NA
## 9632 NA NA
## 9633 NA NA
## 9634 NA NA
## 9635 NA NA
## 9636 NA NA
## 9637 NA NA
## 9638 NA NA
## 9639 NA NA
## 9640 NA NA
## 9641 NA NA
## 9642 NA NA
## 9643 1349.256 1354.321
## 9644 1349.256 1354.321
## 9645 1349.256 1354.321
## 9646 1349.256 1354.321
## 9647 1349.256 1354.321
## 9648 1349.256 1354.321
## 9649 10.328 18.950
## 9650 10.328 18.950
## 9651 10.328 18.950
## 9652 10.328 18.950
## 9653 10.328 18.950
## 9654 10.328 18.950
## 9655 NA NA
## 9656 NA NA
## 9657 NA NA
## 9658 NA NA
## 9659 NA NA
## 9660 NA NA
## 9661 NA NA
## 9662 NA NA
## 9663 NA NA
## 9664 NA NA
## 9665 NA NA
## 9666 NA NA
## 9667 9.706 32.702
## 9668 9.706 32.702
## 9669 9.706 32.702
## 9670 9.706 32.702
## 9671 9.706 32.702
## 9672 9.706 32.702
## 9673 10.497 32.149
## 9674 10.497 32.149
## 9675 10.497 32.149
## 9676 10.497 32.149
## 9677 10.497 32.149
## 9678 10.497 32.149
## 9679 NA NA
## 9680 NA NA
## 9681 NA NA
## 9682 NA NA
## 9683 NA NA
## 9684 NA NA
## 9685 15.149 27.059
## 9686 15.149 27.059
## 9687 15.149 27.059
## 9688 15.149 27.059
## 9689 15.149 27.059
## 9690 15.149 27.059
## 9691 NA NA
## 9692 NA NA
## 9693 NA NA
## 9694 NA NA
## 9695 NA NA
## 9696 NA NA
## 9697 14.301 19.297
## 9698 14.301 19.297
## 9699 14.301 19.297
## 9700 14.301 19.297
## 9701 14.301 19.297
## 9702 14.301 19.297
## 9703 2.538 78.538
## 9704 2.538 78.538
## 9705 2.538 78.538
## 9706 2.538 78.538
## 9707 2.538 78.538
## 9708 2.538 78.538
## 9709 NA NA
## 9710 NA NA
## 9711 NA NA
## 9712 NA NA
## 9713 NA NA
## 9714 NA NA
## 9715 NA NA
## 9716 NA NA
## 9717 NA NA
## 9718 NA NA
## 9719 NA NA
## 9720 NA NA
## 9721 NA NA
## 9722 NA NA
## 9723 NA NA
## 9724 NA NA
## 9725 NA NA
## 9726 NA NA
## 9727 10.549 34.404
## 9728 10.549 34.404
## 9729 10.549 34.404
## 9730 10.549 34.404
## 9731 10.549 34.404
## 9732 10.549 34.404
## 9733 NA NA
## 9734 NA NA
## 9735 NA NA
## 9736 NA NA
## 9737 NA NA
## 9738 NA NA
## 9739 NA NA
## 9740 NA NA
## 9741 NA NA
## 9742 NA NA
## 9743 NA NA
## 9744 NA NA
## 9745 0.944 15.647
## 9746 0.944 15.647
## 9747 0.944 15.647
## 9748 0.944 15.647
## 9749 0.944 15.647
## 9750 0.944 15.647
## 9751 NA NA
## 9752 NA NA
## 9753 NA NA
## 9754 NA NA
## 9755 NA NA
## 9756 NA NA
## 9757 NA NA
## 9758 NA NA
## 9759 NA NA
## 9760 NA NA
## 9761 NA NA
## 9762 NA NA
## 9763 16.091 33.320
## 9764 16.091 33.320
## 9765 16.091 33.320
## 9766 16.091 33.320
## 9767 16.091 33.320
## 9768 16.091 33.320
## 9769 NA NA
## 9770 NA NA
## 9771 NA NA
## 9772 NA NA
## 9773 NA NA
## 9774 NA NA
## 9775 NA NA
## 9776 NA NA
## 9777 NA NA
## 9778 NA NA
## 9779 NA NA
## 9780 NA NA
## 9781 NA NA
## 9782 NA NA
## 9783 NA NA
## 9784 NA NA
## 9785 NA NA
## 9786 NA NA
## 9787 NA NA
## 9788 NA NA
## 9789 NA NA
## 9790 NA NA
## 9791 NA NA
## 9792 NA NA
## 9793 NA NA
## 9794 NA NA
## 9795 NA NA
## 9796 NA NA
## 9797 NA NA
## 9798 NA NA
## 9799 1.570 20.956
## 9800 1.570 20.956
## 9801 1.570 20.956
## 9802 1.570 20.956
## 9803 1.570 20.956
## 9804 1.570 20.956
## 9805 NA NA
## 9806 NA NA
## 9807 NA NA
## 9808 NA NA
## 9809 NA NA
## 9810 NA NA
## 9811 NA NA
## 9812 NA NA
## 9813 NA NA
## 9814 NA NA
## 9815 NA NA
## 9816 NA NA
## 9817 NA NA
## 9818 NA NA
## 9819 NA NA
## 9820 NA NA
## 9821 NA NA
## 9822 NA NA
## 9823 NA NA
## 9824 NA NA
## 9825 NA NA
## 9826 NA NA
## 9827 NA NA
## 9828 NA NA
## 9829 NA NA
## 9830 NA NA
## 9831 NA NA
## 9832 NA NA
## 9833 NA NA
## 9834 NA NA
## 9835 NA NA
## 9836 NA NA
## 9837 NA NA
## 9838 NA NA
## 9839 NA NA
## 9840 NA NA
## 9841 NA NA
## 9842 NA NA
## 9843 NA NA
## 9844 NA NA
## 9845 NA NA
## 9846 NA NA
## 9847 NA NA
## 9848 NA NA
## 9849 NA NA
## 9850 NA NA
## 9851 NA NA
## 9852 NA NA
## 9853 NA NA
## 9854 NA NA
## 9855 NA NA
## 9856 NA NA
## 9857 NA NA
## 9858 NA NA
## 9859 NA NA
## 9860 NA NA
## 9861 NA NA
## 9862 NA NA
## 9863 NA NA
## 9864 NA NA
## 9865 NA NA
## 9866 NA NA
## 9867 NA NA
## 9868 NA NA
## 9869 NA NA
## 9870 NA NA
## 9871 NA NA
## 9872 NA NA
## 9873 NA NA
## 9874 NA NA
## 9875 NA NA
## 9876 NA NA
## 9877 NA NA
## 9878 NA NA
## 9879 NA NA
## 9880 NA NA
## 9881 NA NA
## 9882 NA NA
## 9883 NA NA
## 9884 NA NA
## 9885 NA NA
## 9886 NA NA
## 9887 NA NA
## 9888 NA NA
## 9889 NA NA
## 9890 NA NA
## 9891 NA NA
## 9892 NA NA
## 9893 NA NA
## 9894 NA NA
## 9895 NA NA
## 9896 NA NA
## 9897 NA NA
## 9898 NA NA
## 9899 NA NA
## 9900 NA NA
## 9901 NA NA
## 9902 NA NA
## 9903 NA NA
## 9904 NA NA
## 9905 NA NA
## 9906 NA NA
## 9907 26.308 47.677
## 9908 26.308 47.677
## 9909 26.308 47.677
## 9910 26.308 47.677
## 9911 26.308 47.677
## 9912 26.308 47.677
## 9913 33.723 62.262
## 9914 33.723 62.262
## 9915 33.723 62.262
## 9916 33.723 62.262
## 9917 33.723 62.262
## 9918 33.723 62.262
## 9919 NA NA
## 9920 NA NA
## 9921 NA NA
## 9922 NA NA
## 9923 NA NA
## 9924 NA NA
## 9925 NA NA
## 9926 NA NA
## 9927 NA NA
## 9928 NA NA
## 9929 NA NA
## 9930 NA NA
## 9931 NA NA
## 9932 NA NA
## 9933 NA NA
## 9934 NA NA
## 9935 NA NA
## 9936 NA NA
## 9937 44.750 65.198
## 9938 44.750 65.198
## 9939 44.750 65.198
## 9940 44.750 65.198
## 9941 44.750 65.198
## 9942 44.750 65.198
## 9943 NA NA
## 9944 NA NA
## 9945 NA NA
## 9946 NA NA
## 9947 NA NA
## 9948 NA NA
## 9949 NA NA
## 9950 NA NA
## 9951 NA NA
## 9952 NA NA
## 9953 NA NA
## 9954 NA NA
## 9955 NA NA
## 9956 NA NA
## 9957 NA NA
## 9958 NA NA
## 9959 NA NA
## 9960 NA NA
## 9961 NA NA
## 9962 NA NA
## 9963 NA NA
## 9964 NA NA
## 9965 NA NA
## 9966 NA NA
## 9967 NA NA
## 9968 NA NA
## 9969 NA NA
## 9970 NA NA
## 9971 NA NA
## 9972 NA NA
## 9973 NA NA
## 9974 NA NA
## 9975 NA NA
## 9976 NA NA
## 9977 NA NA
## 9978 NA NA
## 9979 7.854 11.254
## 9980 7.854 11.254
## 9981 7.854 11.254
## 9982 7.854 11.254
## 9983 7.854 11.254
## 9984 7.854 11.254
## 9985 NA NA
## 9986 NA NA
## 9987 NA NA
## 9988 NA NA
## 9989 NA NA
## 9990 NA NA
## 9991 22.686 35.370
## 9992 22.686 35.370
## 9993 22.686 35.370
## 9994 22.686 35.370
## 9995 22.686 35.370
## 9996 22.686 35.370
## 9997 14.731 25.465
## 9998 14.731 25.465
## 9999 14.731 25.465
## 10000 14.731 25.465
## 10001 14.731 25.465
## 10002 14.731 25.465
## 10003 NA NA
## 10004 NA NA
## 10005 NA NA
## 10006 NA NA
## 10007 NA NA
## 10008 NA NA
## 10009 NA NA
## 10010 NA NA
## 10011 NA NA
## 10012 NA NA
## 10013 NA NA
## 10014 NA NA
## 10015 NA NA
## 10016 NA NA
## 10017 NA NA
## 10018 NA NA
## 10019 NA NA
## 10020 NA NA
## 10021 7.629 18.812
## 10022 7.629 18.812
## 10023 7.629 18.812
## 10024 7.629 18.812
## 10025 7.629 18.812
## 10026 7.629 18.812
## 10027 NA NA
## 10028 NA NA
## 10029 NA NA
## 10030 NA NA
## 10031 NA NA
## 10032 NA NA
## 10033 NA NA
## 10034 NA NA
## 10035 NA NA
## 10036 NA NA
## 10037 NA NA
## 10038 NA NA
## 10039 NA NA
## 10040 NA NA
## 10041 NA NA
## 10042 NA NA
## 10043 NA NA
## 10044 NA NA
## 10045 NA NA
## 10046 NA NA
## 10047 NA NA
## 10048 NA NA
## 10049 NA NA
## 10050 NA NA
## 10051 NA NA
## 10052 NA NA
## 10053 NA NA
## 10054 NA NA
## 10055 NA NA
## 10056 NA NA
## 10057 NA NA
## 10058 NA NA
## 10059 NA NA
## 10060 NA NA
## 10061 NA NA
## 10062 NA NA
## 10063 NA NA
## 10064 NA NA
## 10065 NA NA
## 10066 NA NA
## 10067 NA NA
## 10068 NA NA
## 10069 NA NA
## 10070 NA NA
## 10071 NA NA
## 10072 NA NA
## 10073 NA NA
## 10074 NA NA
## 10075 NA NA
## 10076 NA NA
## 10077 NA NA
## 10078 NA NA
## 10079 NA NA
## 10080 NA NA
## 10081 NA NA
## 10082 NA NA
## 10083 NA NA
## 10084 NA NA
## 10085 NA NA
## 10086 NA NA
## 10087 NA NA
## 10088 NA NA
## 10089 NA NA
## 10090 NA NA
## 10091 NA NA
## 10092 NA NA
## 10093 NA NA
## 10094 NA NA
## 10095 NA NA
## 10096 NA NA
## 10097 NA NA
## 10098 NA NA
## 10099 NA NA
## 10100 NA NA
## 10101 NA NA
## 10102 NA NA
## 10103 NA NA
## 10104 NA NA
## 10105 NA NA
## 10106 NA NA
## 10107 NA NA
## 10108 NA NA
## 10109 NA NA
## 10110 NA NA
## 10111 NA NA
## 10112 NA NA
## 10113 NA NA
## 10114 NA NA
## 10115 NA NA
## 10116 NA NA
## 10117 NA NA
## 10118 NA NA
## 10119 NA NA
## 10120 NA NA
## 10121 NA NA
## 10122 NA NA
## 10123 NA NA
## 10124 NA NA
## 10125 NA NA
## 10126 NA NA
## 10127 NA NA
## 10128 NA NA
## 10129 NA NA
## 10130 NA NA
## 10131 NA NA
## 10132 NA NA
## 10133 NA NA
## 10134 NA NA
## 10135 13.360 46.032
## 10136 13.360 46.032
## 10137 13.360 46.032
## 10138 13.360 46.032
## 10139 13.360 46.032
## 10140 13.360 46.032
## 10141 1.951 42.446
## 10142 1.951 42.446
## 10143 1.951 42.446
## 10144 1.951 42.446
## 10145 1.951 42.446
## 10146 1.951 42.446
## 10147 8.636 22.186
## 10148 8.636 22.186
## 10149 8.636 22.186
## 10150 8.636 22.186
## 10151 8.636 22.186
## 10152 8.636 22.186
## 10153 NA NA
## 10154 NA NA
## 10155 NA NA
## 10156 NA NA
## 10157 NA NA
## 10158 NA NA
## 10159 NA NA
## 10160 NA NA
## 10161 NA NA
## 10162 NA NA
## 10163 NA NA
## 10164 NA NA
## 10165 NA NA
## 10166 NA NA
## 10167 NA NA
## 10168 NA NA
## 10169 NA NA
## 10170 NA NA
## 10171 NA NA
## 10172 NA NA
## 10173 NA NA
## 10174 NA NA
## 10175 NA NA
## 10176 NA NA
## 10177 17.701 26.160
## 10178 17.701 26.160
## 10179 17.701 26.160
## 10180 17.701 26.160
## 10181 17.701 26.160
## 10182 17.701 26.160
## 10183 NA NA
## 10184 NA NA
## 10185 NA NA
## 10186 NA NA
## 10187 NA NA
## 10188 NA NA
## 10189 NA NA
## 10190 NA NA
## 10191 NA NA
## 10192 NA NA
## 10193 NA NA
## 10194 NA NA
## 10195 NA NA
## 10196 NA NA
## 10197 NA NA
## 10198 NA NA
## 10199 NA NA
## 10200 NA NA
## 10201 NA NA
## 10202 NA NA
## 10203 NA NA
## 10204 NA NA
## 10205 NA NA
## 10206 NA NA
## 10207 NA NA
## 10208 NA NA
## 10209 NA NA
## 10210 NA NA
## 10211 NA NA
## 10212 NA NA
## 10213 NA NA
## 10214 NA NA
## 10215 NA NA
## 10216 NA NA
## 10217 NA NA
## 10218 NA NA
## 10219 NA NA
## 10220 NA NA
## 10221 NA NA
## 10222 NA NA
## 10223 NA NA
## 10224 NA NA
## 10225 NA NA
## 10226 NA NA
## 10227 NA NA
## 10228 NA NA
## 10229 NA NA
## 10230 NA NA
## 10231 NA NA
## 10232 NA NA
## 10233 NA NA
## 10234 NA NA
## 10235 NA NA
## 10236 NA NA
## 10237 NA NA
## 10238 NA NA
## 10239 NA NA
## 10240 NA NA
## 10241 NA NA
## 10242 NA NA
## 10243 NA NA
## 10244 NA NA
## 10245 NA NA
## 10246 NA NA
## 10247 NA NA
## 10248 NA NA
## 10249 NA NA
## 10250 NA NA
## 10251 NA NA
## 10252 NA NA
## 10253 NA NA
## 10254 NA NA
## 10255 NA NA
## 10256 NA NA
## 10257 NA NA
## 10258 NA NA
## 10259 NA NA
## 10260 NA NA
## 10261 NA NA
## 10262 NA NA
## 10263 NA NA
## 10264 NA NA
## 10265 NA NA
## 10266 NA NA
## 10267 NA NA
## 10268 NA NA
## 10269 NA NA
## 10270 NA NA
## 10271 NA NA
## 10272 NA NA
## 10273 26.066 49.417
## 10274 26.066 49.417
## 10275 26.066 49.417
## 10276 26.066 49.417
## 10277 26.066 49.417
## 10278 26.066 49.417
## 10279 NA NA
## 10280 NA NA
## 10281 NA NA
## 10282 NA NA
## 10283 NA NA
## 10284 NA NA
## 10285 NA NA
## 10286 NA NA
## 10287 NA NA
## 10288 NA NA
## 10289 NA NA
## 10290 NA NA
## 10291 NA NA
## 10292 NA NA
## 10293 NA NA
## 10294 NA NA
## 10295 NA NA
## 10296 NA NA
## 10297 NA NA
## 10298 NA NA
## 10299 NA NA
## 10300 NA NA
## 10301 NA NA
## 10302 NA NA
## 10303 14.476 26.207
## 10304 14.476 26.207
## 10305 14.476 26.207
## 10306 14.476 26.207
## 10307 14.476 26.207
## 10308 14.476 26.207
## 10309 NA NA
## 10310 NA NA
## 10311 NA NA
## 10312 NA NA
## 10313 NA NA
## 10314 NA NA
## 10315 12.768 19.522
## 10316 12.768 19.522
## 10317 12.768 19.522
## 10318 12.768 19.522
## 10319 12.768 19.522
## 10320 12.768 19.522
## 10321 NA NA
## 10322 NA NA
## 10323 NA NA
## 10324 NA NA
## 10325 NA NA
## 10326 NA NA
## 10327 NA NA
## 10328 NA NA
## 10329 NA NA
## 10330 NA NA
## 10331 NA NA
## 10332 NA NA
## 10333 NA NA
## 10334 NA NA
## 10335 NA NA
## 10336 NA NA
## 10337 NA NA
## 10338 NA NA
## 10339 NA NA
## 10340 NA NA
## 10341 NA NA
## 10342 NA NA
## 10343 NA NA
## 10344 NA NA
## 10345 NA NA
## 10346 NA NA
## 10347 NA NA
## 10348 NA NA
## 10349 NA NA
## 10350 NA NA
## 10351 NA NA
## 10352 NA NA
## 10353 NA NA
## 10354 NA NA
## 10355 NA NA
## 10356 NA NA
## 10357 NA NA
## 10358 NA NA
## 10359 NA NA
## 10360 NA NA
## 10361 NA NA
## 10362 NA NA
## 10363 NA NA
## 10364 NA NA
## 10365 NA NA
## 10366 NA NA
## 10367 NA NA
## 10368 NA NA
## 10369 NA NA
## 10370 NA NA
## 10371 NA NA
## 10372 NA NA
## 10373 NA NA
## 10374 NA NA
## 10375 15.720 36.066
## 10376 15.720 36.066
## 10377 15.720 36.066
## 10378 15.720 36.066
## 10379 15.720 36.066
## 10380 15.720 36.066
## 10381 NA NA
## 10382 NA NA
## 10383 NA NA
## 10384 NA NA
## 10385 NA NA
## 10386 NA NA
## 10387 NA NA
## 10388 NA NA
## 10389 NA NA
## 10390 NA NA
## 10391 NA NA
## 10392 NA NA
## 10393 NA NA
## 10394 NA NA
## 10395 NA NA
## 10396 NA NA
## 10397 NA NA
## 10398 NA NA
## 10399 14.951 19.759
## 10400 14.951 19.759
## 10401 14.951 19.759
## 10402 14.951 19.759
## 10403 14.951 19.759
## 10404 14.951 19.759
## 10405 NA NA
## 10406 NA NA
## 10407 NA NA
## 10408 NA NA
## 10409 NA NA
## 10410 NA NA
## 10411 8.287 40.506
## 10412 8.287 40.506
## 10413 8.287 40.506
## 10414 8.287 40.506
## 10415 8.287 40.506
## 10416 8.287 40.506
## 10417 NA NA
## 10418 NA NA
## 10419 NA NA
## 10420 NA NA
## 10421 NA NA
## 10422 NA NA
## 10423 NA NA
## 10424 NA NA
## 10425 NA NA
## 10426 NA NA
## 10427 NA NA
## 10428 NA NA
## 10429 10.155 22.198
## 10430 10.155 22.198
## 10431 10.155 22.198
## 10432 10.155 22.198
## 10433 10.155 22.198
## 10434 10.155 22.198
## 10435 NA NA
## 10436 NA NA
## 10437 NA NA
## 10438 NA NA
## 10439 NA NA
## 10440 NA NA
## 10441 NA NA
## 10442 NA NA
## 10443 NA NA
## 10444 NA NA
## 10445 NA NA
## 10446 NA NA
## 10447 NA NA
## 10448 NA NA
## 10449 NA NA
## 10450 NA NA
## 10451 NA NA
## 10452 NA NA
## 10453 NA NA
## 10454 NA NA
## 10455 NA NA
## 10456 NA NA
## 10457 NA NA
## 10458 NA NA
## 10459 NA NA
## 10460 NA NA
## 10461 NA NA
## 10462 NA NA
## 10463 NA NA
## 10464 NA NA
## 10465 21.157 28.045
## 10466 21.157 28.045
## 10467 21.157 28.045
## 10468 21.157 28.045
## 10469 21.157 28.045
## 10470 21.157 28.045
## 10471 12.057 27.598
## 10472 12.057 27.598
## 10473 12.057 27.598
## 10474 12.057 27.598
## 10475 12.057 27.598
## 10476 12.057 27.598
## 10477 NA NA
## 10478 NA NA
## 10479 NA NA
## 10480 NA NA
## 10481 NA NA
## 10482 NA NA
## 10483 NA NA
## 10484 NA NA
## 10485 NA NA
## 10486 NA NA
## 10487 NA NA
## 10488 NA NA
## 10489 5.125 34.921
## 10490 5.125 34.921
## 10491 5.125 34.921
## 10492 5.125 34.921
## 10493 5.125 34.921
## 10494 5.125 34.921
## 10495 NA NA
## 10496 NA NA
## 10497 NA NA
## 10498 NA NA
## 10499 NA NA
## 10500 NA NA
## 10501 5.190 53.413
## 10502 5.190 53.413
## 10503 5.190 53.413
## 10504 5.190 53.413
## 10505 5.190 53.413
## 10506 5.190 53.413
## 10507 42.996 77.427
## 10508 42.996 77.427
## 10509 42.996 77.427
## 10510 42.996 77.427
## 10511 42.996 77.427
## 10512 42.996 77.427
## 10513 82.054 108.601
## 10514 82.054 108.601
## 10515 82.054 108.601
## 10516 82.054 108.601
## 10517 82.054 108.601
## 10518 82.054 108.601
## 10519 7.652 21.091
## 10520 7.652 21.091
## 10521 7.652 21.091
## 10522 7.652 21.091
## 10523 7.652 21.091
## 10524 7.652 21.091
## 10525 NA NA
## 10526 NA NA
## 10527 NA NA
## 10528 NA NA
## 10529 NA NA
## 10530 NA NA
## 10531 NA NA
## 10532 NA NA
## 10533 NA NA
## 10534 NA NA
## 10535 NA NA
## 10536 NA NA
## 10537 NA NA
## 10538 NA NA
## 10539 NA NA
## 10540 NA NA
## 10541 NA NA
## 10542 NA NA
## 10543 NA NA
## 10544 NA NA
## 10545 NA NA
## 10546 NA NA
## 10547 NA NA
## 10548 NA NA
## 10549 NA NA
## 10550 NA NA
## 10551 NA NA
## 10552 NA NA
## 10553 NA NA
## 10554 NA NA
## 10555 NA NA
## 10556 NA NA
## 10557 NA NA
## 10558 NA NA
## 10559 NA NA
## 10560 NA NA
## 10561 NA NA
## 10562 NA NA
## 10563 NA NA
## 10564 NA NA
## 10565 NA NA
## 10566 NA NA
## 10567 NA NA
## 10568 NA NA
## 10569 NA NA
## 10570 NA NA
## 10571 NA NA
## 10572 NA NA
## 10573 NA NA
## 10574 NA NA
## 10575 NA NA
## 10576 NA NA
## 10577 NA NA
## 10578 NA NA
## 10579 4.125 53.145
## 10580 4.125 53.145
## 10581 4.125 53.145
## 10582 4.125 53.145
## 10583 4.125 53.145
## 10584 4.125 53.145
## 10585 NA NA
## 10586 NA NA
## 10587 NA NA
## 10588 NA NA
## 10589 NA NA
## 10590 NA NA
## 10591 NA NA
## 10592 NA NA
## 10593 NA NA
## 10594 NA NA
## 10595 NA NA
## 10596 NA NA
## 10597 NA NA
## 10598 NA NA
## 10599 NA NA
## 10600 NA NA
## 10601 NA NA
## 10602 NA NA
## 10603 NA NA
## 10604 NA NA
## 10605 NA NA
## 10606 NA NA
## 10607 NA NA
## 10608 NA NA
## 10609 25.233 35.974
## 10610 25.233 35.974
## 10611 25.233 35.974
## 10612 25.233 35.974
## 10613 25.233 35.974
## 10614 25.233 35.974
## 10615 NA NA
## 10616 NA NA
## 10617 NA NA
## 10618 NA NA
## 10619 NA NA
## 10620 NA NA
## 10621 NA NA
## 10622 NA NA
## 10623 NA NA
## 10624 NA NA
## 10625 NA NA
## 10626 NA NA
## 10627 NA NA
## 10628 NA NA
## 10629 NA NA
## 10630 NA NA
## 10631 NA NA
## 10632 NA NA
## 10633 NA NA
## 10634 NA NA
## 10635 NA NA
## 10636 NA NA
## 10637 NA NA
## 10638 NA NA
## 10639 12.802 19.048
## 10640 12.802 19.048
## 10641 12.802 19.048
## 10642 12.802 19.048
## 10643 12.802 19.048
## 10644 12.802 19.048
## 10645 NA NA
## 10646 NA NA
## 10647 NA NA
## 10648 NA NA
## 10649 NA NA
## 10650 NA NA
## 10651 NA NA
## 10652 NA NA
## 10653 NA NA
## 10654 NA NA
## 10655 NA NA
## 10656 NA NA
## 10657 25.007 41.396
## 10658 25.007 41.396
## 10659 25.007 41.396
## 10660 25.007 41.396
## 10661 25.007 41.396
## 10662 25.007 41.396
## 10663 12.329 19.259
## 10664 12.329 19.259
## 10665 12.329 19.259
## 10666 12.329 19.259
## 10667 12.329 19.259
## 10668 12.329 19.259
## 10669 10.246 15.903
## 10670 10.246 15.903
## 10671 10.246 15.903
## 10672 10.246 15.903
## 10673 10.246 15.903
## 10674 10.246 15.903
## 10675 NA NA
## 10676 NA NA
## 10677 NA NA
## 10678 NA NA
## 10679 NA NA
## 10680 NA NA
## 10681 NA NA
## 10682 NA NA
## 10683 NA NA
## 10684 NA NA
## 10685 NA NA
## 10686 NA NA
## 10687 NA NA
## 10688 NA NA
## 10689 NA NA
## 10690 NA NA
## 10691 NA NA
## 10692 NA NA
## 10693 NA NA
## 10694 NA NA
## 10695 NA NA
## 10696 NA NA
## 10697 NA NA
## 10698 NA NA
## 10699 NA NA
## 10700 NA NA
## 10701 NA NA
## 10702 NA NA
## 10703 NA NA
## 10704 NA NA
## 10705 25.644 69.733
## 10706 25.644 69.733
## 10707 25.644 69.733
## 10708 25.644 69.733
## 10709 25.644 69.733
## 10710 25.644 69.733
## 10711 NA NA
## 10712 NA NA
## 10713 NA NA
## 10714 NA NA
## 10715 NA NA
## 10716 NA NA
## 10717 NA NA
## 10718 NA NA
## 10719 NA NA
## 10720 NA NA
## 10721 NA NA
## 10722 NA NA
## 10723 NA NA
## 10724 NA NA
## 10725 NA NA
## 10726 NA NA
## 10727 NA NA
## 10728 NA NA
## 10729 NA NA
## 10730 NA NA
## 10731 NA NA
## 10732 NA NA
## 10733 NA NA
## 10734 NA NA
## 10735 NA NA
## 10736 NA NA
## 10737 NA NA
## 10738 NA NA
## 10739 NA NA
## 10740 NA NA
## 10741 NA NA
## 10742 NA NA
## 10743 NA NA
## 10744 NA NA
## 10745 NA NA
## 10746 NA NA
## 10747 44.392 53.649
## 10748 44.392 53.649
## 10749 44.392 53.649
## 10750 44.392 53.649
## 10751 44.392 53.649
## 10752 44.392 53.649
## 10753 NA NA
## 10754 NA NA
## 10755 NA NA
## 10756 NA NA
## 10757 NA NA
## 10758 NA NA
## 10759 3.389 7.877
## 10760 3.389 7.877
## 10761 3.389 7.877
## 10762 3.389 7.877
## 10763 3.389 7.877
## 10764 3.389 7.877
## 10765 NA NA
## 10766 NA NA
## 10767 NA NA
## 10768 NA NA
## 10769 NA NA
## 10770 NA NA
## 10771 NA NA
## 10772 NA NA
## 10773 NA NA
## 10774 NA NA
## 10775 NA NA
## 10776 NA NA
## 10777 NA NA
## 10778 NA NA
## 10779 NA NA
## 10780 NA NA
## 10781 NA NA
## 10782 NA NA
## 10783 26.573 42.853
## 10784 26.573 42.853
## 10785 26.573 42.853
## 10786 26.573 42.853
## 10787 26.573 42.853
## 10788 26.573 42.853
## 10789 NA NA
## 10790 NA NA
## 10791 NA NA
## 10792 NA NA
## 10793 NA NA
## 10794 NA NA
## 10795 22.088 33.231
## 10796 22.088 33.231
## 10797 22.088 33.231
## 10798 22.088 33.231
## 10799 22.088 33.231
## 10800 22.088 33.231
## 10801 2.080 48.901
## 10802 2.080 48.901
## 10803 2.080 48.901
## 10804 2.080 48.901
## 10805 2.080 48.901
## 10806 2.080 48.901
## 10807 NA NA
## 10808 NA NA
## 10809 NA NA
## 10810 NA NA
## 10811 NA NA
## 10812 NA NA
## 10813 NA NA
## 10814 NA NA
## 10815 NA NA
## 10816 NA NA
## 10817 NA NA
## 10818 NA NA
## 10819 NA NA
## 10820 NA NA
## 10821 NA NA
## 10822 NA NA
## 10823 NA NA
## 10824 NA NA
## 10825 NA NA
## 10826 NA NA
## 10827 NA NA
## 10828 NA NA
## 10829 NA NA
## 10830 NA NA
## 10831 13.384 23.472
## 10832 13.384 23.472
## 10833 13.384 23.472
## 10834 13.384 23.472
## 10835 13.384 23.472
## 10836 13.384 23.472
## 10837 NA NA
## 10838 NA NA
## 10839 NA NA
## 10840 NA NA
## 10841 NA NA
## 10842 NA NA
## 10843 NA NA
## 10844 NA NA
## 10845 NA NA
## 10846 NA NA
## 10847 NA NA
## 10848 NA NA
## 10849 2.456 30.696
## 10850 2.456 30.696
## 10851 2.456 30.696
## 10852 2.456 30.696
## 10853 2.456 30.696
## 10854 2.456 30.696
## 10855 NA NA
## 10856 NA NA
## 10857 NA NA
## 10858 NA NA
## 10859 NA NA
## 10860 NA NA
## 10861 NA NA
## 10862 NA NA
## 10863 NA NA
## 10864 NA NA
## 10865 NA NA
## 10866 NA NA
## 10867 28.552 81.070
## 10868 28.552 81.070
## 10869 28.552 81.070
## 10870 28.552 81.070
## 10871 28.552 81.070
## 10872 28.552 81.070
## 10873 21.894 79.758
## 10874 21.894 79.758
## 10875 21.894 79.758
## 10876 21.894 79.758
## 10877 21.894 79.758
## 10878 21.894 79.758
## 10879 NA NA
## 10880 NA NA
## 10881 NA NA
## 10882 NA NA
## 10883 NA NA
## 10884 NA NA
## 10885 NA NA
## 10886 NA NA
## 10887 NA NA
## 10888 NA NA
## 10889 NA NA
## 10890 NA NA
## 10891 NA NA
## 10892 NA NA
## 10893 NA NA
## 10894 NA NA
## 10895 NA NA
## 10896 NA NA
## 10897 NA NA
## 10898 NA NA
## 10899 NA NA
## 10900 NA NA
## 10901 NA NA
## 10902 NA NA
## 10903 NA NA
## 10904 NA NA
## 10905 NA NA
## 10906 NA NA
## 10907 NA NA
## 10908 NA NA
## 10909 NA NA
## 10910 NA NA
## 10911 NA NA
## 10912 NA NA
## 10913 NA NA
## 10914 NA NA
## 10915 NA NA
## 10916 NA NA
## 10917 NA NA
## 10918 NA NA
## 10919 NA NA
## 10920 NA NA
## 10921 NA NA
## 10922 NA NA
## 10923 NA NA
## 10924 NA NA
## 10925 NA NA
## 10926 NA NA
## 10927 9.654 18.153
## 10928 9.654 18.153
## 10929 9.654 18.153
## 10930 9.654 18.153
## 10931 9.654 18.153
## 10932 9.654 18.153
## 10933 NA NA
## 10934 NA NA
## 10935 NA NA
## 10936 NA NA
## 10937 NA NA
## 10938 NA NA
## 10939 NA NA
## 10940 NA NA
## 10941 NA NA
## 10942 NA NA
## 10943 NA NA
## 10944 NA NA
## 10945 NA NA
## 10946 NA NA
## 10947 NA NA
## 10948 NA NA
## 10949 NA NA
## 10950 NA NA
## 10951 NA NA
## 10952 NA NA
## 10953 NA NA
## 10954 NA NA
## 10955 NA NA
## 10956 NA NA
## 10957 NA NA
## 10958 NA NA
## 10959 NA NA
## 10960 NA NA
## 10961 NA NA
## 10962 NA NA
## 10963 NA NA
## 10964 NA NA
## 10965 NA NA
## 10966 NA NA
## 10967 NA NA
## 10968 NA NA
## 10969 NA NA
## 10970 NA NA
## 10971 NA NA
## 10972 NA NA
## 10973 NA NA
## 10974 NA NA
## 10975 NA NA
## 10976 NA NA
## 10977 NA NA
## 10978 NA NA
## 10979 NA NA
## 10980 NA NA
## 10981 20.534 54.378
## 10982 20.534 54.378
## 10983 20.534 54.378
## 10984 20.534 54.378
## 10985 20.534 54.378
## 10986 20.534 54.378
## 10987 NA NA
## 10988 NA NA
## 10989 NA NA
## 10990 NA NA
## 10991 NA NA
## 10992 NA NA
## 10993 NA NA
## 10994 NA NA
## 10995 NA NA
## 10996 NA NA
## 10997 NA NA
## 10998 NA NA
## 10999 17.050 28.956
## 11000 17.050 28.956
## 11001 17.050 28.956
## 11002 17.050 28.956
## 11003 17.050 28.956
## 11004 17.050 28.956
## 11005 NA NA
## 11006 NA NA
## 11007 NA NA
## 11008 NA NA
## 11009 NA NA
## 11010 NA NA
## 11011 NA NA
## 11012 NA NA
## 11013 NA NA
## 11014 NA NA
## 11015 NA NA
## 11016 NA NA
## 11017 10.389 19.800
## 11018 10.389 19.800
## 11019 10.389 19.800
## 11020 10.389 19.800
## 11021 10.389 19.800
## 11022 10.389 19.800
## 11023 NA NA
## 11024 NA NA
## 11025 NA NA
## 11026 NA NA
## 11027 NA NA
## 11028 NA NA
## 11029 NA NA
## 11030 NA NA
## 11031 NA NA
## 11032 NA NA
## 11033 NA NA
## 11034 NA NA
## 11035 NA NA
## 11036 NA NA
## 11037 NA NA
## 11038 NA NA
## 11039 NA NA
## 11040 NA NA
## 11041 1.308 34.259
## 11042 1.308 34.259
## 11043 1.308 34.259
## 11044 1.308 34.259
## 11045 1.308 34.259
## 11046 1.308 34.259
## 11047 NA NA
## 11048 NA NA
## 11049 NA NA
## 11050 NA NA
## 11051 NA NA
## 11052 NA NA
## 11053 NA NA
## 11054 NA NA
## 11055 NA NA
## 11056 NA NA
## 11057 NA NA
## 11058 NA NA
## 11059 NA NA
## 11060 NA NA
## 11061 NA NA
## 11062 NA NA
## 11063 NA NA
## 11064 NA NA
## 11065 NA NA
## 11066 NA NA
## 11067 NA NA
## 11068 NA NA
## 11069 NA NA
## 11070 NA NA
## 11071 25.469 54.141
## 11072 25.469 54.141
## 11073 25.469 54.141
## 11074 25.469 54.141
## 11075 25.469 54.141
## 11076 25.469 54.141
## 11077 2.034 38.997
## 11078 2.034 38.997
## 11079 2.034 38.997
## 11080 2.034 38.997
## 11081 2.034 38.997
## 11082 2.034 38.997
## 11083 NA NA
## 11084 NA NA
## 11085 NA NA
## 11086 NA NA
## 11087 NA NA
## 11088 NA NA
## 11089 NA NA
## 11090 NA NA
## 11091 NA NA
## 11092 NA NA
## 11093 NA NA
## 11094 NA NA
## 11095 24.010 41.859
## 11096 24.010 41.859
## 11097 24.010 41.859
## 11098 24.010 41.859
## 11099 24.010 41.859
## 11100 24.010 41.859
## 11101 NA NA
## 11102 NA NA
## 11103 NA NA
## 11104 NA NA
## 11105 NA NA
## 11106 NA NA
## 11107 NA NA
## 11108 NA NA
## 11109 NA NA
## 11110 NA NA
## 11111 NA NA
## 11112 NA NA
## 11113 NA NA
## 11114 NA NA
## 11115 NA NA
## 11116 NA NA
## 11117 NA NA
## 11118 NA NA
## 11119 NA NA
## 11120 NA NA
## 11121 NA NA
## 11122 NA NA
## 11123 NA NA
## 11124 NA NA
## 11125 NA NA
## 11126 NA NA
## 11127 NA NA
## 11128 NA NA
## 11129 NA NA
## 11130 NA NA
## 11131 NA NA
## 11132 NA NA
## 11133 NA NA
## 11134 NA NA
## 11135 NA NA
## 11136 NA NA
## 11137 22.202 27.277
## 11138 22.202 27.277
## 11139 22.202 27.277
## 11140 22.202 27.277
## 11141 22.202 27.277
## 11142 22.202 27.277
## 11143 NA NA
## 11144 NA NA
## 11145 NA NA
## 11146 NA NA
## 11147 NA NA
## 11148 NA NA
## 11149 24.137 31.782
## 11150 24.137 31.782
## 11151 24.137 31.782
## 11152 24.137 31.782
## 11153 24.137 31.782
## 11154 24.137 31.782
## 11155 6.124 49.601
## 11156 6.124 49.601
## 11157 6.124 49.601
## 11158 6.124 49.601
## 11159 6.124 49.601
## 11160 6.124 49.601
## 11161 NA NA
## 11162 NA NA
## 11163 NA NA
## 11164 NA NA
## 11165 NA NA
## 11166 NA NA
## 11167 NA NA
## 11168 NA NA
## 11169 NA NA
## 11170 NA NA
## 11171 NA NA
## 11172 NA NA
## 11173 18.490 29.355
## 11174 18.490 29.355
## 11175 18.490 29.355
## 11176 18.490 29.355
## 11177 18.490 29.355
## 11178 18.490 29.355
## 11179 NA NA
## 11180 NA NA
## 11181 NA NA
## 11182 NA NA
## 11183 NA NA
## 11184 NA NA
## 11185 7.357 36.300
## 11186 7.357 36.300
## 11187 7.357 36.300
## 11188 7.357 36.300
## 11189 7.357 36.300
## 11190 7.357 36.300
## 11191 NA NA
## 11192 NA NA
## 11193 NA NA
## 11194 NA NA
## 11195 NA NA
## 11196 NA NA
## 11197 NA NA
## 11198 NA NA
## 11199 NA NA
## 11200 NA NA
## 11201 NA NA
## 11202 NA NA
## 11203 NA NA
## 11204 NA NA
## 11205 NA NA
## 11206 NA NA
## 11207 NA NA
## 11208 NA NA
## 11209 52.783 70.990
## 11210 52.783 70.990
## 11211 52.783 70.990
## 11212 52.783 70.990
## 11213 52.783 70.990
## 11214 52.783 70.990
## 11215 NA NA
## 11216 NA NA
## 11217 NA NA
## 11218 NA NA
## 11219 NA NA
## 11220 NA NA
## 11221 NA NA
## 11222 NA NA
## 11223 NA NA
## 11224 NA NA
## 11225 NA NA
## 11226 NA NA
## 11227 NA NA
## 11228 NA NA
## 11229 NA NA
## 11230 NA NA
## 11231 NA NA
## 11232 NA NA
## 11233 11.131 40.350
## 11234 11.131 40.350
## 11235 11.131 40.350
## 11236 11.131 40.350
## 11237 11.131 40.350
## 11238 11.131 40.350
## 11239 NA NA
## 11240 NA NA
## 11241 NA NA
## 11242 NA NA
## 11243 NA NA
## 11244 NA NA
## 11245 NA NA
## 11246 NA NA
## 11247 NA NA
## 11248 NA NA
## 11249 NA NA
## 11250 NA NA
## 11251 NA NA
## 11252 NA NA
## 11253 NA NA
## 11254 NA NA
## 11255 NA NA
## 11256 NA NA
## 11257 NA NA
## 11258 NA NA
## 11259 NA NA
## 11260 NA NA
## 11261 NA NA
## 11262 NA NA
## 11263 NA NA
## 11264 NA NA
## 11265 NA NA
## 11266 NA NA
## 11267 NA NA
## 11268 NA NA
## 11269 NA NA
## 11270 NA NA
## 11271 NA NA
## 11272 NA NA
## 11273 NA NA
## 11274 NA NA
## 11275 NA NA
## 11276 NA NA
## 11277 NA NA
## 11278 NA NA
## 11279 NA NA
## 11280 NA NA
## 11281 NA NA
## 11282 NA NA
## 11283 NA NA
## 11284 NA NA
## 11285 NA NA
## 11286 NA NA
## 11287 NA NA
## 11288 NA NA
## 11289 NA NA
## 11290 NA NA
## 11291 NA NA
## 11292 NA NA
## 11293 NA NA
## 11294 NA NA
## 11295 NA NA
## 11296 NA NA
## 11297 NA NA
## 11298 NA NA
## 11299 NA NA
## 11300 NA NA
## 11301 NA NA
## 11302 NA NA
## 11303 NA NA
## 11304 NA NA
## 11305 NA NA
## 11306 NA NA
## 11307 NA NA
## 11308 NA NA
## 11309 NA NA
## 11310 NA NA
## 11311 NA NA
## 11312 NA NA
## 11313 NA NA
## 11314 NA NA
## 11315 NA NA
## 11316 NA NA
## 11317 NA NA
## 11318 NA NA
## 11319 NA NA
## 11320 NA NA
## 11321 NA NA
## 11322 NA NA
## 11323 NA NA
## 11324 NA NA
## 11325 NA NA
## 11326 NA NA
## 11327 NA NA
## 11328 NA NA
## 11329 12.790 40.876
## 11330 12.790 40.876
## 11331 12.790 40.876
## 11332 12.790 40.876
## 11333 12.790 40.876
## 11334 12.790 40.876
## 11335 266.885 274.995
## 11336 266.885 274.995
## 11337 266.885 274.995
## 11338 266.885 274.995
## 11339 266.885 274.995
## 11340 266.885 274.995
## 11341 NA NA
## 11342 NA NA
## 11343 NA NA
## 11344 NA NA
## 11345 NA NA
## 11346 NA NA
## 11347 NA NA
## 11348 NA NA
## 11349 NA NA
## 11350 NA NA
## 11351 NA NA
## 11352 NA NA
## 11353 NA NA
## 11354 NA NA
## 11355 NA NA
## 11356 NA NA
## 11357 NA NA
## 11358 NA NA
## 11359 NA NA
## 11360 NA NA
## 11361 NA NA
## 11362 NA NA
## 11363 NA NA
## 11364 NA NA
## 11365 NA NA
## 11366 NA NA
## 11367 NA NA
## 11368 NA NA
## 11369 NA NA
## 11370 NA NA
## 11371 21.930 39.749
## 11372 21.930 39.749
## 11373 21.930 39.749
## 11374 21.930 39.749
## 11375 21.930 39.749
## 11376 21.930 39.749
## 11377 3.247 34.446
## 11378 3.247 34.446
## 11379 3.247 34.446
## 11380 3.247 34.446
## 11381 3.247 34.446
## 11382 3.247 34.446
## 11383 NA NA
## 11384 NA NA
## 11385 NA NA
## 11386 NA NA
## 11387 NA NA
## 11388 NA NA
## 11389 NA NA
## 11390 NA NA
## 11391 NA NA
## 11392 NA NA
## 11393 NA NA
## 11394 NA NA
## 11395 NA NA
## 11396 NA NA
## 11397 NA NA
## 11398 NA NA
## 11399 NA NA
## 11400 NA NA
## 11401 NA NA
## 11402 NA NA
## 11403 NA NA
## 11404 NA NA
## 11405 NA NA
## 11406 NA NA
## 11407 NA NA
## 11408 NA NA
## 11409 NA NA
## 11410 NA NA
## 11411 NA NA
## 11412 NA NA
## 11413 NA NA
## 11414 NA NA
## 11415 NA NA
## 11416 NA NA
## 11417 NA NA
## 11418 NA NA
## 11419 NA NA
## 11420 NA NA
## 11421 NA NA
## 11422 NA NA
## 11423 NA NA
## 11424 NA NA
## 11425 36.296 43.154
## 11426 36.296 43.154
## 11427 36.296 43.154
## 11428 36.296 43.154
## 11429 36.296 43.154
## 11430 36.296 43.154
## 11431 30.226 96.592
## 11432 30.226 96.592
## 11433 30.226 96.592
## 11434 30.226 96.592
## 11435 30.226 96.592
## 11436 30.226 96.592
## 11437 0.999 27.896
## 11438 0.999 27.896
## 11439 0.999 27.896
## 11440 0.999 27.896
## 11441 0.999 27.896
## 11442 0.999 27.896
## 11443 NA NA
## 11444 NA NA
## 11445 NA NA
## 11446 NA NA
## 11447 NA NA
## 11448 NA NA
## 11449 NA NA
## 11450 NA NA
## 11451 NA NA
## 11452 NA NA
## 11453 NA NA
## 11454 NA NA
## 11455 NA NA
## 11456 NA NA
## 11457 NA NA
## 11458 NA NA
## 11459 NA NA
## 11460 NA NA
## 11461 9.147 54.043
## 11462 9.147 54.043
## 11463 9.147 54.043
## 11464 9.147 54.043
## 11465 9.147 54.043
## 11466 9.147 54.043
## 11467 NA NA
## 11468 NA NA
## 11469 NA NA
## 11470 NA NA
## 11471 NA NA
## 11472 NA NA
## 11473 83.030 179.968
## 11474 83.030 179.968
## 11475 83.030 179.968
## 11476 83.030 179.968
## 11477 83.030 179.968
## 11478 83.030 179.968
## 11479 NA NA
## 11480 NA NA
## 11481 NA NA
## 11482 NA NA
## 11483 NA NA
## 11484 NA NA
## 11485 NA NA
## 11486 NA NA
## 11487 NA NA
## 11488 NA NA
## 11489 NA NA
## 11490 NA NA
## 11491 NA NA
## 11492 NA NA
## 11493 NA NA
## 11494 NA NA
## 11495 NA NA
## 11496 NA NA
## 11497 NA NA
## 11498 NA NA
## 11499 NA NA
## 11500 NA NA
## 11501 NA NA
## 11502 NA NA
## 11503 297.957 319.289
## 11504 297.957 319.289
## 11505 297.957 319.289
## 11506 297.957 319.289
## 11507 297.957 319.289
## 11508 297.957 319.289
## 11509 NA NA
## 11510 NA NA
## 11511 NA NA
## 11512 NA NA
## 11513 NA NA
## 11514 NA NA
## 11515 175.292 223.289
## 11516 175.292 223.289
## 11517 175.292 223.289
## 11518 175.292 223.289
## 11519 175.292 223.289
## 11520 175.292 223.289
## 11521 15.373 38.176
## 11522 15.373 38.176
## 11523 15.373 38.176
## 11524 15.373 38.176
## 11525 15.373 38.176
## 11526 15.373 38.176
## 11527 NA NA
## 11528 NA NA
## 11529 NA NA
## 11530 NA NA
## 11531 NA NA
## 11532 NA NA
## 11533 NA NA
## 11534 NA NA
## 11535 NA NA
## 11536 NA NA
## 11537 NA NA
## 11538 NA NA
## 11539 NA NA
## 11540 NA NA
## 11541 NA NA
## 11542 NA NA
## 11543 NA NA
## 11544 NA NA
## 11545 NA NA
## 11546 NA NA
## 11547 NA NA
## 11548 NA NA
## 11549 NA NA
## 11550 NA NA
## 11551 23.530 37.657
## 11552 23.530 37.657
## 11553 23.530 37.657
## 11554 23.530 37.657
## 11555 23.530 37.657
## 11556 23.530 37.657
## 11557 NA NA
## 11558 NA NA
## 11559 NA NA
## 11560 NA NA
## 11561 NA NA
## 11562 NA NA
## 11563 NA NA
## 11564 NA NA
## 11565 NA NA
## 11566 NA NA
## 11567 NA NA
## 11568 NA NA
## 11569 1.947 24.916
## 11570 1.947 24.916
## 11571 1.947 24.916
## 11572 1.947 24.916
## 11573 1.947 24.916
## 11574 1.947 24.916
## 11575 NA NA
## 11576 NA NA
## 11577 NA NA
## 11578 NA NA
## 11579 NA NA
## 11580 NA NA
## 11581 NA NA
## 11582 NA NA
## 11583 NA NA
## 11584 NA NA
## 11585 NA NA
## 11586 NA NA
## 11587 NA NA
## 11588 NA NA
## 11589 NA NA
## 11590 NA NA
## 11591 NA NA
## 11592 NA NA
## 11593 NA NA
## 11594 NA NA
## 11595 NA NA
## 11596 NA NA
## 11597 NA NA
## 11598 NA NA
## 11599 NA NA
## 11600 NA NA
## 11601 NA NA
## 11602 NA NA
## 11603 NA NA
## 11604 NA NA
## 11605 NA NA
## 11606 NA NA
## 11607 NA NA
## 11608 NA NA
## 11609 NA NA
## 11610 NA NA
## 11611 NA NA
## 11612 NA NA
## 11613 NA NA
## 11614 NA NA
## 11615 NA NA
## 11616 NA NA
## 11617 NA NA
## 11618 NA NA
## 11619 NA NA
## 11620 NA NA
## 11621 NA NA
## 11622 NA NA
## 11623 NA NA
## 11624 NA NA
## 11625 NA NA
## 11626 NA NA
## 11627 NA NA
## 11628 NA NA
## 11629 NA NA
## 11630 NA NA
## 11631 NA NA
## 11632 NA NA
## 11633 NA NA
## 11634 NA NA
## 11635 NA NA
## 11636 NA NA
## 11637 NA NA
## 11638 NA NA
## 11639 NA NA
## 11640 NA NA
## 11641 38.621 65.512
## 11642 38.621 65.512
## 11643 38.621 65.512
## 11644 38.621 65.512
## 11645 38.621 65.512
## 11646 38.621 65.512
## 11647 NA NA
## 11648 NA NA
## 11649 NA NA
## 11650 NA NA
## 11651 NA NA
## 11652 NA NA
## 11653 NA NA
## 11654 NA NA
## 11655 NA NA
## 11656 NA NA
## 11657 NA NA
## 11658 NA NA
## 11659 NA NA
## 11660 NA NA
## 11661 NA NA
## 11662 NA NA
## 11663 NA NA
## 11664 NA NA
## 11665 NA NA
## 11666 NA NA
## 11667 NA NA
## 11668 NA NA
## 11669 NA NA
## 11670 NA NA
## 11671 19.945 38.029
## 11672 19.945 38.029
## 11673 19.945 38.029
## 11674 19.945 38.029
## 11675 19.945 38.029
## 11676 19.945 38.029
## 11677 NA NA
## 11678 NA NA
## 11679 NA NA
## 11680 NA NA
## 11681 NA NA
## 11682 NA NA
## 11683 NA NA
## 11684 NA NA
## 11685 NA NA
## 11686 NA NA
## 11687 NA NA
## 11688 NA NA
## 11689 NA NA
## 11690 NA NA
## 11691 NA NA
## 11692 NA NA
## 11693 NA NA
## 11694 NA NA
## 11695 NA NA
## 11696 NA NA
## 11697 NA NA
## 11698 NA NA
## 11699 NA NA
## 11700 NA NA
## 11701 NA NA
## 11702 NA NA
## 11703 NA NA
## 11704 NA NA
## 11705 NA NA
## 11706 NA NA
## 11707 NA NA
## 11708 NA NA
## 11709 NA NA
## 11710 NA NA
## 11711 NA NA
## 11712 NA NA
## 11713 NA NA
## 11714 NA NA
## 11715 NA NA
## 11716 NA NA
## 11717 NA NA
## 11718 NA NA
## 11719 NA NA
## 11720 NA NA
## 11721 NA NA
## 11722 NA NA
## 11723 NA NA
## 11724 NA NA
## 11725 NA NA
## 11726 NA NA
## 11727 NA NA
## 11728 NA NA
## 11729 NA NA
## 11730 NA NA
## 11731 NA NA
## 11732 NA NA
## 11733 NA NA
## 11734 NA NA
## 11735 NA NA
## 11736 NA NA
## 11737 NA NA
## 11738 NA NA
## 11739 NA NA
## 11740 NA NA
## 11741 NA NA
## 11742 NA NA
## 11743 NA NA
## 11744 NA NA
## 11745 NA NA
## 11746 NA NA
## 11747 NA NA
## 11748 NA NA
## 11749 NA NA
## 11750 NA NA
## 11751 NA NA
## 11752 NA NA
## 11753 NA NA
## 11754 NA NA
## 11755 NA NA
## 11756 NA NA
## 11757 NA NA
## 11758 NA NA
## 11759 NA NA
## 11760 NA NA
## 11761 NA NA
## 11762 NA NA
## 11763 NA NA
## 11764 NA NA
## 11765 NA NA
## 11766 NA NA
## 11767 NA NA
## 11768 NA NA
## 11769 NA NA
## 11770 NA NA
## 11771 NA NA
## 11772 NA NA
## 11773 12.697 23.585
## 11774 12.697 23.585
## 11775 12.697 23.585
## 11776 12.697 23.585
## 11777 12.697 23.585
## 11778 12.697 23.585
## 11779 7.658 26.821
## 11780 7.658 26.821
## 11781 7.658 26.821
## 11782 7.658 26.821
## 11783 7.658 26.821
## 11784 7.658 26.821
## 11785 NA NA
## 11786 NA NA
## 11787 NA NA
## 11788 NA NA
## 11789 NA NA
## 11790 NA NA
## 11791 NA NA
## 11792 NA NA
## 11793 NA NA
## 11794 NA NA
## 11795 NA NA
## 11796 NA NA
## 11797 NA NA
## 11798 NA NA
## 11799 NA NA
## 11800 NA NA
## 11801 NA NA
## 11802 NA NA
## 11803 NA NA
## 11804 NA NA
## 11805 NA NA
## 11806 NA NA
## 11807 NA NA
## 11808 NA NA
## 11809 19.429 59.839
## 11810 19.429 59.839
## 11811 19.429 59.839
## 11812 19.429 59.839
## 11813 19.429 59.839
## 11814 19.429 59.839
## 11815 NA NA
## 11816 NA NA
## 11817 NA NA
## 11818 NA NA
## 11819 NA NA
## 11820 NA NA
## 11821 NA NA
## 11822 NA NA
## 11823 NA NA
## 11824 NA NA
## 11825 NA NA
## 11826 NA NA
## 11827 NA NA
## 11828 NA NA
## 11829 NA NA
## 11830 NA NA
## 11831 NA NA
## 11832 NA NA
## 11833 2.722 117.667
## 11834 2.722 117.667
## 11835 2.722 117.667
## 11836 2.722 117.667
## 11837 2.722 117.667
## 11838 2.722 117.667
## 11839 17.932 27.921
## 11840 17.932 27.921
## 11841 17.932 27.921
## 11842 17.932 27.921
## 11843 17.932 27.921
## 11844 17.932 27.921
## 11845 24.397 107.601
## 11846 24.397 107.601
## 11847 24.397 107.601
## 11848 24.397 107.601
## 11849 24.397 107.601
## 11850 24.397 107.601
## 11851 NA NA
## 11852 NA NA
## 11853 NA NA
## 11854 NA NA
## 11855 NA NA
## 11856 NA NA
## 11857 NA NA
## 11858 NA NA
## 11859 NA NA
## 11860 NA NA
## 11861 NA NA
## 11862 NA NA
## 11863 NA NA
## 11864 NA NA
## 11865 NA NA
## 11866 NA NA
## 11867 NA NA
## 11868 NA NA
## 11869 NA NA
## 11870 NA NA
## 11871 NA NA
## 11872 NA NA
## 11873 NA NA
## 11874 NA NA
## 11875 NA NA
## 11876 NA NA
## 11877 NA NA
## 11878 NA NA
## 11879 NA NA
## 11880 NA NA
## 11881 NA NA
## 11882 NA NA
## 11883 NA NA
## 11884 NA NA
## 11885 NA NA
## 11886 NA NA
## 11887 15.404 79.492
## 11888 15.404 79.492
## 11889 15.404 79.492
## 11890 15.404 79.492
## 11891 15.404 79.492
## 11892 15.404 79.492
## 11893 NA NA
## 11894 NA NA
## 11895 NA NA
## 11896 NA NA
## 11897 NA NA
## 11898 NA NA
## 11899 NA NA
## 11900 NA NA
## 11901 NA NA
## 11902 NA NA
## 11903 NA NA
## 11904 NA NA
## 11905 NA NA
## 11906 NA NA
## 11907 NA NA
## 11908 NA NA
## 11909 NA NA
## 11910 NA NA
## 11911 NA NA
## 11912 NA NA
## 11913 NA NA
## 11914 NA NA
## 11915 NA NA
## 11916 NA NA
## 11917 5.530 32.298
## 11918 5.530 32.298
## 11919 5.530 32.298
## 11920 5.530 32.298
## 11921 5.530 32.298
## 11922 5.530 32.298
## 11923 NA NA
## 11924 NA NA
## 11925 NA NA
## 11926 NA NA
## 11927 NA NA
## 11928 NA NA
## 11929 NA NA
## 11930 NA NA
## 11931 NA NA
## 11932 NA NA
## 11933 NA NA
## 11934 NA NA
## 11935 NA NA
## 11936 NA NA
## 11937 NA NA
## 11938 NA NA
## 11939 NA NA
## 11940 NA NA
## 11941 NA NA
## 11942 NA NA
## 11943 NA NA
## 11944 NA NA
## 11945 NA NA
## 11946 NA NA
## 11947 NA NA
## 11948 NA NA
## 11949 NA NA
## 11950 NA NA
## 11951 NA NA
## 11952 NA NA
## 11953 17.054 46.323
## 11954 17.054 46.323
## 11955 17.054 46.323
## 11956 17.054 46.323
## 11957 17.054 46.323
## 11958 17.054 46.323
## 11959 NA NA
## 11960 NA NA
## 11961 NA NA
## 11962 NA NA
## 11963 NA NA
## 11964 NA NA
## 11965 NA NA
## 11966 NA NA
## 11967 NA NA
## 11968 NA NA
## 11969 NA NA
## 11970 NA NA
## 11971 NA NA
## 11972 NA NA
## 11973 NA NA
## 11974 NA NA
## 11975 NA NA
## 11976 NA NA
## 11977 NA NA
## 11978 NA NA
## 11979 NA NA
## 11980 NA NA
## 11981 NA NA
## 11982 NA NA
## 11983 NA NA
## 11984 NA NA
## 11985 NA NA
## 11986 NA NA
## 11987 NA NA
## 11988 NA NA
## 11989 NA NA
## 11990 NA NA
## 11991 NA NA
## 11992 NA NA
## 11993 NA NA
## 11994 NA NA
## 11995 NA NA
## 11996 NA NA
## 11997 NA NA
## 11998 NA NA
## 11999 NA NA
## 12000 NA NA
## 12001 NA NA
## 12002 NA NA
## 12003 NA NA
## 12004 NA NA
## 12005 NA NA
## 12006 NA NA
## 12007 7.705 36.245
## 12008 7.705 36.245
## 12009 7.705 36.245
## 12010 7.705 36.245
## 12011 7.705 36.245
## 12012 7.705 36.245
## 12013 17.329 42.596
## 12014 17.329 42.596
## 12015 17.329 42.596
## 12016 17.329 42.596
## 12017 17.329 42.596
## 12018 17.329 42.596
## 12019 31.747 46.744
## 12020 31.747 46.744
## 12021 31.747 46.744
## 12022 31.747 46.744
## 12023 31.747 46.744
## 12024 31.747 46.744
## 12025 15.964 23.211
## 12026 15.964 23.211
## 12027 15.964 23.211
## 12028 15.964 23.211
## 12029 15.964 23.211
## 12030 15.964 23.211
## 12031 NA NA
## 12032 NA NA
## 12033 NA NA
## 12034 NA NA
## 12035 NA NA
## 12036 NA NA
## 12037 NA NA
## 12038 NA NA
## 12039 NA NA
## 12040 NA NA
## 12041 NA NA
## 12042 NA NA
## 12043 8.053 14.740
## 12044 8.053 14.740
## 12045 8.053 14.740
## 12046 8.053 14.740
## 12047 8.053 14.740
## 12048 8.053 14.740
## 12049 NA NA
## 12050 NA NA
## 12051 NA NA
## 12052 NA NA
## 12053 NA NA
## 12054 NA NA
## 12055 NA NA
## 12056 NA NA
## 12057 NA NA
## 12058 NA NA
## 12059 NA NA
## 12060 NA NA
## 12061 NA NA
## 12062 NA NA
## 12063 NA NA
## 12064 NA NA
## 12065 NA NA
## 12066 NA NA
## 12067 NA NA
## 12068 NA NA
## 12069 NA NA
## 12070 NA NA
## 12071 NA NA
## 12072 NA NA
## 12073 2.344 121.982
## 12074 2.344 121.982
## 12075 2.344 121.982
## 12076 2.344 121.982
## 12077 2.344 121.982
## 12078 2.344 121.982
## 12079 NA NA
## 12080 NA NA
## 12081 NA NA
## 12082 NA NA
## 12083 NA NA
## 12084 NA NA
## 12085 NA NA
## 12086 NA NA
## 12087 NA NA
## 12088 NA NA
## 12089 NA NA
## 12090 NA NA
## 12091 NA NA
## 12092 NA NA
## 12093 NA NA
## 12094 NA NA
## 12095 NA NA
## 12096 NA NA
## 12097 1.629 35.409
## 12098 1.629 35.409
## 12099 1.629 35.409
## 12100 1.629 35.409
## 12101 1.629 35.409
## 12102 1.629 35.409
## 12103 NA NA
## 12104 NA NA
## 12105 NA NA
## 12106 NA NA
## 12107 NA NA
## 12108 NA NA
## 12109 NA NA
## 12110 NA NA
## 12111 NA NA
## 12112 NA NA
## 12113 NA NA
## 12114 NA NA
## 12115 NA NA
## 12116 NA NA
## 12117 NA NA
## 12118 NA NA
## 12119 NA NA
## 12120 NA NA
## 12121 14.159 39.870
## 12122 14.159 39.870
## 12123 14.159 39.870
## 12124 14.159 39.870
## 12125 14.159 39.870
## 12126 14.159 39.870
## 12127 NA NA
## 12128 NA NA
## 12129 NA NA
## 12130 NA NA
## 12131 NA NA
## 12132 NA NA
## 12133 21.270 44.835
## 12134 21.270 44.835
## 12135 21.270 44.835
## 12136 21.270 44.835
## 12137 21.270 44.835
## 12138 21.270 44.835
## 12139 26.853 49.887
## 12140 26.853 49.887
## 12141 26.853 49.887
## 12142 26.853 49.887
## 12143 26.853 49.887
## 12144 26.853 49.887
## 12145 NA NA
## 12146 NA NA
## 12147 NA NA
## 12148 NA NA
## 12149 NA NA
## 12150 NA NA
## 12151 NA NA
## 12152 NA NA
## 12153 NA NA
## 12154 NA NA
## 12155 NA NA
## 12156 NA NA
## 12157 26.144 47.211
## 12158 26.144 47.211
## 12159 26.144 47.211
## 12160 26.144 47.211
## 12161 26.144 47.211
## 12162 26.144 47.211
## 12163 6.518 37.851
## 12164 6.518 37.851
## 12165 6.518 37.851
## 12166 6.518 37.851
## 12167 6.518 37.851
## 12168 6.518 37.851
## 12169 1.790 39.665
## 12170 1.790 39.665
## 12171 1.790 39.665
## 12172 1.790 39.665
## 12173 1.790 39.665
## 12174 1.790 39.665
## 12175 NA NA
## 12176 NA NA
## 12177 NA NA
## 12178 NA NA
## 12179 NA NA
## 12180 NA NA
## 12181 8.344 35.731
## 12182 8.344 35.731
## 12183 8.344 35.731
## 12184 8.344 35.731
## 12185 8.344 35.731
## 12186 8.344 35.731
## 12187 NA NA
## 12188 NA NA
## 12189 NA NA
## 12190 NA NA
## 12191 NA NA
## 12192 NA NA
## 12193 10.929 44.366
## 12194 10.929 44.366
## 12195 10.929 44.366
## 12196 10.929 44.366
## 12197 10.929 44.366
## 12198 10.929 44.366
## 12199 NA NA
## 12200 NA NA
## 12201 NA NA
## 12202 NA NA
## 12203 NA NA
## 12204 NA NA
## 12205 NA NA
## 12206 NA NA
## 12207 NA NA
## 12208 NA NA
## 12209 NA NA
## 12210 NA NA
## 12211 NA NA
## 12212 NA NA
## 12213 NA NA
## 12214 NA NA
## 12215 NA NA
## 12216 NA NA
## 12217 NA NA
## 12218 NA NA
## 12219 NA NA
## 12220 NA NA
## 12221 NA NA
## 12222 NA NA
## 12223 NA NA
## 12224 NA NA
## 12225 NA NA
## 12226 NA NA
## 12227 NA NA
## 12228 NA NA
## 12229 6.953 41.160
## 12230 6.953 41.160
## 12231 6.953 41.160
## 12232 6.953 41.160
## 12233 6.953 41.160
## 12234 6.953 41.160
## 12235 NA NA
## 12236 NA NA
## 12237 NA NA
## 12238 NA NA
## 12239 NA NA
## 12240 NA NA
## 12241 NA NA
## 12242 NA NA
## 12243 NA NA
## 12244 NA NA
## 12245 NA NA
## 12246 NA NA
## 12247 NA NA
## 12248 NA NA
## 12249 NA NA
## 12250 NA NA
## 12251 NA NA
## 12252 NA NA
## 12253 NA NA
## 12254 NA NA
## 12255 NA NA
## 12256 NA NA
## 12257 NA NA
## 12258 NA NA
## 12259 NA NA
## 12260 NA NA
## 12261 NA NA
## 12262 NA NA
## 12263 NA NA
## 12264 NA NA
## 12265 NA NA
## 12266 NA NA
## 12267 NA NA
## 12268 NA NA
## 12269 NA NA
## 12270 NA NA
## 12271 NA NA
## 12272 NA NA
## 12273 NA NA
## 12274 NA NA
## 12275 NA NA
## 12276 NA NA
## 12277 NA NA
## 12278 NA NA
## 12279 NA NA
## 12280 NA NA
## 12281 NA NA
## 12282 NA NA
## 12283 NA NA
## 12284 NA NA
## 12285 NA NA
## 12286 NA NA
## 12287 NA NA
## 12288 NA NA
## 12289 6.374 130.174
## 12290 6.374 130.174
## 12291 6.374 130.174
## 12292 6.374 130.174
## 12293 6.374 130.174
## 12294 6.374 130.174
## 12295 23.806 37.726
## 12296 23.806 37.726
## 12297 23.806 37.726
## 12298 23.806 37.726
## 12299 23.806 37.726
## 12300 23.806 37.726
## 12301 NA NA
## 12302 NA NA
## 12303 NA NA
## 12304 NA NA
## 12305 NA NA
## 12306 NA NA
## 12307 31.247 41.164
## 12308 31.247 41.164
## 12309 31.247 41.164
## 12310 31.247 41.164
## 12311 31.247 41.164
## 12312 31.247 41.164
## 12313 NA NA
## 12314 NA NA
## 12315 NA NA
## 12316 NA NA
## 12317 NA NA
## 12318 NA NA
## 12319 NA NA
## 12320 NA NA
## 12321 NA NA
## 12322 NA NA
## 12323 NA NA
## 12324 NA NA
## 12325 31.094 44.812
## 12326 31.094 44.812
## 12327 31.094 44.812
## 12328 31.094 44.812
## 12329 31.094 44.812
## 12330 31.094 44.812
## 12331 1.364 57.858
## 12332 1.364 57.858
## 12333 1.364 57.858
## 12334 1.364 57.858
## 12335 1.364 57.858
## 12336 1.364 57.858
## 12337 NA NA
## 12338 NA NA
## 12339 NA NA
## 12340 NA NA
## 12341 NA NA
## 12342 NA NA
## 12343 32.463 56.262
## 12344 32.463 56.262
## 12345 32.463 56.262
## 12346 32.463 56.262
## 12347 32.463 56.262
## 12348 32.463 56.262
## 12349 NA NA
## 12350 NA NA
## 12351 NA NA
## 12352 NA NA
## 12353 NA NA
## 12354 NA NA
## 12355 NA NA
## 12356 NA NA
## 12357 NA NA
## 12358 NA NA
## 12359 NA NA
## 12360 NA NA
## 12361 NA NA
## 12362 NA NA
## 12363 NA NA
## 12364 NA NA
## 12365 NA NA
## 12366 NA NA
## 12367 NA NA
## 12368 NA NA
## 12369 NA NA
## 12370 NA NA
## 12371 NA NA
## 12372 NA NA
## 12373 NA NA
## 12374 NA NA
## 12375 NA NA
## 12376 NA NA
## 12377 NA NA
## 12378 NA NA
## 12379 NA NA
## 12380 NA NA
## 12381 NA NA
## 12382 NA NA
## 12383 NA NA
## 12384 NA NA
## 12385 NA NA
## 12386 NA NA
## 12387 NA NA
## 12388 NA NA
## 12389 NA NA
## 12390 NA NA
## 12391 3.463 31.421
## 12392 3.463 31.421
## 12393 3.463 31.421
## 12394 3.463 31.421
## 12395 3.463 31.421
## 12396 3.463 31.421
## 12397 NA NA
## 12398 NA NA
## 12399 NA NA
## 12400 NA NA
## 12401 NA NA
## 12402 NA NA
## 12403 NA NA
## 12404 NA NA
## 12405 NA NA
## 12406 NA NA
## 12407 NA NA
## 12408 NA NA
## 12409 14.992 51.428
## 12410 14.992 51.428
## 12411 14.992 51.428
## 12412 14.992 51.428
## 12413 14.992 51.428
## 12414 14.992 51.428
## 12415 NA NA
## 12416 NA NA
## 12417 NA NA
## 12418 NA NA
## 12419 NA NA
## 12420 NA NA
## 12421 NA NA
## 12422 NA NA
## 12423 NA NA
## 12424 NA NA
## 12425 NA NA
## 12426 NA NA
## 12427 18.525 29.548
## 12428 18.525 29.548
## 12429 18.525 29.548
## 12430 18.525 29.548
## 12431 18.525 29.548
## 12432 18.525 29.548
## 12433 NA NA
## 12434 NA NA
## 12435 NA NA
## 12436 NA NA
## 12437 NA NA
## 12438 NA NA
## 12439 NA NA
## 12440 NA NA
## 12441 NA NA
## 12442 NA NA
## 12443 NA NA
## 12444 NA NA
## 12445 NA NA
## 12446 NA NA
## 12447 NA NA
## 12448 NA NA
## 12449 NA NA
## 12450 NA NA
## 12451 NA NA
## 12452 NA NA
## 12453 NA NA
## 12454 NA NA
## 12455 NA NA
## 12456 NA NA
## 12457 NA NA
## 12458 NA NA
## 12459 NA NA
## 12460 NA NA
## 12461 NA NA
## 12462 NA NA
## 12463 NA NA
## 12464 NA NA
## 12465 NA NA
## 12466 NA NA
## 12467 NA NA
## 12468 NA NA
## 12469 NA NA
## 12470 NA NA
## 12471 NA NA
## 12472 NA NA
## 12473 NA NA
## 12474 NA NA
## 12475 NA NA
## 12476 NA NA
## 12477 NA NA
## 12478 NA NA
## 12479 NA NA
## 12480 NA NA
## 12481 NA NA
## 12482 NA NA
## 12483 NA NA
## 12484 NA NA
## 12485 NA NA
## 12486 NA NA
## 12487 NA NA
## 12488 NA NA
## 12489 NA NA
## 12490 NA NA
## 12491 NA NA
## 12492 NA NA
## 12493 NA NA
## 12494 NA NA
## 12495 NA NA
## 12496 NA NA
## 12497 NA NA
## 12498 NA NA
## 12499 26.115 49.772
## V1.1_C_TIME_P1_First.Click V1.1_C_TIME_P1_Last.Click
## 1 NA NA
## 2 NA NA
## 3 NA NA
## 4 NA NA
## 5 NA NA
## 6 NA NA
## 7 NA NA
## 8 NA NA
## 9 NA NA
## 10 NA NA
## 11 NA NA
## 12 NA NA
## 13 NA NA
## 14 NA NA
## 15 NA NA
## 16 NA NA
## 17 NA NA
## 18 NA NA
## 19 0.954 27.824
## 20 0.954 27.824
## 21 0.954 27.824
## 22 0.954 27.824
## 23 0.954 27.824
## 24 0.954 27.824
## 25 NA NA
## 26 NA NA
## 27 NA NA
## 28 NA NA
## 29 NA NA
## 30 NA NA
## 31 19.675 35.481
## 32 19.675 35.481
## 33 19.675 35.481
## 34 19.675 35.481
## 35 19.675 35.481
## 36 19.675 35.481
## 37 NA NA
## 38 NA NA
## 39 NA NA
## 40 NA NA
## 41 NA NA
## 42 NA NA
## 43 20.371 29.035
## 44 20.371 29.035
## 45 20.371 29.035
## 46 20.371 29.035
## 47 20.371 29.035
## 48 20.371 29.035
## 49 1.477 39.206
## 50 1.477 39.206
## 51 1.477 39.206
## 52 1.477 39.206
## 53 1.477 39.206
## 54 1.477 39.206
## 55 NA NA
## 56 NA NA
## 57 NA NA
## 58 NA NA
## 59 NA NA
## 60 NA NA
## 61 29.428 64.361
## 62 29.428 64.361
## 63 29.428 64.361
## 64 29.428 64.361
## 65 29.428 64.361
## 66 29.428 64.361
## 67 NA NA
## 68 NA NA
## 69 NA NA
## 70 NA NA
## 71 NA NA
## 72 NA NA
## 73 9.549 62.561
## 74 9.549 62.561
## 75 9.549 62.561
## 76 9.549 62.561
## 77 9.549 62.561
## 78 9.549 62.561
## 79 NA NA
## 80 NA NA
## 81 NA NA
## 82 NA NA
## 83 NA NA
## 84 NA NA
## 85 NA NA
## 86 NA NA
## 87 NA NA
## 88 NA NA
## 89 NA NA
## 90 NA NA
## 91 NA NA
## 92 NA NA
## 93 NA NA
## 94 NA NA
## 95 NA NA
## 96 NA NA
## 97 NA NA
## 98 NA NA
## 99 NA NA
## 100 NA NA
## 101 NA NA
## 102 NA NA
## 103 NA NA
## 104 NA NA
## 105 NA NA
## 106 NA NA
## 107 NA NA
## 108 NA NA
## 109 NA NA
## 110 NA NA
## 111 NA NA
## 112 NA NA
## 113 NA NA
## 114 NA NA
## 115 NA NA
## 116 NA NA
## 117 NA NA
## 118 NA NA
## 119 NA NA
## 120 NA NA
## 121 39.406 54.366
## 122 39.406 54.366
## 123 39.406 54.366
## 124 39.406 54.366
## 125 39.406 54.366
## 126 39.406 54.366
## 127 NA NA
## 128 NA NA
## 129 NA NA
## 130 NA NA
## 131 NA NA
## 132 NA NA
## 133 NA NA
## 134 NA NA
## 135 NA NA
## 136 NA NA
## 137 NA NA
## 138 NA NA
## 139 NA NA
## 140 NA NA
## 141 NA NA
## 142 NA NA
## 143 NA NA
## 144 NA NA
## 145 NA NA
## 146 NA NA
## 147 NA NA
## 148 NA NA
## 149 NA NA
## 150 NA NA
## 151 NA NA
## 152 NA NA
## 153 NA NA
## 154 NA NA
## 155 NA NA
## 156 NA NA
## 157 NA NA
## 158 NA NA
## 159 NA NA
## 160 NA NA
## 161 NA NA
## 162 NA NA
## 163 NA NA
## 164 NA NA
## 165 NA NA
## 166 NA NA
## 167 NA NA
## 168 NA NA
## 169 16.278 41.912
## 170 16.278 41.912
## 171 16.278 41.912
## 172 16.278 41.912
## 173 16.278 41.912
## 174 16.278 41.912
## 175 NA NA
## 176 NA NA
## 177 NA NA
## 178 NA NA
## 179 NA NA
## 180 NA NA
## 181 NA NA
## 182 NA NA
## 183 NA NA
## 184 NA NA
## 185 NA NA
## 186 NA NA
## 187 NA NA
## 188 NA NA
## 189 NA NA
## 190 NA NA
## 191 NA NA
## 192 NA NA
## 193 NA NA
## 194 NA NA
## 195 NA NA
## 196 NA NA
## 197 NA NA
## 198 NA NA
## 199 NA NA
## 200 NA NA
## 201 NA NA
## 202 NA NA
## 203 NA NA
## 204 NA NA
## 205 NA NA
## 206 NA NA
## 207 NA NA
## 208 NA NA
## 209 NA NA
## 210 NA NA
## 211 NA NA
## 212 NA NA
## 213 NA NA
## 214 NA NA
## 215 NA NA
## 216 NA NA
## 217 NA NA
## 218 NA NA
## 219 NA NA
## 220 NA NA
## 221 NA NA
## 222 NA NA
## 223 NA NA
## 224 NA NA
## 225 NA NA
## 226 NA NA
## 227 NA NA
## 228 NA NA
## 229 NA NA
## 230 NA NA
## 231 NA NA
## 232 NA NA
## 233 NA NA
## 234 NA NA
## 235 5.367 32.878
## 236 5.367 32.878
## 237 5.367 32.878
## 238 5.367 32.878
## 239 5.367 32.878
## 240 5.367 32.878
## 241 NA NA
## 242 NA NA
## 243 NA NA
## 244 NA NA
## 245 NA NA
## 246 NA NA
## 247 NA NA
## 248 NA NA
## 249 NA NA
## 250 NA NA
## 251 NA NA
## 252 NA NA
## 253 NA NA
## 254 NA NA
## 255 NA NA
## 256 NA NA
## 257 NA NA
## 258 NA NA
## 259 15.815 52.410
## 260 15.815 52.410
## 261 15.815 52.410
## 262 15.815 52.410
## 263 15.815 52.410
## 264 15.815 52.410
## 265 NA NA
## 266 NA NA
## 267 NA NA
## 268 NA NA
## 269 NA NA
## 270 NA NA
## 271 NA NA
## 272 NA NA
## 273 NA NA
## 274 NA NA
## 275 NA NA
## 276 NA NA
## 277 NA NA
## 278 NA NA
## 279 NA NA
## 280 NA NA
## 281 NA NA
## 282 NA NA
## 283 NA NA
## 284 NA NA
## 285 NA NA
## 286 NA NA
## 287 NA NA
## 288 NA NA
## 289 10.594 22.740
## 290 10.594 22.740
## 291 10.594 22.740
## 292 10.594 22.740
## 293 10.594 22.740
## 294 10.594 22.740
## 295 16.337 26.353
## 296 16.337 26.353
## 297 16.337 26.353
## 298 16.337 26.353
## 299 16.337 26.353
## 300 16.337 26.353
## 301 NA NA
## 302 NA NA
## 303 NA NA
## 304 NA NA
## 305 NA NA
## 306 NA NA
## 307 NA NA
## 308 NA NA
## 309 NA NA
## 310 NA NA
## 311 NA NA
## 312 NA NA
## 313 NA NA
## 314 NA NA
## 315 NA NA
## 316 NA NA
## 317 NA NA
## 318 NA NA
## 319 NA NA
## 320 NA NA
## 321 NA NA
## 322 NA NA
## 323 NA NA
## 324 NA NA
## 325 25.433 51.848
## 326 25.433 51.848
## 327 25.433 51.848
## 328 25.433 51.848
## 329 25.433 51.848
## 330 25.433 51.848
## 331 12.712 43.632
## 332 12.712 43.632
## 333 12.712 43.632
## 334 12.712 43.632
## 335 12.712 43.632
## 336 12.712 43.632
## 337 NA NA
## 338 NA NA
## 339 NA NA
## 340 NA NA
## 341 NA NA
## 342 NA NA
## 343 NA NA
## 344 NA NA
## 345 NA NA
## 346 NA NA
## 347 NA NA
## 348 NA NA
## 349 NA NA
## 350 NA NA
## 351 NA NA
## 352 NA NA
## 353 NA NA
## 354 NA NA
## 355 NA NA
## 356 NA NA
## 357 NA NA
## 358 NA NA
## 359 NA NA
## 360 NA NA
## 361 27.419 43.501
## 362 27.419 43.501
## 363 27.419 43.501
## 364 27.419 43.501
## 365 27.419 43.501
## 366 27.419 43.501
## 367 NA NA
## 368 NA NA
## 369 NA NA
## 370 NA NA
## 371 NA NA
## 372 NA NA
## 373 NA NA
## 374 NA NA
## 375 NA NA
## 376 NA NA
## 377 NA NA
## 378 NA NA
## 379 NA NA
## 380 NA NA
## 381 NA NA
## 382 NA NA
## 383 NA NA
## 384 NA NA
## 385 17.880 27.600
## 386 17.880 27.600
## 387 17.880 27.600
## 388 17.880 27.600
## 389 17.880 27.600
## 390 17.880 27.600
## 391 NA NA
## 392 NA NA
## 393 NA NA
## 394 NA NA
## 395 NA NA
## 396 NA NA
## 397 13.166 32.893
## 398 13.166 32.893
## 399 13.166 32.893
## 400 13.166 32.893
## 401 13.166 32.893
## 402 13.166 32.893
## 403 NA NA
## 404 NA NA
## 405 NA NA
## 406 NA NA
## 407 NA NA
## 408 NA NA
## 409 NA NA
## 410 NA NA
## 411 NA NA
## 412 NA NA
## 413 NA NA
## 414 NA NA
## 415 NA NA
## 416 NA NA
## 417 NA NA
## 418 NA NA
## 419 NA NA
## 420 NA NA
## 421 NA NA
## 422 NA NA
## 423 NA NA
## 424 NA NA
## 425 NA NA
## 426 NA NA
## 427 NA NA
## 428 NA NA
## 429 NA NA
## 430 NA NA
## 431 NA NA
## 432 NA NA
## 433 NA NA
## 434 NA NA
## 435 NA NA
## 436 NA NA
## 437 NA NA
## 438 NA NA
## 439 NA NA
## 440 NA NA
## 441 NA NA
## 442 NA NA
## 443 NA NA
## 444 NA NA
## 445 NA NA
## 446 NA NA
## 447 NA NA
## 448 NA NA
## 449 NA NA
## 450 NA NA
## 451 1.359 28.999
## 452 1.359 28.999
## 453 1.359 28.999
## 454 1.359 28.999
## 455 1.359 28.999
## 456 1.359 28.999
## 457 NA NA
## 458 NA NA
## 459 NA NA
## 460 NA NA
## 461 NA NA
## 462 NA NA
## 463 NA NA
## 464 NA NA
## 465 NA NA
## 466 NA NA
## 467 NA NA
## 468 NA NA
## 469 NA NA
## 470 NA NA
## 471 NA NA
## 472 NA NA
## 473 NA NA
## 474 NA NA
## 475 NA NA
## 476 NA NA
## 477 NA NA
## 478 NA NA
## 479 NA NA
## 480 NA NA
## 481 33.323 53.431
## 482 33.323 53.431
## 483 33.323 53.431
## 484 33.323 53.431
## 485 33.323 53.431
## 486 33.323 53.431
## 487 27.064 51.157
## 488 27.064 51.157
## 489 27.064 51.157
## 490 27.064 51.157
## 491 27.064 51.157
## 492 27.064 51.157
## 493 NA NA
## 494 NA NA
## 495 NA NA
## 496 NA NA
## 497 NA NA
## 498 NA NA
## 499 NA NA
## 500 NA NA
## 501 NA NA
## 502 NA NA
## 503 NA NA
## 504 NA NA
## 505 18.962 76.501
## 506 18.962 76.501
## 507 18.962 76.501
## 508 18.962 76.501
## 509 18.962 76.501
## 510 18.962 76.501
## 511 NA NA
## 512 NA NA
## 513 NA NA
## 514 NA NA
## 515 NA NA
## 516 NA NA
## 517 14.345 57.395
## 518 14.345 57.395
## 519 14.345 57.395
## 520 14.345 57.395
## 521 14.345 57.395
## 522 14.345 57.395
## 523 NA NA
## 524 NA NA
## 525 NA NA
## 526 NA NA
## 527 NA NA
## 528 NA NA
## 529 9.850 46.194
## 530 9.850 46.194
## 531 9.850 46.194
## 532 9.850 46.194
## 533 9.850 46.194
## 534 9.850 46.194
## 535 31.410 51.453
## 536 31.410 51.453
## 537 31.410 51.453
## 538 31.410 51.453
## 539 31.410 51.453
## 540 31.410 51.453
## 541 NA NA
## 542 NA NA
## 543 NA NA
## 544 NA NA
## 545 NA NA
## 546 NA NA
## 547 NA NA
## 548 NA NA
## 549 NA NA
## 550 NA NA
## 551 NA NA
## 552 NA NA
## 553 70.726 106.612
## 554 70.726 106.612
## 555 70.726 106.612
## 556 70.726 106.612
## 557 70.726 106.612
## 558 70.726 106.612
## 559 NA NA
## 560 NA NA
## 561 NA NA
## 562 NA NA
## 563 NA NA
## 564 NA NA
## 565 15.636 34.179
## 566 15.636 34.179
## 567 15.636 34.179
## 568 15.636 34.179
## 569 15.636 34.179
## 570 15.636 34.179
## 571 19.530 39.333
## 572 19.530 39.333
## 573 19.530 39.333
## 574 19.530 39.333
## 575 19.530 39.333
## 576 19.530 39.333
## 577 10.815 52.836
## 578 10.815 52.836
## 579 10.815 52.836
## 580 10.815 52.836
## 581 10.815 52.836
## 582 10.815 52.836
## 583 NA NA
## 584 NA NA
## 585 NA NA
## 586 NA NA
## 587 NA NA
## 588 NA NA
## 589 NA NA
## 590 NA NA
## 591 NA NA
## 592 NA NA
## 593 NA NA
## 594 NA NA
## 595 NA NA
## 596 NA NA
## 597 NA NA
## 598 NA NA
## 599 NA NA
## 600 NA NA
## 601 41.038 82.574
## 602 41.038 82.574
## 603 41.038 82.574
## 604 41.038 82.574
## 605 41.038 82.574
## 606 41.038 82.574
## 607 NA NA
## 608 NA NA
## 609 NA NA
## 610 NA NA
## 611 NA NA
## 612 NA NA
## 613 NA NA
## 614 NA NA
## 615 NA NA
## 616 NA NA
## 617 NA NA
## 618 NA NA
## 619 NA NA
## 620 NA NA
## 621 NA NA
## 622 NA NA
## 623 NA NA
## 624 NA NA
## 625 NA NA
## 626 NA NA
## 627 NA NA
## 628 NA NA
## 629 NA NA
## 630 NA NA
## 631 NA NA
## 632 NA NA
## 633 NA NA
## 634 NA NA
## 635 NA NA
## 636 NA NA
## 637 25.135 52.580
## 638 25.135 52.580
## 639 25.135 52.580
## 640 25.135 52.580
## 641 25.135 52.580
## 642 25.135 52.580
## 643 27.030 44.595
## 644 27.030 44.595
## 645 27.030 44.595
## 646 27.030 44.595
## 647 27.030 44.595
## 648 27.030 44.595
## 649 NA NA
## 650 NA NA
## 651 NA NA
## 652 NA NA
## 653 NA NA
## 654 NA NA
## 655 76.434 113.426
## 656 76.434 113.426
## 657 76.434 113.426
## 658 76.434 113.426
## 659 76.434 113.426
## 660 76.434 113.426
## 661 10.438 32.527
## 662 10.438 32.527
## 663 10.438 32.527
## 664 10.438 32.527
## 665 10.438 32.527
## 666 10.438 32.527
## 667 85.478 123.152
## 668 85.478 123.152
## 669 85.478 123.152
## 670 85.478 123.152
## 671 85.478 123.152
## 672 85.478 123.152
## 673 NA NA
## 674 NA NA
## 675 NA NA
## 676 NA NA
## 677 NA NA
## 678 NA NA
## 679 20.090 52.510
## 680 20.090 52.510
## 681 20.090 52.510
## 682 20.090 52.510
## 683 20.090 52.510
## 684 20.090 52.510
## 685 NA NA
## 686 NA NA
## 687 NA NA
## 688 NA NA
## 689 NA NA
## 690 NA NA
## 691 NA NA
## 692 NA NA
## 693 NA NA
## 694 NA NA
## 695 NA NA
## 696 NA NA
## 697 NA NA
## 698 NA NA
## 699 NA NA
## 700 NA NA
## 701 NA NA
## 702 NA NA
## 703 NA NA
## 704 NA NA
## 705 NA NA
## 706 NA NA
## 707 NA NA
## 708 NA NA
## 709 NA NA
## 710 NA NA
## 711 NA NA
## 712 NA NA
## 713 NA NA
## 714 NA NA
## 715 NA NA
## 716 NA NA
## 717 NA NA
## 718 NA NA
## 719 NA NA
## 720 NA NA
## 721 NA NA
## 722 NA NA
## 723 NA NA
## 724 NA NA
## 725 NA NA
## 726 NA NA
## 727 9.365 19.354
## 728 9.365 19.354
## 729 9.365 19.354
## 730 9.365 19.354
## 731 9.365 19.354
## 732 9.365 19.354
## 733 NA NA
## 734 NA NA
## 735 NA NA
## 736 NA NA
## 737 NA NA
## 738 NA NA
## 739 NA NA
## 740 NA NA
## 741 NA NA
## 742 NA NA
## 743 NA NA
## 744 NA NA
## 745 NA NA
## 746 NA NA
## 747 NA NA
## 748 NA NA
## 749 NA NA
## 750 NA NA
## 751 NA NA
## 752 NA NA
## 753 NA NA
## 754 NA NA
## 755 NA NA
## 756 NA NA
## 757 NA NA
## 758 NA NA
## 759 NA NA
## 760 NA NA
## 761 NA NA
## 762 NA NA
## 763 13.600 30.312
## 764 13.600 30.312
## 765 13.600 30.312
## 766 13.600 30.312
## 767 13.600 30.312
## 768 13.600 30.312
## 769 NA NA
## 770 NA NA
## 771 NA NA
## 772 NA NA
## 773 NA NA
## 774 NA NA
## 775 NA NA
## 776 NA NA
## 777 NA NA
## 778 NA NA
## 779 NA NA
## 780 NA NA
## 781 NA NA
## 782 NA NA
## 783 NA NA
## 784 NA NA
## 785 NA NA
## 786 NA NA
## 787 NA NA
## 788 NA NA
## 789 NA NA
## 790 NA NA
## 791 NA NA
## 792 NA NA
## 793 NA NA
## 794 NA NA
## 795 NA NA
## 796 NA NA
## 797 NA NA
## 798 NA NA
## 799 NA NA
## 800 NA NA
## 801 NA NA
## 802 NA NA
## 803 NA NA
## 804 NA NA
## 805 NA NA
## 806 NA NA
## 807 NA NA
## 808 NA NA
## 809 NA NA
## 810 NA NA
## 811 NA NA
## 812 NA NA
## 813 NA NA
## 814 NA NA
## 815 NA NA
## 816 NA NA
## 817 6.635 28.101
## 818 6.635 28.101
## 819 6.635 28.101
## 820 6.635 28.101
## 821 6.635 28.101
## 822 6.635 28.101
## 823 NA NA
## 824 NA NA
## 825 NA NA
## 826 NA NA
## 827 NA NA
## 828 NA NA
## 829 NA NA
## 830 NA NA
## 831 NA NA
## 832 NA NA
## 833 NA NA
## 834 NA NA
## 835 NA NA
## 836 NA NA
## 837 NA NA
## 838 NA NA
## 839 NA NA
## 840 NA NA
## 841 23.314 92.397
## 842 23.314 92.397
## 843 23.314 92.397
## 844 23.314 92.397
## 845 23.314 92.397
## 846 23.314 92.397
## 847 NA NA
## 848 NA NA
## 849 NA NA
## 850 NA NA
## 851 NA NA
## 852 NA NA
## 853 NA NA
## 854 NA NA
## 855 NA NA
## 856 NA NA
## 857 NA NA
## 858 NA NA
## 859 NA NA
## 860 NA NA
## 861 NA NA
## 862 NA NA
## 863 NA NA
## 864 NA NA
## 865 11.016 103.732
## 866 11.016 103.732
## 867 11.016 103.732
## 868 11.016 103.732
## 869 11.016 103.732
## 870 11.016 103.732
## 871 NA NA
## 872 NA NA
## 873 NA NA
## 874 NA NA
## 875 NA NA
## 876 NA NA
## 877 NA NA
## 878 NA NA
## 879 NA NA
## 880 NA NA
## 881 NA NA
## 882 NA NA
## 883 NA NA
## 884 NA NA
## 885 NA NA
## 886 NA NA
## 887 NA NA
## 888 NA NA
## 889 NA NA
## 890 NA NA
## 891 NA NA
## 892 NA NA
## 893 NA NA
## 894 NA NA
## 895 NA NA
## 896 NA NA
## 897 NA NA
## 898 NA NA
## 899 NA NA
## 900 NA NA
## 901 NA NA
## 902 NA NA
## 903 NA NA
## 904 NA NA
## 905 NA NA
## 906 NA NA
## 907 NA NA
## 908 NA NA
## 909 NA NA
## 910 NA NA
## 911 NA NA
## 912 NA NA
## 913 4.436 67.744
## 914 4.436 67.744
## 915 4.436 67.744
## 916 4.436 67.744
## 917 4.436 67.744
## 918 4.436 67.744
## 919 NA NA
## 920 NA NA
## 921 NA NA
## 922 NA NA
## 923 NA NA
## 924 NA NA
## 925 NA NA
## 926 NA NA
## 927 NA NA
## 928 NA NA
## 929 NA NA
## 930 NA NA
## 931 NA NA
## 932 NA NA
## 933 NA NA
## 934 NA NA
## 935 NA NA
## 936 NA NA
## 937 NA NA
## 938 NA NA
## 939 NA NA
## 940 NA NA
## 941 NA NA
## 942 NA NA
## 943 NA NA
## 944 NA NA
## 945 NA NA
## 946 NA NA
## 947 NA NA
## 948 NA NA
## 949 NA NA
## 950 NA NA
## 951 NA NA
## 952 NA NA
## 953 NA NA
## 954 NA NA
## 955 NA NA
## 956 NA NA
## 957 NA NA
## 958 NA NA
## 959 NA NA
## 960 NA NA
## 961 NA NA
## 962 NA NA
## 963 NA NA
## 964 NA NA
## 965 NA NA
## 966 NA NA
## 967 6.911 15.924
## 968 6.911 15.924
## 969 6.911 15.924
## 970 6.911 15.924
## 971 6.911 15.924
## 972 6.911 15.924
## 973 11.219 21.396
## 974 11.219 21.396
## 975 11.219 21.396
## 976 11.219 21.396
## 977 11.219 21.396
## 978 11.219 21.396
## 979 NA NA
## 980 NA NA
## 981 NA NA
## 982 NA NA
## 983 NA NA
## 984 NA NA
## 985 NA NA
## 986 NA NA
## 987 NA NA
## 988 NA NA
## 989 NA NA
## 990 NA NA
## 991 NA NA
## 992 NA NA
## 993 NA NA
## 994 NA NA
## 995 NA NA
## 996 NA NA
## 997 NA NA
## 998 NA NA
## 999 NA NA
## 1000 NA NA
## 1001 NA NA
## 1002 NA NA
## 1003 NA NA
## 1004 NA NA
## 1005 NA NA
## 1006 NA NA
## 1007 NA NA
## 1008 NA NA
## 1009 26.368 73.542
## 1010 26.368 73.542
## 1011 26.368 73.542
## 1012 26.368 73.542
## 1013 26.368 73.542
## 1014 26.368 73.542
## 1015 NA NA
## 1016 NA NA
## 1017 NA NA
## 1018 NA NA
## 1019 NA NA
## 1020 NA NA
## 1021 NA NA
## 1022 NA NA
## 1023 NA NA
## 1024 NA NA
## 1025 NA NA
## 1026 NA NA
## 1027 NA NA
## 1028 NA NA
## 1029 NA NA
## 1030 NA NA
## 1031 NA NA
## 1032 NA NA
## 1033 NA NA
## 1034 NA NA
## 1035 NA NA
## 1036 NA NA
## 1037 NA NA
## 1038 NA NA
## 1039 NA NA
## 1040 NA NA
## 1041 NA NA
## 1042 NA NA
## 1043 NA NA
## 1044 NA NA
## 1045 NA NA
## 1046 NA NA
## 1047 NA NA
## 1048 NA NA
## 1049 NA NA
## 1050 NA NA
## 1051 NA NA
## 1052 NA NA
## 1053 NA NA
## 1054 NA NA
## 1055 NA NA
## 1056 NA NA
## 1057 NA NA
## 1058 NA NA
## 1059 NA NA
## 1060 NA NA
## 1061 NA NA
## 1062 NA NA
## 1063 NA NA
## 1064 NA NA
## 1065 NA NA
## 1066 NA NA
## 1067 NA NA
## 1068 NA NA
## 1069 NA NA
## 1070 NA NA
## 1071 NA NA
## 1072 NA NA
## 1073 NA NA
## 1074 NA NA
## 1075 NA NA
## 1076 NA NA
## 1077 NA NA
## 1078 NA NA
## 1079 NA NA
## 1080 NA NA
## 1081 21.715 52.377
## 1082 21.715 52.377
## 1083 21.715 52.377
## 1084 21.715 52.377
## 1085 21.715 52.377
## 1086 21.715 52.377
## 1087 NA NA
## 1088 NA NA
## 1089 NA NA
## 1090 NA NA
## 1091 NA NA
## 1092 NA NA
## 1093 3.537 54.259
## 1094 3.537 54.259
## 1095 3.537 54.259
## 1096 3.537 54.259
## 1097 3.537 54.259
## 1098 3.537 54.259
## 1099 36.001 67.957
## 1100 36.001 67.957
## 1101 36.001 67.957
## 1102 36.001 67.957
## 1103 36.001 67.957
## 1104 36.001 67.957
## 1105 3.122 40.446
## 1106 3.122 40.446
## 1107 3.122 40.446
## 1108 3.122 40.446
## 1109 3.122 40.446
## 1110 3.122 40.446
## 1111 24.401 50.753
## 1112 24.401 50.753
## 1113 24.401 50.753
## 1114 24.401 50.753
## 1115 24.401 50.753
## 1116 24.401 50.753
## 1117 NA NA
## 1118 NA NA
## 1119 NA NA
## 1120 NA NA
## 1121 NA NA
## 1122 NA NA
## 1123 13.091 24.273
## 1124 13.091 24.273
## 1125 13.091 24.273
## 1126 13.091 24.273
## 1127 13.091 24.273
## 1128 13.091 24.273
## 1129 NA NA
## 1130 NA NA
## 1131 NA NA
## 1132 NA NA
## 1133 NA NA
## 1134 NA NA
## 1135 NA NA
## 1136 NA NA
## 1137 NA NA
## 1138 NA NA
## 1139 NA NA
## 1140 NA NA
## 1141 NA NA
## 1142 NA NA
## 1143 NA NA
## 1144 NA NA
## 1145 NA NA
## 1146 NA NA
## 1147 NA NA
## 1148 NA NA
## 1149 NA NA
## 1150 NA NA
## 1151 NA NA
## 1152 NA NA
## 1153 NA NA
## 1154 NA NA
## 1155 NA NA
## 1156 NA NA
## 1157 NA NA
## 1158 NA NA
## 1159 NA NA
## 1160 NA NA
## 1161 NA NA
## 1162 NA NA
## 1163 NA NA
## 1164 NA NA
## 1165 NA NA
## 1166 NA NA
## 1167 NA NA
## 1168 NA NA
## 1169 NA NA
## 1170 NA NA
## 1171 3.920 78.182
## 1172 3.920 78.182
## 1173 3.920 78.182
## 1174 3.920 78.182
## 1175 3.920 78.182
## 1176 3.920 78.182
## 1177 NA NA
## 1178 NA NA
## 1179 NA NA
## 1180 NA NA
## 1181 NA NA
## 1182 NA NA
## 1183 NA NA
## 1184 NA NA
## 1185 NA NA
## 1186 NA NA
## 1187 NA NA
## 1188 NA NA
## 1189 NA NA
## 1190 NA NA
## 1191 NA NA
## 1192 NA NA
## 1193 NA NA
## 1194 NA NA
## 1195 NA NA
## 1196 NA NA
## 1197 NA NA
## 1198 NA NA
## 1199 NA NA
## 1200 NA NA
## 1201 NA NA
## 1202 NA NA
## 1203 NA NA
## 1204 NA NA
## 1205 NA NA
## 1206 NA NA
## 1207 NA NA
## 1208 NA NA
## 1209 NA NA
## 1210 NA NA
## 1211 NA NA
## 1212 NA NA
## 1213 44.062 70.548
## 1214 44.062 70.548
## 1215 44.062 70.548
## 1216 44.062 70.548
## 1217 44.062 70.548
## 1218 44.062 70.548
## 1219 NA NA
## 1220 NA NA
## 1221 NA NA
## 1222 NA NA
## 1223 NA NA
## 1224 NA NA
## 1225 NA NA
## 1226 NA NA
## 1227 NA NA
## 1228 NA NA
## 1229 NA NA
## 1230 NA NA
## 1231 NA NA
## 1232 NA NA
## 1233 NA NA
## 1234 NA NA
## 1235 NA NA
## 1236 NA NA
## 1237 NA NA
## 1238 NA NA
## 1239 NA NA
## 1240 NA NA
## 1241 NA NA
## 1242 NA NA
## 1243 NA NA
## 1244 NA NA
## 1245 NA NA
## 1246 NA NA
## 1247 NA NA
## 1248 NA NA
## 1249 39.017 91.691
## 1250 39.017 91.691
## 1251 39.017 91.691
## 1252 39.017 91.691
## 1253 39.017 91.691
## 1254 39.017 91.691
## 1255 NA NA
## 1256 NA NA
## 1257 NA NA
## 1258 NA NA
## 1259 NA NA
## 1260 NA NA
## 1261 75.615 168.370
## 1262 75.615 168.370
## 1263 75.615 168.370
## 1264 75.615 168.370
## 1265 75.615 168.370
## 1266 75.615 168.370
## 1267 NA NA
## 1268 NA NA
## 1269 NA NA
## 1270 NA NA
## 1271 NA NA
## 1272 NA NA
## 1273 10.782 25.378
## 1274 10.782 25.378
## 1275 10.782 25.378
## 1276 10.782 25.378
## 1277 10.782 25.378
## 1278 10.782 25.378
## 1279 NA NA
## 1280 NA NA
## 1281 NA NA
## 1282 NA NA
## 1283 NA NA
## 1284 NA NA
## 1285 NA NA
## 1286 NA NA
## 1287 NA NA
## 1288 NA NA
## 1289 NA NA
## 1290 NA NA
## 1291 4.466 99.071
## 1292 4.466 99.071
## 1293 4.466 99.071
## 1294 4.466 99.071
## 1295 4.466 99.071
## 1296 4.466 99.071
## 1297 NA NA
## 1298 NA NA
## 1299 NA NA
## 1300 NA NA
## 1301 NA NA
## 1302 NA NA
## 1303 NA NA
## 1304 NA NA
## 1305 NA NA
## 1306 NA NA
## 1307 NA NA
## 1308 NA NA
## 1309 NA NA
## 1310 NA NA
## 1311 NA NA
## 1312 NA NA
## 1313 NA NA
## 1314 NA NA
## 1315 NA NA
## 1316 NA NA
## 1317 NA NA
## 1318 NA NA
## 1319 NA NA
## 1320 NA NA
## 1321 NA NA
## 1322 NA NA
## 1323 NA NA
## 1324 NA NA
## 1325 NA NA
## 1326 NA NA
## 1327 NA NA
## 1328 NA NA
## 1329 NA NA
## 1330 NA NA
## 1331 NA NA
## 1332 NA NA
## 1333 33.108 108.834
## 1334 33.108 108.834
## 1335 33.108 108.834
## 1336 33.108 108.834
## 1337 33.108 108.834
## 1338 33.108 108.834
## 1339 18.148 25.112
## 1340 18.148 25.112
## 1341 18.148 25.112
## 1342 18.148 25.112
## 1343 18.148 25.112
## 1344 18.148 25.112
## 1345 NA NA
## 1346 NA NA
## 1347 NA NA
## 1348 NA NA
## 1349 NA NA
## 1350 NA NA
## 1351 NA NA
## 1352 NA NA
## 1353 NA NA
## 1354 NA NA
## 1355 NA NA
## 1356 NA NA
## 1357 NA NA
## 1358 NA NA
## 1359 NA NA
## 1360 NA NA
## 1361 NA NA
## 1362 NA NA
## 1363 NA NA
## 1364 NA NA
## 1365 NA NA
## 1366 NA NA
## 1367 NA NA
## 1368 NA NA
## 1369 NA NA
## 1370 NA NA
## 1371 NA NA
## 1372 NA NA
## 1373 NA NA
## 1374 NA NA
## 1375 NA NA
## 1376 NA NA
## 1377 NA NA
## 1378 NA NA
## 1379 NA NA
## 1380 NA NA
## 1381 NA NA
## 1382 NA NA
## 1383 NA NA
## 1384 NA NA
## 1385 NA NA
## 1386 NA NA
## 1387 25.130 51.686
## 1388 25.130 51.686
## 1389 25.130 51.686
## 1390 25.130 51.686
## 1391 25.130 51.686
## 1392 25.130 51.686
## 1393 36.395 103.570
## 1394 36.395 103.570
## 1395 36.395 103.570
## 1396 36.395 103.570
## 1397 36.395 103.570
## 1398 36.395 103.570
## 1399 NA NA
## 1400 NA NA
## 1401 NA NA
## 1402 NA NA
## 1403 NA NA
## 1404 NA NA
## 1405 NA NA
## 1406 NA NA
## 1407 NA NA
## 1408 NA NA
## 1409 NA NA
## 1410 NA NA
## 1411 NA NA
## 1412 NA NA
## 1413 NA NA
## 1414 NA NA
## 1415 NA NA
## 1416 NA NA
## 1417 NA NA
## 1418 NA NA
## 1419 NA NA
## 1420 NA NA
## 1421 NA NA
## 1422 NA NA
## 1423 NA NA
## 1424 NA NA
## 1425 NA NA
## 1426 NA NA
## 1427 NA NA
## 1428 NA NA
## 1429 NA NA
## 1430 NA NA
## 1431 NA NA
## 1432 NA NA
## 1433 NA NA
## 1434 NA NA
## 1435 NA NA
## 1436 NA NA
## 1437 NA NA
## 1438 NA NA
## 1439 NA NA
## 1440 NA NA
## 1441 16.127 27.900
## 1442 16.127 27.900
## 1443 16.127 27.900
## 1444 16.127 27.900
## 1445 16.127 27.900
## 1446 16.127 27.900
## 1447 NA NA
## 1448 NA NA
## 1449 NA NA
## 1450 NA NA
## 1451 NA NA
## 1452 NA NA
## 1453 NA NA
## 1454 NA NA
## 1455 NA NA
## 1456 NA NA
## 1457 NA NA
## 1458 NA NA
## 1459 NA NA
## 1460 NA NA
## 1461 NA NA
## 1462 NA NA
## 1463 NA NA
## 1464 NA NA
## 1465 5.570 16.473
## 1466 5.570 16.473
## 1467 5.570 16.473
## 1468 5.570 16.473
## 1469 5.570 16.473
## 1470 5.570 16.473
## 1471 NA NA
## 1472 NA NA
## 1473 NA NA
## 1474 NA NA
## 1475 NA NA
## 1476 NA NA
## 1477 NA NA
## 1478 NA NA
## 1479 NA NA
## 1480 NA NA
## 1481 NA NA
## 1482 NA NA
## 1483 NA NA
## 1484 NA NA
## 1485 NA NA
## 1486 NA NA
## 1487 NA NA
## 1488 NA NA
## 1489 15.472 21.652
## 1490 15.472 21.652
## 1491 15.472 21.652
## 1492 15.472 21.652
## 1493 15.472 21.652
## 1494 15.472 21.652
## 1495 NA NA
## 1496 NA NA
## 1497 NA NA
## 1498 NA NA
## 1499 NA NA
## 1500 NA NA
## 1501 NA NA
## 1502 NA NA
## 1503 NA NA
## 1504 NA NA
## 1505 NA NA
## 1506 NA NA
## 1507 NA NA
## 1508 NA NA
## 1509 NA NA
## 1510 NA NA
## 1511 NA NA
## 1512 NA NA
## 1513 NA NA
## 1514 NA NA
## 1515 NA NA
## 1516 NA NA
## 1517 NA NA
## 1518 NA NA
## 1519 1.502 30.386
## 1520 1.502 30.386
## 1521 1.502 30.386
## 1522 1.502 30.386
## 1523 1.502 30.386
## 1524 1.502 30.386
## 1525 NA NA
## 1526 NA NA
## 1527 NA NA
## 1528 NA NA
## 1529 NA NA
## 1530 NA NA
## 1531 NA NA
## 1532 NA NA
## 1533 NA NA
## 1534 NA NA
## 1535 NA NA
## 1536 NA NA
## 1537 8.009 22.021
## 1538 8.009 22.021
## 1539 8.009 22.021
## 1540 8.009 22.021
## 1541 8.009 22.021
## 1542 8.009 22.021
## 1543 NA NA
## 1544 NA NA
## 1545 NA NA
## 1546 NA NA
## 1547 NA NA
## 1548 NA NA
## 1549 NA NA
## 1550 NA NA
## 1551 NA NA
## 1552 NA NA
## 1553 NA NA
## 1554 NA NA
## 1555 NA NA
## 1556 NA NA
## 1557 NA NA
## 1558 NA NA
## 1559 NA NA
## 1560 NA NA
## 1561 NA NA
## 1562 NA NA
## 1563 NA NA
## 1564 NA NA
## 1565 NA NA
## 1566 NA NA
## 1567 9.093 14.085
## 1568 9.093 14.085
## 1569 9.093 14.085
## 1570 9.093 14.085
## 1571 9.093 14.085
## 1572 9.093 14.085
## 1573 14.165 31.402
## 1574 14.165 31.402
## 1575 14.165 31.402
## 1576 14.165 31.402
## 1577 14.165 31.402
## 1578 14.165 31.402
## 1579 NA NA
## 1580 NA NA
## 1581 NA NA
## 1582 NA NA
## 1583 NA NA
## 1584 NA NA
## 1585 0.930 51.517
## 1586 0.930 51.517
## 1587 0.930 51.517
## 1588 0.930 51.517
## 1589 0.930 51.517
## 1590 0.930 51.517
## 1591 NA NA
## 1592 NA NA
## 1593 NA NA
## 1594 NA NA
## 1595 NA NA
## 1596 NA NA
## 1597 NA NA
## 1598 NA NA
## 1599 NA NA
## 1600 NA NA
## 1601 NA NA
## 1602 NA NA
## 1603 NA NA
## 1604 NA NA
## 1605 NA NA
## 1606 NA NA
## 1607 NA NA
## 1608 NA NA
## 1609 NA NA
## 1610 NA NA
## 1611 NA NA
## 1612 NA NA
## 1613 NA NA
## 1614 NA NA
## 1615 NA NA
## 1616 NA NA
## 1617 NA NA
## 1618 NA NA
## 1619 NA NA
## 1620 NA NA
## 1621 NA NA
## 1622 NA NA
## 1623 NA NA
## 1624 NA NA
## 1625 NA NA
## 1626 NA NA
## 1627 NA NA
## 1628 NA NA
## 1629 NA NA
## 1630 NA NA
## 1631 NA NA
## 1632 NA NA
## 1633 NA NA
## 1634 NA NA
## 1635 NA NA
## 1636 NA NA
## 1637 NA NA
## 1638 NA NA
## 1639 NA NA
## 1640 NA NA
## 1641 NA NA
## 1642 NA NA
## 1643 NA NA
## 1644 NA NA
## 1645 NA NA
## 1646 NA NA
## 1647 NA NA
## 1648 NA NA
## 1649 NA NA
## 1650 NA NA
## 1651 NA NA
## 1652 NA NA
## 1653 NA NA
## 1654 NA NA
## 1655 NA NA
## 1656 NA NA
## 1657 NA NA
## 1658 NA NA
## 1659 NA NA
## 1660 NA NA
## 1661 NA NA
## 1662 NA NA
## 1663 NA NA
## 1664 NA NA
## 1665 NA NA
## 1666 NA NA
## 1667 NA NA
## 1668 NA NA
## 1669 NA NA
## 1670 NA NA
## 1671 NA NA
## 1672 NA NA
## 1673 NA NA
## 1674 NA NA
## 1675 NA NA
## 1676 NA NA
## 1677 NA NA
## 1678 NA NA
## 1679 NA NA
## 1680 NA NA
## 1681 16.887 37.583
## 1682 16.887 37.583
## 1683 16.887 37.583
## 1684 16.887 37.583
## 1685 16.887 37.583
## 1686 16.887 37.583
## 1687 NA NA
## 1688 NA NA
## 1689 NA NA
## 1690 NA NA
## 1691 NA NA
## 1692 NA NA
## 1693 NA NA
## 1694 NA NA
## 1695 NA NA
## 1696 NA NA
## 1697 NA NA
## 1698 NA NA
## 1699 NA NA
## 1700 NA NA
## 1701 NA NA
## 1702 NA NA
## 1703 NA NA
## 1704 NA NA
## 1705 NA NA
## 1706 NA NA
## 1707 NA NA
## 1708 NA NA
## 1709 NA NA
## 1710 NA NA
## 1711 NA NA
## 1712 NA NA
## 1713 NA NA
## 1714 NA NA
## 1715 NA NA
## 1716 NA NA
## 1717 NA NA
## 1718 NA NA
## 1719 NA NA
## 1720 NA NA
## 1721 NA NA
## 1722 NA NA
## 1723 NA NA
## 1724 NA NA
## 1725 NA NA
## 1726 NA NA
## 1727 NA NA
## 1728 NA NA
## 1729 NA NA
## 1730 NA NA
## 1731 NA NA
## 1732 NA NA
## 1733 NA NA
## 1734 NA NA
## 1735 NA NA
## 1736 NA NA
## 1737 NA NA
## 1738 NA NA
## 1739 NA NA
## 1740 NA NA
## 1741 NA NA
## 1742 NA NA
## 1743 NA NA
## 1744 NA NA
## 1745 NA NA
## 1746 NA NA
## 1747 2.540 39.236
## 1748 2.540 39.236
## 1749 2.540 39.236
## 1750 2.540 39.236
## 1751 2.540 39.236
## 1752 2.540 39.236
## 1753 NA NA
## 1754 NA NA
## 1755 NA NA
## 1756 NA NA
## 1757 NA NA
## 1758 NA NA
## 1759 NA NA
## 1760 NA NA
## 1761 NA NA
## 1762 NA NA
## 1763 NA NA
## 1764 NA NA
## 1765 NA NA
## 1766 NA NA
## 1767 NA NA
## 1768 NA NA
## 1769 NA NA
## 1770 NA NA
## 1771 NA NA
## 1772 NA NA
## 1773 NA NA
## 1774 NA NA
## 1775 NA NA
## 1776 NA NA
## 1777 NA NA
## 1778 NA NA
## 1779 NA NA
## 1780 NA NA
## 1781 NA NA
## 1782 NA NA
## 1783 NA NA
## 1784 NA NA
## 1785 NA NA
## 1786 NA NA
## 1787 NA NA
## 1788 NA NA
## 1789 7.301 30.655
## 1790 7.301 30.655
## 1791 7.301 30.655
## 1792 7.301 30.655
## 1793 7.301 30.655
## 1794 7.301 30.655
## 1795 NA NA
## 1796 NA NA
## 1797 NA NA
## 1798 NA NA
## 1799 NA NA
## 1800 NA NA
## 1801 NA NA
## 1802 NA NA
## 1803 NA NA
## 1804 NA NA
## 1805 NA NA
## 1806 NA NA
## 1807 NA NA
## 1808 NA NA
## 1809 NA NA
## 1810 NA NA
## 1811 NA NA
## 1812 NA NA
## 1813 2.273 32.797
## 1814 2.273 32.797
## 1815 2.273 32.797
## 1816 2.273 32.797
## 1817 2.273 32.797
## 1818 2.273 32.797
## 1819 NA NA
## 1820 NA NA
## 1821 NA NA
## 1822 NA NA
## 1823 NA NA
## 1824 NA NA
## 1825 NA NA
## 1826 NA NA
## 1827 NA NA
## 1828 NA NA
## 1829 NA NA
## 1830 NA NA
## 1831 14.336 46.707
## 1832 14.336 46.707
## 1833 14.336 46.707
## 1834 14.336 46.707
## 1835 14.336 46.707
## 1836 14.336 46.707
## 1837 NA NA
## 1838 NA NA
## 1839 NA NA
## 1840 NA NA
## 1841 NA NA
## 1842 NA NA
## 1843 NA NA
## 1844 NA NA
## 1845 NA NA
## 1846 NA NA
## 1847 NA NA
## 1848 NA NA
## 1849 NA NA
## 1850 NA NA
## 1851 NA NA
## 1852 NA NA
## 1853 NA NA
## 1854 NA NA
## 1855 NA NA
## 1856 NA NA
## 1857 NA NA
## 1858 NA NA
## 1859 NA NA
## 1860 NA NA
## 1861 NA NA
## 1862 NA NA
## 1863 NA NA
## 1864 NA NA
## 1865 NA NA
## 1866 NA NA
## 1867 NA NA
## 1868 NA NA
## 1869 NA NA
## 1870 NA NA
## 1871 NA NA
## 1872 NA NA
## 1873 19.700 49.360
## 1874 19.700 49.360
## 1875 19.700 49.360
## 1876 19.700 49.360
## 1877 19.700 49.360
## 1878 19.700 49.360
## 1879 9.869 46.572
## 1880 9.869 46.572
## 1881 9.869 46.572
## 1882 9.869 46.572
## 1883 9.869 46.572
## 1884 9.869 46.572
## 1885 42.902 69.529
## 1886 42.902 69.529
## 1887 42.902 69.529
## 1888 42.902 69.529
## 1889 42.902 69.529
## 1890 42.902 69.529
## 1891 56.103 79.937
## 1892 56.103 79.937
## 1893 56.103 79.937
## 1894 56.103 79.937
## 1895 56.103 79.937
## 1896 56.103 79.937
## 1897 NA NA
## 1898 NA NA
## 1899 NA NA
## 1900 NA NA
## 1901 NA NA
## 1902 NA NA
## 1903 NA NA
## 1904 NA NA
## 1905 NA NA
## 1906 NA NA
## 1907 NA NA
## 1908 NA NA
## 1909 30.529 104.589
## 1910 30.529 104.589
## 1911 30.529 104.589
## 1912 30.529 104.589
## 1913 30.529 104.589
## 1914 30.529 104.589
## 1915 NA NA
## 1916 NA NA
## 1917 NA NA
## 1918 NA NA
## 1919 NA NA
## 1920 NA NA
## 1921 NA NA
## 1922 NA NA
## 1923 NA NA
## 1924 NA NA
## 1925 NA NA
## 1926 NA NA
## 1927 10.503 72.167
## 1928 10.503 72.167
## 1929 10.503 72.167
## 1930 10.503 72.167
## 1931 10.503 72.167
## 1932 10.503 72.167
## 1933 19.844 30.943
## 1934 19.844 30.943
## 1935 19.844 30.943
## 1936 19.844 30.943
## 1937 19.844 30.943
## 1938 19.844 30.943
## 1939 NA NA
## 1940 NA NA
## 1941 NA NA
## 1942 NA NA
## 1943 NA NA
## 1944 NA NA
## 1945 NA NA
## 1946 NA NA
## 1947 NA NA
## 1948 NA NA
## 1949 NA NA
## 1950 NA NA
## 1951 17.101 21.135
## 1952 17.101 21.135
## 1953 17.101 21.135
## 1954 17.101 21.135
## 1955 17.101 21.135
## 1956 17.101 21.135
## 1957 NA NA
## 1958 NA NA
## 1959 NA NA
## 1960 NA NA
## 1961 NA NA
## 1962 NA NA
## 1963 NA NA
## 1964 NA NA
## 1965 NA NA
## 1966 NA NA
## 1967 NA NA
## 1968 NA NA
## 1969 NA NA
## 1970 NA NA
## 1971 NA NA
## 1972 NA NA
## 1973 NA NA
## 1974 NA NA
## 1975 NA NA
## 1976 NA NA
## 1977 NA NA
## 1978 NA NA
## 1979 NA NA
## 1980 NA NA
## 1981 NA NA
## 1982 NA NA
## 1983 NA NA
## 1984 NA NA
## 1985 NA NA
## 1986 NA NA
## 1987 NA NA
## 1988 NA NA
## 1989 NA NA
## 1990 NA NA
## 1991 NA NA
## 1992 NA NA
## 1993 NA NA
## 1994 NA NA
## 1995 NA NA
## 1996 NA NA
## 1997 NA NA
## 1998 NA NA
## 1999 1.003 29.941
## 2000 1.003 29.941
## 2001 1.003 29.941
## 2002 1.003 29.941
## 2003 1.003 29.941
## 2004 1.003 29.941
## 2005 NA NA
## 2006 NA NA
## 2007 NA NA
## 2008 NA NA
## 2009 NA NA
## 2010 NA NA
## 2011 NA NA
## 2012 NA NA
## 2013 NA NA
## 2014 NA NA
## 2015 NA NA
## 2016 NA NA
## 2017 NA NA
## 2018 NA NA
## 2019 NA NA
## 2020 NA NA
## 2021 NA NA
## 2022 NA NA
## 2023 23.164 40.167
## 2024 23.164 40.167
## 2025 23.164 40.167
## 2026 23.164 40.167
## 2027 23.164 40.167
## 2028 23.164 40.167
## 2029 NA NA
## 2030 NA NA
## 2031 NA NA
## 2032 NA NA
## 2033 NA NA
## 2034 NA NA
## 2035 NA NA
## 2036 NA NA
## 2037 NA NA
## 2038 NA NA
## 2039 NA NA
## 2040 NA NA
## 2041 NA NA
## 2042 NA NA
## 2043 NA NA
## 2044 NA NA
## 2045 NA NA
## 2046 NA NA
## 2047 NA NA
## 2048 NA NA
## 2049 NA NA
## 2050 NA NA
## 2051 NA NA
## 2052 NA NA
## 2053 NA NA
## 2054 NA NA
## 2055 NA NA
## 2056 NA NA
## 2057 NA NA
## 2058 NA NA
## 2059 147.641 165.047
## 2060 147.641 165.047
## 2061 147.641 165.047
## 2062 147.641 165.047
## 2063 147.641 165.047
## 2064 147.641 165.047
## 2065 25.847 57.511
## 2066 25.847 57.511
## 2067 25.847 57.511
## 2068 25.847 57.511
## 2069 25.847 57.511
## 2070 25.847 57.511
## 2071 NA NA
## 2072 NA NA
## 2073 NA NA
## 2074 NA NA
## 2075 NA NA
## 2076 NA NA
## 2077 NA NA
## 2078 NA NA
## 2079 NA NA
## 2080 NA NA
## 2081 NA NA
## 2082 NA NA
## 2083 NA NA
## 2084 NA NA
## 2085 NA NA
## 2086 NA NA
## 2087 NA NA
## 2088 NA NA
## 2089 NA NA
## 2090 NA NA
## 2091 NA NA
## 2092 NA NA
## 2093 NA NA
## 2094 NA NA
## 2095 9.386 21.766
## 2096 9.386 21.766
## 2097 9.386 21.766
## 2098 9.386 21.766
## 2099 9.386 21.766
## 2100 9.386 21.766
## 2101 6.477 13.208
## 2102 6.477 13.208
## 2103 6.477 13.208
## 2104 6.477 13.208
## 2105 6.477 13.208
## 2106 6.477 13.208
## 2107 NA NA
## 2108 NA NA
## 2109 NA NA
## 2110 NA NA
## 2111 NA NA
## 2112 NA NA
## 2113 NA NA
## 2114 NA NA
## 2115 NA NA
## 2116 NA NA
## 2117 NA NA
## 2118 NA NA
## 2119 9.496 14.934
## 2120 9.496 14.934
## 2121 9.496 14.934
## 2122 9.496 14.934
## 2123 9.496 14.934
## 2124 9.496 14.934
## 2125 7.778 13.995
## 2126 7.778 13.995
## 2127 7.778 13.995
## 2128 7.778 13.995
## 2129 7.778 13.995
## 2130 7.778 13.995
## 2131 NA NA
## 2132 NA NA
## 2133 NA NA
## 2134 NA NA
## 2135 NA NA
## 2136 NA NA
## 2137 NA NA
## 2138 NA NA
## 2139 NA NA
## 2140 NA NA
## 2141 NA NA
## 2142 NA NA
## 2143 NA NA
## 2144 NA NA
## 2145 NA NA
## 2146 NA NA
## 2147 NA NA
## 2148 NA NA
## 2149 4.593 45.522
## 2150 4.593 45.522
## 2151 4.593 45.522
## 2152 4.593 45.522
## 2153 4.593 45.522
## 2154 4.593 45.522
## 2155 NA NA
## 2156 NA NA
## 2157 NA NA
## 2158 NA NA
## 2159 NA NA
## 2160 NA NA
## 2161 NA NA
## 2162 NA NA
## 2163 NA NA
## 2164 NA NA
## 2165 NA NA
## 2166 NA NA
## 2167 49.370 72.262
## 2168 49.370 72.262
## 2169 49.370 72.262
## 2170 49.370 72.262
## 2171 49.370 72.262
## 2172 49.370 72.262
## 2173 NA NA
## 2174 NA NA
## 2175 NA NA
## 2176 NA NA
## 2177 NA NA
## 2178 NA NA
## 2179 NA NA
## 2180 NA NA
## 2181 NA NA
## 2182 NA NA
## 2183 NA NA
## 2184 NA NA
## 2185 12.430 23.437
## 2186 12.430 23.437
## 2187 12.430 23.437
## 2188 12.430 23.437
## 2189 12.430 23.437
## 2190 12.430 23.437
## 2191 NA NA
## 2192 NA NA
## 2193 NA NA
## 2194 NA NA
## 2195 NA NA
## 2196 NA NA
## 2197 NA NA
## 2198 NA NA
## 2199 NA NA
## 2200 NA NA
## 2201 NA NA
## 2202 NA NA
## 2203 NA NA
## 2204 NA NA
## 2205 NA NA
## 2206 NA NA
## 2207 NA NA
## 2208 NA NA
## 2209 NA NA
## 2210 NA NA
## 2211 NA NA
## 2212 NA NA
## 2213 NA NA
## 2214 NA NA
## 2215 NA NA
## 2216 NA NA
## 2217 NA NA
## 2218 NA NA
## 2219 NA NA
## 2220 NA NA
## 2221 NA NA
## 2222 NA NA
## 2223 NA NA
## 2224 NA NA
## 2225 NA NA
## 2226 NA NA
## 2227 NA NA
## 2228 NA NA
## 2229 NA NA
## 2230 NA NA
## 2231 NA NA
## 2232 NA NA
## 2233 NA NA
## 2234 NA NA
## 2235 NA NA
## 2236 NA NA
## 2237 NA NA
## 2238 NA NA
## 2239 NA NA
## 2240 NA NA
## 2241 NA NA
## 2242 NA NA
## 2243 NA NA
## 2244 NA NA
## 2245 22.285 31.423
## 2246 22.285 31.423
## 2247 22.285 31.423
## 2248 22.285 31.423
## 2249 22.285 31.423
## 2250 22.285 31.423
## 2251 NA NA
## 2252 NA NA
## 2253 NA NA
## 2254 NA NA
## 2255 NA NA
## 2256 NA NA
## 2257 NA NA
## 2258 NA NA
## 2259 NA NA
## 2260 NA NA
## 2261 NA NA
## 2262 NA NA
## 2263 NA NA
## 2264 NA NA
## 2265 NA NA
## 2266 NA NA
## 2267 NA NA
## 2268 NA NA
## 2269 NA NA
## 2270 NA NA
## 2271 NA NA
## 2272 NA NA
## 2273 NA NA
## 2274 NA NA
## 2275 NA NA
## 2276 NA NA
## 2277 NA NA
## 2278 NA NA
## 2279 NA NA
## 2280 NA NA
## 2281 NA NA
## 2282 NA NA
## 2283 NA NA
## 2284 NA NA
## 2285 NA NA
## 2286 NA NA
## 2287 NA NA
## 2288 NA NA
## 2289 NA NA
## 2290 NA NA
## 2291 NA NA
## 2292 NA NA
## 2293 NA NA
## 2294 NA NA
## 2295 NA NA
## 2296 NA NA
## 2297 NA NA
## 2298 NA NA
## 2299 NA NA
## 2300 NA NA
## 2301 NA NA
## 2302 NA NA
## 2303 NA NA
## 2304 NA NA
## 2305 NA NA
## 2306 NA NA
## 2307 NA NA
## 2308 NA NA
## 2309 NA NA
## 2310 NA NA
## 2311 NA NA
## 2312 NA NA
## 2313 NA NA
## 2314 NA NA
## 2315 NA NA
## 2316 NA NA
## 2317 NA NA
## 2318 NA NA
## 2319 NA NA
## 2320 NA NA
## 2321 NA NA
## 2322 NA NA
## 2323 NA NA
## 2324 NA NA
## 2325 NA NA
## 2326 NA NA
## 2327 NA NA
## 2328 NA NA
## 2329 NA NA
## 2330 NA NA
## 2331 NA NA
## 2332 NA NA
## 2333 NA NA
## 2334 NA NA
## 2335 NA NA
## 2336 NA NA
## 2337 NA NA
## 2338 NA NA
## 2339 NA NA
## 2340 NA NA
## 2341 16.179 25.572
## 2342 16.179 25.572
## 2343 16.179 25.572
## 2344 16.179 25.572
## 2345 16.179 25.572
## 2346 16.179 25.572
## 2347 15.917 32.490
## 2348 15.917 32.490
## 2349 15.917 32.490
## 2350 15.917 32.490
## 2351 15.917 32.490
## 2352 15.917 32.490
## 2353 NA NA
## 2354 NA NA
## 2355 NA NA
## 2356 NA NA
## 2357 NA NA
## 2358 NA NA
## 2359 NA NA
## 2360 NA NA
## 2361 NA NA
## 2362 NA NA
## 2363 NA NA
## 2364 NA NA
## 2365 NA NA
## 2366 NA NA
## 2367 NA NA
## 2368 NA NA
## 2369 NA NA
## 2370 NA NA
## 2371 NA NA
## 2372 NA NA
## 2373 NA NA
## 2374 NA NA
## 2375 NA NA
## 2376 NA NA
## 2377 NA NA
## 2378 NA NA
## 2379 NA NA
## 2380 NA NA
## 2381 NA NA
## 2382 NA NA
## 2383 NA NA
## 2384 NA NA
## 2385 NA NA
## 2386 NA NA
## 2387 NA NA
## 2388 NA NA
## 2389 NA NA
## 2390 NA NA
## 2391 NA NA
## 2392 NA NA
## 2393 NA NA
## 2394 NA NA
## 2395 33.491 41.014
## 2396 33.491 41.014
## 2397 33.491 41.014
## 2398 33.491 41.014
## 2399 33.491 41.014
## 2400 33.491 41.014
## 2401 23.496 39.362
## 2402 23.496 39.362
## 2403 23.496 39.362
## 2404 23.496 39.362
## 2405 23.496 39.362
## 2406 23.496 39.362
## 2407 47.433 79.622
## 2408 47.433 79.622
## 2409 47.433 79.622
## 2410 47.433 79.622
## 2411 47.433 79.622
## 2412 47.433 79.622
## 2413 NA NA
## 2414 NA NA
## 2415 NA NA
## 2416 NA NA
## 2417 NA NA
## 2418 NA NA
## 2419 11.519 33.220
## 2420 11.519 33.220
## 2421 11.519 33.220
## 2422 11.519 33.220
## 2423 11.519 33.220
## 2424 11.519 33.220
## 2425 NA NA
## 2426 NA NA
## 2427 NA NA
## 2428 NA NA
## 2429 NA NA
## 2430 NA NA
## 2431 NA NA
## 2432 NA NA
## 2433 NA NA
## 2434 NA NA
## 2435 NA NA
## 2436 NA NA
## 2437 NA NA
## 2438 NA NA
## 2439 NA NA
## 2440 NA NA
## 2441 NA NA
## 2442 NA NA
## 2443 NA NA
## 2444 NA NA
## 2445 NA NA
## 2446 NA NA
## 2447 NA NA
## 2448 NA NA
## 2449 27.221 42.042
## 2450 27.221 42.042
## 2451 27.221 42.042
## 2452 27.221 42.042
## 2453 27.221 42.042
## 2454 27.221 42.042
## 2455 NA NA
## 2456 NA NA
## 2457 NA NA
## 2458 NA NA
## 2459 NA NA
## 2460 NA NA
## 2461 NA NA
## 2462 NA NA
## 2463 NA NA
## 2464 NA NA
## 2465 NA NA
## 2466 NA NA
## 2467 NA NA
## 2468 NA NA
## 2469 NA NA
## 2470 NA NA
## 2471 NA NA
## 2472 NA NA
## 2473 NA NA
## 2474 NA NA
## 2475 NA NA
## 2476 NA NA
## 2477 NA NA
## 2478 NA NA
## 2479 NA NA
## 2480 NA NA
## 2481 NA NA
## 2482 NA NA
## 2483 NA NA
## 2484 NA NA
## 2485 NA NA
## 2486 NA NA
## 2487 NA NA
## 2488 NA NA
## 2489 NA NA
## 2490 NA NA
## 2491 NA NA
## 2492 NA NA
## 2493 NA NA
## 2494 NA NA
## 2495 NA NA
## 2496 NA NA
## 2497 10.791 23.092
## 2498 10.791 23.092
## 2499 10.791 23.092
## 2500 10.791 23.092
## 2501 10.791 23.092
## 2502 10.791 23.092
## 2503 16.471 27.774
## 2504 16.471 27.774
## 2505 16.471 27.774
## 2506 16.471 27.774
## 2507 16.471 27.774
## 2508 16.471 27.774
## 2509 NA NA
## 2510 NA NA
## 2511 NA NA
## 2512 NA NA
## 2513 NA NA
## 2514 NA NA
## 2515 7.473 24.471
## 2516 7.473 24.471
## 2517 7.473 24.471
## 2518 7.473 24.471
## 2519 7.473 24.471
## 2520 7.473 24.471
## 2521 NA NA
## 2522 NA NA
## 2523 NA NA
## 2524 NA NA
## 2525 NA NA
## 2526 NA NA
## 2527 NA NA
## 2528 NA NA
## 2529 NA NA
## 2530 NA NA
## 2531 NA NA
## 2532 NA NA
## 2533 NA NA
## 2534 NA NA
## 2535 NA NA
## 2536 NA NA
## 2537 NA NA
## 2538 NA NA
## 2539 NA NA
## 2540 NA NA
## 2541 NA NA
## 2542 NA NA
## 2543 NA NA
## 2544 NA NA
## 2545 NA NA
## 2546 NA NA
## 2547 NA NA
## 2548 NA NA
## 2549 NA NA
## 2550 NA NA
## 2551 NA NA
## 2552 NA NA
## 2553 NA NA
## 2554 NA NA
## 2555 NA NA
## 2556 NA NA
## 2557 NA NA
## 2558 NA NA
## 2559 NA NA
## 2560 NA NA
## 2561 NA NA
## 2562 NA NA
## 2563 NA NA
## 2564 NA NA
## 2565 NA NA
## 2566 NA NA
## 2567 NA NA
## 2568 NA NA
## 2569 NA NA
## 2570 NA NA
## 2571 NA NA
## 2572 NA NA
## 2573 NA NA
## 2574 NA NA
## 2575 NA NA
## 2576 NA NA
## 2577 NA NA
## 2578 NA NA
## 2579 NA NA
## 2580 NA NA
## 2581 35.426 50.345
## 2582 35.426 50.345
## 2583 35.426 50.345
## 2584 35.426 50.345
## 2585 35.426 50.345
## 2586 35.426 50.345
## 2587 NA NA
## 2588 NA NA
## 2589 NA NA
## 2590 NA NA
## 2591 NA NA
## 2592 NA NA
## 2593 NA NA
## 2594 NA NA
## 2595 NA NA
## 2596 NA NA
## 2597 NA NA
## 2598 NA NA
## 2599 15.199 26.877
## 2600 15.199 26.877
## 2601 15.199 26.877
## 2602 15.199 26.877
## 2603 15.199 26.877
## 2604 15.199 26.877
## 2605 NA NA
## 2606 NA NA
## 2607 NA NA
## 2608 NA NA
## 2609 NA NA
## 2610 NA NA
## 2611 NA NA
## 2612 NA NA
## 2613 NA NA
## 2614 NA NA
## 2615 NA NA
## 2616 NA NA
## 2617 10.974 17.970
## 2618 10.974 17.970
## 2619 10.974 17.970
## 2620 10.974 17.970
## 2621 10.974 17.970
## 2622 10.974 17.970
## 2623 15.101 56.689
## 2624 15.101 56.689
## 2625 15.101 56.689
## 2626 15.101 56.689
## 2627 15.101 56.689
## 2628 15.101 56.689
## 2629 NA NA
## 2630 NA NA
## 2631 NA NA
## 2632 NA NA
## 2633 NA NA
## 2634 NA NA
## 2635 NA NA
## 2636 NA NA
## 2637 NA NA
## 2638 NA NA
## 2639 NA NA
## 2640 NA NA
## 2641 23.150 44.899
## 2642 23.150 44.899
## 2643 23.150 44.899
## 2644 23.150 44.899
## 2645 23.150 44.899
## 2646 23.150 44.899
## 2647 NA NA
## 2648 NA NA
## 2649 NA NA
## 2650 NA NA
## 2651 NA NA
## 2652 NA NA
## 2653 3.235 26.342
## 2654 3.235 26.342
## 2655 3.235 26.342
## 2656 3.235 26.342
## 2657 3.235 26.342
## 2658 3.235 26.342
## 2659 12.667 26.005
## 2660 12.667 26.005
## 2661 12.667 26.005
## 2662 12.667 26.005
## 2663 12.667 26.005
## 2664 12.667 26.005
## 2665 NA NA
## 2666 NA NA
## 2667 NA NA
## 2668 NA NA
## 2669 NA NA
## 2670 NA NA
## 2671 20.005 36.029
## 2672 20.005 36.029
## 2673 20.005 36.029
## 2674 20.005 36.029
## 2675 20.005 36.029
## 2676 20.005 36.029
## 2677 NA NA
## 2678 NA NA
## 2679 NA NA
## 2680 NA NA
## 2681 NA NA
## 2682 NA NA
## 2683 NA NA
## 2684 NA NA
## 2685 NA NA
## 2686 NA NA
## 2687 NA NA
## 2688 NA NA
## 2689 NA NA
## 2690 NA NA
## 2691 NA NA
## 2692 NA NA
## 2693 NA NA
## 2694 NA NA
## 2695 NA NA
## 2696 NA NA
## 2697 NA NA
## 2698 NA NA
## 2699 NA NA
## 2700 NA NA
## 2701 11.916 23.694
## 2702 11.916 23.694
## 2703 11.916 23.694
## 2704 11.916 23.694
## 2705 11.916 23.694
## 2706 11.916 23.694
## 2707 12.601 22.660
## 2708 12.601 22.660
## 2709 12.601 22.660
## 2710 12.601 22.660
## 2711 12.601 22.660
## 2712 12.601 22.660
## 2713 NA NA
## 2714 NA NA
## 2715 NA NA
## 2716 NA NA
## 2717 NA NA
## 2718 NA NA
## 2719 NA NA
## 2720 NA NA
## 2721 NA NA
## 2722 NA NA
## 2723 NA NA
## 2724 NA NA
## 2725 NA NA
## 2726 NA NA
## 2727 NA NA
## 2728 NA NA
## 2729 NA NA
## 2730 NA NA
## 2731 NA NA
## 2732 NA NA
## 2733 NA NA
## 2734 NA NA
## 2735 NA NA
## 2736 NA NA
## 2737 NA NA
## 2738 NA NA
## 2739 NA NA
## 2740 NA NA
## 2741 NA NA
## 2742 NA NA
## 2743 47.616 58.053
## 2744 47.616 58.053
## 2745 47.616 58.053
## 2746 47.616 58.053
## 2747 47.616 58.053
## 2748 47.616 58.053
## 2749 NA NA
## 2750 NA NA
## 2751 NA NA
## 2752 NA NA
## 2753 NA NA
## 2754 NA NA
## 2755 NA NA
## 2756 NA NA
## 2757 NA NA
## 2758 NA NA
## 2759 NA NA
## 2760 NA NA
## 2761 NA NA
## 2762 NA NA
## 2763 NA NA
## 2764 NA NA
## 2765 NA NA
## 2766 NA NA
## 2767 NA NA
## 2768 NA NA
## 2769 NA NA
## 2770 NA NA
## 2771 NA NA
## 2772 NA NA
## 2773 NA NA
## 2774 NA NA
## 2775 NA NA
## 2776 NA NA
## 2777 NA NA
## 2778 NA NA
## 2779 NA NA
## 2780 NA NA
## 2781 NA NA
## 2782 NA NA
## 2783 NA NA
## 2784 NA NA
## 2785 NA NA
## 2786 NA NA
## 2787 NA NA
## 2788 NA NA
## 2789 NA NA
## 2790 NA NA
## 2791 25.897 46.254
## 2792 25.897 46.254
## 2793 25.897 46.254
## 2794 25.897 46.254
## 2795 25.897 46.254
## 2796 25.897 46.254
## 2797 6.305 26.775
## 2798 6.305 26.775
## 2799 6.305 26.775
## 2800 6.305 26.775
## 2801 6.305 26.775
## 2802 6.305 26.775
## 2803 NA NA
## 2804 NA NA
## 2805 NA NA
## 2806 NA NA
## 2807 NA NA
## 2808 NA NA
## 2809 NA NA
## 2810 NA NA
## 2811 NA NA
## 2812 NA NA
## 2813 NA NA
## 2814 NA NA
## 2815 NA NA
## 2816 NA NA
## 2817 NA NA
## 2818 NA NA
## 2819 NA NA
## 2820 NA NA
## 2821 NA NA
## 2822 NA NA
## 2823 NA NA
## 2824 NA NA
## 2825 NA NA
## 2826 NA NA
## 2827 NA NA
## 2828 NA NA
## 2829 NA NA
## 2830 NA NA
## 2831 NA NA
## 2832 NA NA
## 2833 NA NA
## 2834 NA NA
## 2835 NA NA
## 2836 NA NA
## 2837 NA NA
## 2838 NA NA
## 2839 NA NA
## 2840 NA NA
## 2841 NA NA
## 2842 NA NA
## 2843 NA NA
## 2844 NA NA
## 2845 NA NA
## 2846 NA NA
## 2847 NA NA
## 2848 NA NA
## 2849 NA NA
## 2850 NA NA
## 2851 NA NA
## 2852 NA NA
## 2853 NA NA
## 2854 NA NA
## 2855 NA NA
## 2856 NA NA
## 2857 NA NA
## 2858 NA NA
## 2859 NA NA
## 2860 NA NA
## 2861 NA NA
## 2862 NA NA
## 2863 NA NA
## 2864 NA NA
## 2865 NA NA
## 2866 NA NA
## 2867 NA NA
## 2868 NA NA
## 2869 NA NA
## 2870 NA NA
## 2871 NA NA
## 2872 NA NA
## 2873 NA NA
## 2874 NA NA
## 2875 17.486 27.175
## 2876 17.486 27.175
## 2877 17.486 27.175
## 2878 17.486 27.175
## 2879 17.486 27.175
## 2880 17.486 27.175
## 2881 NA NA
## 2882 NA NA
## 2883 NA NA
## 2884 NA NA
## 2885 NA NA
## 2886 NA NA
## 2887 NA NA
## 2888 NA NA
## 2889 NA NA
## 2890 NA NA
## 2891 NA NA
## 2892 NA NA
## 2893 4.787 82.281
## 2894 4.787 82.281
## 2895 4.787 82.281
## 2896 4.787 82.281
## 2897 4.787 82.281
## 2898 4.787 82.281
## 2899 NA NA
## 2900 NA NA
## 2901 NA NA
## 2902 NA NA
## 2903 NA NA
## 2904 NA NA
## 2905 NA NA
## 2906 NA NA
## 2907 NA NA
## 2908 NA NA
## 2909 NA NA
## 2910 NA NA
## 2911 NA NA
## 2912 NA NA
## 2913 NA NA
## 2914 NA NA
## 2915 NA NA
## 2916 NA NA
## 2917 NA NA
## 2918 NA NA
## 2919 NA NA
## 2920 NA NA
## 2921 NA NA
## 2922 NA NA
## 2923 NA NA
## 2924 NA NA
## 2925 NA NA
## 2926 NA NA
## 2927 NA NA
## 2928 NA NA
## 2929 NA NA
## 2930 NA NA
## 2931 NA NA
## 2932 NA NA
## 2933 NA NA
## 2934 NA NA
## 2935 NA NA
## 2936 NA NA
## 2937 NA NA
## 2938 NA NA
## 2939 NA NA
## 2940 NA NA
## 2941 NA NA
## 2942 NA NA
## 2943 NA NA
## 2944 NA NA
## 2945 NA NA
## 2946 NA NA
## 2947 NA NA
## 2948 NA NA
## 2949 NA NA
## 2950 NA NA
## 2951 NA NA
## 2952 NA NA
## 2953 54.424 88.496
## 2954 54.424 88.496
## 2955 54.424 88.496
## 2956 54.424 88.496
## 2957 54.424 88.496
## 2958 54.424 88.496
## 2959 NA NA
## 2960 NA NA
## 2961 NA NA
## 2962 NA NA
## 2963 NA NA
## 2964 NA NA
## 2965 NA NA
## 2966 NA NA
## 2967 NA NA
## 2968 NA NA
## 2969 NA NA
## 2970 NA NA
## 2971 NA NA
## 2972 NA NA
## 2973 NA NA
## 2974 NA NA
## 2975 NA NA
## 2976 NA NA
## 2977 11.380 24.030
## 2978 11.380 24.030
## 2979 11.380 24.030
## 2980 11.380 24.030
## 2981 11.380 24.030
## 2982 11.380 24.030
## 2983 NA NA
## 2984 NA NA
## 2985 NA NA
## 2986 NA NA
## 2987 NA NA
## 2988 NA NA
## 2989 13.559 23.524
## 2990 13.559 23.524
## 2991 13.559 23.524
## 2992 13.559 23.524
## 2993 13.559 23.524
## 2994 13.559 23.524
## 2995 NA NA
## 2996 NA NA
## 2997 NA NA
## 2998 NA NA
## 2999 NA NA
## 3000 NA NA
## 3001 24.473 51.785
## 3002 24.473 51.785
## 3003 24.473 51.785
## 3004 24.473 51.785
## 3005 24.473 51.785
## 3006 24.473 51.785
## 3007 NA NA
## 3008 NA NA
## 3009 NA NA
## 3010 NA NA
## 3011 NA NA
## 3012 NA NA
## 3013 18.520 30.849
## 3014 18.520 30.849
## 3015 18.520 30.849
## 3016 18.520 30.849
## 3017 18.520 30.849
## 3018 18.520 30.849
## 3019 14.866 55.333
## 3020 14.866 55.333
## 3021 14.866 55.333
## 3022 14.866 55.333
## 3023 14.866 55.333
## 3024 14.866 55.333
## 3025 2.417 46.323
## 3026 2.417 46.323
## 3027 2.417 46.323
## 3028 2.417 46.323
## 3029 2.417 46.323
## 3030 2.417 46.323
## 3031 NA NA
## 3032 NA NA
## 3033 NA NA
## 3034 NA NA
## 3035 NA NA
## 3036 NA NA
## 3037 NA NA
## 3038 NA NA
## 3039 NA NA
## 3040 NA NA
## 3041 NA NA
## 3042 NA NA
## 3043 NA NA
## 3044 NA NA
## 3045 NA NA
## 3046 NA NA
## 3047 NA NA
## 3048 NA NA
## 3049 NA NA
## 3050 NA NA
## 3051 NA NA
## 3052 NA NA
## 3053 NA NA
## 3054 NA NA
## 3055 NA NA
## 3056 NA NA
## 3057 NA NA
## 3058 NA NA
## 3059 NA NA
## 3060 NA NA
## 3061 NA NA
## 3062 NA NA
## 3063 NA NA
## 3064 NA NA
## 3065 NA NA
## 3066 NA NA
## 3067 NA NA
## 3068 NA NA
## 3069 NA NA
## 3070 NA NA
## 3071 NA NA
## 3072 NA NA
## 3073 NA NA
## 3074 NA NA
## 3075 NA NA
## 3076 NA NA
## 3077 NA NA
## 3078 NA NA
## 3079 NA NA
## 3080 NA NA
## 3081 NA NA
## 3082 NA NA
## 3083 NA NA
## 3084 NA NA
## 3085 NA NA
## 3086 NA NA
## 3087 NA NA
## 3088 NA NA
## 3089 NA NA
## 3090 NA NA
## 3091 25.920 46.439
## 3092 25.920 46.439
## 3093 25.920 46.439
## 3094 25.920 46.439
## 3095 25.920 46.439
## 3096 25.920 46.439
## 3097 NA NA
## 3098 NA NA
## 3099 NA NA
## 3100 NA NA
## 3101 NA NA
## 3102 NA NA
## 3103 7.898 21.970
## 3104 7.898 21.970
## 3105 7.898 21.970
## 3106 7.898 21.970
## 3107 7.898 21.970
## 3108 7.898 21.970
## 3109 NA NA
## 3110 NA NA
## 3111 NA NA
## 3112 NA NA
## 3113 NA NA
## 3114 NA NA
## 3115 NA NA
## 3116 NA NA
## 3117 NA NA
## 3118 NA NA
## 3119 NA NA
## 3120 NA NA
## 3121 NA NA
## 3122 NA NA
## 3123 NA NA
## 3124 NA NA
## 3125 NA NA
## 3126 NA NA
## 3127 NA NA
## 3128 NA NA
## 3129 NA NA
## 3130 NA NA
## 3131 NA NA
## 3132 NA NA
## 3133 NA NA
## 3134 NA NA
## 3135 NA NA
## 3136 NA NA
## 3137 NA NA
## 3138 NA NA
## 3139 NA NA
## 3140 NA NA
## 3141 NA NA
## 3142 NA NA
## 3143 NA NA
## 3144 NA NA
## 3145 NA NA
## 3146 NA NA
## 3147 NA NA
## 3148 NA NA
## 3149 NA NA
## 3150 NA NA
## 3151 NA NA
## 3152 NA NA
## 3153 NA NA
## 3154 NA NA
## 3155 NA NA
## 3156 NA NA
## 3157 16.827 26.526
## 3158 16.827 26.526
## 3159 16.827 26.526
## 3160 16.827 26.526
## 3161 16.827 26.526
## 3162 16.827 26.526
## 3163 NA NA
## 3164 NA NA
## 3165 NA NA
## 3166 NA NA
## 3167 NA NA
## 3168 NA NA
## 3169 NA NA
## 3170 NA NA
## 3171 NA NA
## 3172 NA NA
## 3173 NA NA
## 3174 NA NA
## 3175 10.038 30.947
## 3176 10.038 30.947
## 3177 10.038 30.947
## 3178 10.038 30.947
## 3179 10.038 30.947
## 3180 10.038 30.947
## 3181 5.246 41.116
## 3182 5.246 41.116
## 3183 5.246 41.116
## 3184 5.246 41.116
## 3185 5.246 41.116
## 3186 5.246 41.116
## 3187 NA NA
## 3188 NA NA
## 3189 NA NA
## 3190 NA NA
## 3191 NA NA
## 3192 NA NA
## 3193 NA NA
## 3194 NA NA
## 3195 NA NA
## 3196 NA NA
## 3197 NA NA
## 3198 NA NA
## 3199 2.413 42.526
## 3200 2.413 42.526
## 3201 2.413 42.526
## 3202 2.413 42.526
## 3203 2.413 42.526
## 3204 2.413 42.526
## 3205 NA NA
## 3206 NA NA
## 3207 NA NA
## 3208 NA NA
## 3209 NA NA
## 3210 NA NA
## 3211 NA NA
## 3212 NA NA
## 3213 NA NA
## 3214 NA NA
## 3215 NA NA
## 3216 NA NA
## 3217 NA NA
## 3218 NA NA
## 3219 NA NA
## 3220 NA NA
## 3221 NA NA
## 3222 NA NA
## 3223 10.886 25.909
## 3224 10.886 25.909
## 3225 10.886 25.909
## 3226 10.886 25.909
## 3227 10.886 25.909
## 3228 10.886 25.909
## 3229 NA NA
## 3230 NA NA
## 3231 NA NA
## 3232 NA NA
## 3233 NA NA
## 3234 NA NA
## 3235 NA NA
## 3236 NA NA
## 3237 NA NA
## 3238 NA NA
## 3239 NA NA
## 3240 NA NA
## 3241 NA NA
## 3242 NA NA
## 3243 NA NA
## 3244 NA NA
## 3245 NA NA
## 3246 NA NA
## 3247 2.063 17.879
## 3248 2.063 17.879
## 3249 2.063 17.879
## 3250 2.063 17.879
## 3251 2.063 17.879
## 3252 2.063 17.879
## 3253 NA NA
## 3254 NA NA
## 3255 NA NA
## 3256 NA NA
## 3257 NA NA
## 3258 NA NA
## 3259 NA NA
## 3260 NA NA
## 3261 NA NA
## 3262 NA NA
## 3263 NA NA
## 3264 NA NA
## 3265 NA NA
## 3266 NA NA
## 3267 NA NA
## 3268 NA NA
## 3269 NA NA
## 3270 NA NA
## 3271 NA NA
## 3272 NA NA
## 3273 NA NA
## 3274 NA NA
## 3275 NA NA
## 3276 NA NA
## 3277 NA NA
## 3278 NA NA
## 3279 NA NA
## 3280 NA NA
## 3281 NA NA
## 3282 NA NA
## 3283 NA NA
## 3284 NA NA
## 3285 NA NA
## 3286 NA NA
## 3287 NA NA
## 3288 NA NA
## 3289 NA NA
## 3290 NA NA
## 3291 NA NA
## 3292 NA NA
## 3293 NA NA
## 3294 NA NA
## 3295 NA NA
## 3296 NA NA
## 3297 NA NA
## 3298 NA NA
## 3299 NA NA
## 3300 NA NA
## 3301 210.535 229.817
## 3302 210.535 229.817
## 3303 210.535 229.817
## 3304 210.535 229.817
## 3305 210.535 229.817
## 3306 210.535 229.817
## 3307 NA NA
## 3308 NA NA
## 3309 NA NA
## 3310 NA NA
## 3311 NA NA
## 3312 NA NA
## 3313 407.985 427.538
## 3314 407.985 427.538
## 3315 407.985 427.538
## 3316 407.985 427.538
## 3317 407.985 427.538
## 3318 407.985 427.538
## 3319 NA NA
## 3320 NA NA
## 3321 NA NA
## 3322 NA NA
## 3323 NA NA
## 3324 NA NA
## 3325 35.039 83.137
## 3326 35.039 83.137
## 3327 35.039 83.137
## 3328 35.039 83.137
## 3329 35.039 83.137
## 3330 35.039 83.137
## 3331 32.393 44.201
## 3332 32.393 44.201
## 3333 32.393 44.201
## 3334 32.393 44.201
## 3335 32.393 44.201
## 3336 32.393 44.201
## 3337 NA NA
## 3338 NA NA
## 3339 NA NA
## 3340 NA NA
## 3341 NA NA
## 3342 NA NA
## 3343 NA NA
## 3344 NA NA
## 3345 NA NA
## 3346 NA NA
## 3347 NA NA
## 3348 NA NA
## 3349 NA NA
## 3350 NA NA
## 3351 NA NA
## 3352 NA NA
## 3353 NA NA
## 3354 NA NA
## 3355 NA NA
## 3356 NA NA
## 3357 NA NA
## 3358 NA NA
## 3359 NA NA
## 3360 NA NA
## 3361 16.922 39.763
## 3362 16.922 39.763
## 3363 16.922 39.763
## 3364 16.922 39.763
## 3365 16.922 39.763
## 3366 16.922 39.763
## 3367 6.600 30.996
## 3368 6.600 30.996
## 3369 6.600 30.996
## 3370 6.600 30.996
## 3371 6.600 30.996
## 3372 6.600 30.996
## 3373 NA NA
## 3374 NA NA
## 3375 NA NA
## 3376 NA NA
## 3377 NA NA
## 3378 NA NA
## 3379 22.329 52.427
## 3380 22.329 52.427
## 3381 22.329 52.427
## 3382 22.329 52.427
## 3383 22.329 52.427
## 3384 22.329 52.427
## 3385 NA NA
## 3386 NA NA
## 3387 NA NA
## 3388 NA NA
## 3389 NA NA
## 3390 NA NA
## 3391 NA NA
## 3392 NA NA
## 3393 NA NA
## 3394 NA NA
## 3395 NA NA
## 3396 NA NA
## 3397 19.425 26.417
## 3398 19.425 26.417
## 3399 19.425 26.417
## 3400 19.425 26.417
## 3401 19.425 26.417
## 3402 19.425 26.417
## 3403 NA NA
## 3404 NA NA
## 3405 NA NA
## 3406 NA NA
## 3407 NA NA
## 3408 NA NA
## 3409 3.385 29.909
## 3410 3.385 29.909
## 3411 3.385 29.909
## 3412 3.385 29.909
## 3413 3.385 29.909
## 3414 3.385 29.909
## 3415 NA NA
## 3416 NA NA
## 3417 NA NA
## 3418 NA NA
## 3419 NA NA
## 3420 NA NA
## 3421 NA NA
## 3422 NA NA
## 3423 NA NA
## 3424 NA NA
## 3425 NA NA
## 3426 NA NA
## 3427 NA NA
## 3428 NA NA
## 3429 NA NA
## 3430 NA NA
## 3431 NA NA
## 3432 NA NA
## 3433 NA NA
## 3434 NA NA
## 3435 NA NA
## 3436 NA NA
## 3437 NA NA
## 3438 NA NA
## 3439 NA NA
## 3440 NA NA
## 3441 NA NA
## 3442 NA NA
## 3443 NA NA
## 3444 NA NA
## 3445 NA NA
## 3446 NA NA
## 3447 NA NA
## 3448 NA NA
## 3449 NA NA
## 3450 NA NA
## 3451 28.090 49.451
## 3452 28.090 49.451
## 3453 28.090 49.451
## 3454 28.090 49.451
## 3455 28.090 49.451
## 3456 28.090 49.451
## 3457 NA NA
## 3458 NA NA
## 3459 NA NA
## 3460 NA NA
## 3461 NA NA
## 3462 NA NA
## 3463 97.704 108.217
## 3464 97.704 108.217
## 3465 97.704 108.217
## 3466 97.704 108.217
## 3467 97.704 108.217
## 3468 97.704 108.217
## 3469 NA NA
## 3470 NA NA
## 3471 NA NA
## 3472 NA NA
## 3473 NA NA
## 3474 NA NA
## 3475 21.423 34.001
## 3476 21.423 34.001
## 3477 21.423 34.001
## 3478 21.423 34.001
## 3479 21.423 34.001
## 3480 21.423 34.001
## 3481 NA NA
## 3482 NA NA
## 3483 NA NA
## 3484 NA NA
## 3485 NA NA
## 3486 NA NA
## 3487 NA NA
## 3488 NA NA
## 3489 NA NA
## 3490 NA NA
## 3491 NA NA
## 3492 NA NA
## 3493 NA NA
## 3494 NA NA
## 3495 NA NA
## 3496 NA NA
## 3497 NA NA
## 3498 NA NA
## 3499 NA NA
## 3500 NA NA
## 3501 NA NA
## 3502 NA NA
## 3503 NA NA
## 3504 NA NA
## 3505 NA NA
## 3506 NA NA
## 3507 NA NA
## 3508 NA NA
## 3509 NA NA
## 3510 NA NA
## 3511 4.246 132.265
## 3512 4.246 132.265
## 3513 4.246 132.265
## 3514 4.246 132.265
## 3515 4.246 132.265
## 3516 4.246 132.265
## 3517 NA NA
## 3518 NA NA
## 3519 NA NA
## 3520 NA NA
## 3521 NA NA
## 3522 NA NA
## 3523 10.759 25.867
## 3524 10.759 25.867
## 3525 10.759 25.867
## 3526 10.759 25.867
## 3527 10.759 25.867
## 3528 10.759 25.867
## 3529 NA NA
## 3530 NA NA
## 3531 NA NA
## 3532 NA NA
## 3533 NA NA
## 3534 NA NA
## 3535 34.162 47.812
## 3536 34.162 47.812
## 3537 34.162 47.812
## 3538 34.162 47.812
## 3539 34.162 47.812
## 3540 34.162 47.812
## 3541 NA NA
## 3542 NA NA
## 3543 NA NA
## 3544 NA NA
## 3545 NA NA
## 3546 NA NA
## 3547 NA NA
## 3548 NA NA
## 3549 NA NA
## 3550 NA NA
## 3551 NA NA
## 3552 NA NA
## 3553 NA NA
## 3554 NA NA
## 3555 NA NA
## 3556 NA NA
## 3557 NA NA
## 3558 NA NA
## 3559 NA NA
## 3560 NA NA
## 3561 NA NA
## 3562 NA NA
## 3563 NA NA
## 3564 NA NA
## 3565 NA NA
## 3566 NA NA
## 3567 NA NA
## 3568 NA NA
## 3569 NA NA
## 3570 NA NA
## 3571 NA NA
## 3572 NA NA
## 3573 NA NA
## 3574 NA NA
## 3575 NA NA
## 3576 NA NA
## 3577 NA NA
## 3578 NA NA
## 3579 NA NA
## 3580 NA NA
## 3581 NA NA
## 3582 NA NA
## 3583 NA NA
## 3584 NA NA
## 3585 NA NA
## 3586 NA NA
## 3587 NA NA
## 3588 NA NA
## 3589 22.777 47.836
## 3590 22.777 47.836
## 3591 22.777 47.836
## 3592 22.777 47.836
## 3593 22.777 47.836
## 3594 22.777 47.836
## 3595 20.593 36.709
## 3596 20.593 36.709
## 3597 20.593 36.709
## 3598 20.593 36.709
## 3599 20.593 36.709
## 3600 20.593 36.709
## 3601 NA NA
## 3602 NA NA
## 3603 NA NA
## 3604 NA NA
## 3605 NA NA
## 3606 NA NA
## 3607 NA NA
## 3608 NA NA
## 3609 NA NA
## 3610 NA NA
## 3611 NA NA
## 3612 NA NA
## 3613 NA NA
## 3614 NA NA
## 3615 NA NA
## 3616 NA NA
## 3617 NA NA
## 3618 NA NA
## 3619 39.428 53.784
## 3620 39.428 53.784
## 3621 39.428 53.784
## 3622 39.428 53.784
## 3623 39.428 53.784
## 3624 39.428 53.784
## 3625 NA NA
## 3626 NA NA
## 3627 NA NA
## 3628 NA NA
## 3629 NA NA
## 3630 NA NA
## 3631 124.402 147.231
## 3632 124.402 147.231
## 3633 124.402 147.231
## 3634 124.402 147.231
## 3635 124.402 147.231
## 3636 124.402 147.231
## 3637 NA NA
## 3638 NA NA
## 3639 NA NA
## 3640 NA NA
## 3641 NA NA
## 3642 NA NA
## 3643 19.436 89.688
## 3644 19.436 89.688
## 3645 19.436 89.688
## 3646 19.436 89.688
## 3647 19.436 89.688
## 3648 19.436 89.688
## 3649 2.828 25.526
## 3650 2.828 25.526
## 3651 2.828 25.526
## 3652 2.828 25.526
## 3653 2.828 25.526
## 3654 2.828 25.526
## 3655 1886.490 1898.505
## 3656 1886.490 1898.505
## 3657 1886.490 1898.505
## 3658 1886.490 1898.505
## 3659 1886.490 1898.505
## 3660 1886.490 1898.505
## 3661 NA NA
## 3662 NA NA
## 3663 NA NA
## 3664 NA NA
## 3665 NA NA
## 3666 NA NA
## 3667 2.236 183.027
## 3668 2.236 183.027
## 3669 2.236 183.027
## 3670 2.236 183.027
## 3671 2.236 183.027
## 3672 2.236 183.027
## 3673 NA NA
## 3674 NA NA
## 3675 NA NA
## 3676 NA NA
## 3677 NA NA
## 3678 NA NA
## 3679 NA NA
## 3680 NA NA
## 3681 NA NA
## 3682 NA NA
## 3683 NA NA
## 3684 NA NA
## 3685 6.314 32.631
## 3686 6.314 32.631
## 3687 6.314 32.631
## 3688 6.314 32.631
## 3689 6.314 32.631
## 3690 6.314 32.631
## 3691 NA NA
## 3692 NA NA
## 3693 NA NA
## 3694 NA NA
## 3695 NA NA
## 3696 NA NA
## 3697 NA NA
## 3698 NA NA
## 3699 NA NA
## 3700 NA NA
## 3701 NA NA
## 3702 NA NA
## 3703 12.373 25.042
## 3704 12.373 25.042
## 3705 12.373 25.042
## 3706 12.373 25.042
## 3707 12.373 25.042
## 3708 12.373 25.042
## 3709 2.853 60.098
## 3710 2.853 60.098
## 3711 2.853 60.098
## 3712 2.853 60.098
## 3713 2.853 60.098
## 3714 2.853 60.098
## 3715 NA NA
## 3716 NA NA
## 3717 NA NA
## 3718 NA NA
## 3719 NA NA
## 3720 NA NA
## 3721 NA NA
## 3722 NA NA
## 3723 NA NA
## 3724 NA NA
## 3725 NA NA
## 3726 NA NA
## 3727 NA NA
## 3728 NA NA
## 3729 NA NA
## 3730 NA NA
## 3731 NA NA
## 3732 NA NA
## 3733 28.777 51.207
## 3734 28.777 51.207
## 3735 28.777 51.207
## 3736 28.777 51.207
## 3737 28.777 51.207
## 3738 28.777 51.207
## 3739 NA NA
## 3740 NA NA
## 3741 NA NA
## 3742 NA NA
## 3743 NA NA
## 3744 NA NA
## 3745 21.814 38.206
## 3746 21.814 38.206
## 3747 21.814 38.206
## 3748 21.814 38.206
## 3749 21.814 38.206
## 3750 21.814 38.206
## 3751 20.620 84.290
## 3752 20.620 84.290
## 3753 20.620 84.290
## 3754 20.620 84.290
## 3755 20.620 84.290
## 3756 20.620 84.290
## 3757 NA NA
## 3758 NA NA
## 3759 NA NA
## 3760 NA NA
## 3761 NA NA
## 3762 NA NA
## 3763 NA NA
## 3764 NA NA
## 3765 NA NA
## 3766 NA NA
## 3767 NA NA
## 3768 NA NA
## 3769 NA NA
## 3770 NA NA
## 3771 NA NA
## 3772 NA NA
## 3773 NA NA
## 3774 NA NA
## 3775 NA NA
## 3776 NA NA
## 3777 NA NA
## 3778 NA NA
## 3779 NA NA
## 3780 NA NA
## 3781 NA NA
## 3782 NA NA
## 3783 NA NA
## 3784 NA NA
## 3785 NA NA
## 3786 NA NA
## 3787 6.415 35.487
## 3788 6.415 35.487
## 3789 6.415 35.487
## 3790 6.415 35.487
## 3791 6.415 35.487
## 3792 6.415 35.487
## 3793 NA NA
## 3794 NA NA
## 3795 NA NA
## 3796 NA NA
## 3797 NA NA
## 3798 NA NA
## 3799 NA NA
## 3800 NA NA
## 3801 NA NA
## 3802 NA NA
## 3803 NA NA
## 3804 NA NA
## 3805 NA NA
## 3806 NA NA
## 3807 NA NA
## 3808 NA NA
## 3809 NA NA
## 3810 NA NA
## 3811 NA NA
## 3812 NA NA
## 3813 NA NA
## 3814 NA NA
## 3815 NA NA
## 3816 NA NA
## 3817 16.207 29.089
## 3818 16.207 29.089
## 3819 16.207 29.089
## 3820 16.207 29.089
## 3821 16.207 29.089
## 3822 16.207 29.089
## 3823 NA NA
## 3824 NA NA
## 3825 NA NA
## 3826 NA NA
## 3827 NA NA
## 3828 NA NA
## 3829 NA NA
## 3830 NA NA
## 3831 NA NA
## 3832 NA NA
## 3833 NA NA
## 3834 NA NA
## 3835 NA NA
## 3836 NA NA
## 3837 NA NA
## 3838 NA NA
## 3839 NA NA
## 3840 NA NA
## 3841 NA NA
## 3842 NA NA
## 3843 NA NA
## 3844 NA NA
## 3845 NA NA
## 3846 NA NA
## 3847 NA NA
## 3848 NA NA
## 3849 NA NA
## 3850 NA NA
## 3851 NA NA
## 3852 NA NA
## 3853 7.493 220.123
## 3854 7.493 220.123
## 3855 7.493 220.123
## 3856 7.493 220.123
## 3857 7.493 220.123
## 3858 7.493 220.123
## 3859 29.804 66.827
## 3860 29.804 66.827
## 3861 29.804 66.827
## 3862 29.804 66.827
## 3863 29.804 66.827
## 3864 29.804 66.827
## 3865 NA NA
## 3866 NA NA
## 3867 NA NA
## 3868 NA NA
## 3869 NA NA
## 3870 NA NA
## 3871 31.696 39.846
## 3872 31.696 39.846
## 3873 31.696 39.846
## 3874 31.696 39.846
## 3875 31.696 39.846
## 3876 31.696 39.846
## 3877 NA NA
## 3878 NA NA
## 3879 NA NA
## 3880 NA NA
## 3881 NA NA
## 3882 NA NA
## 3883 13.268 38.864
## 3884 13.268 38.864
## 3885 13.268 38.864
## 3886 13.268 38.864
## 3887 13.268 38.864
## 3888 13.268 38.864
## 3889 NA NA
## 3890 NA NA
## 3891 NA NA
## 3892 NA NA
## 3893 NA NA
## 3894 NA NA
## 3895 NA NA
## 3896 NA NA
## 3897 NA NA
## 3898 NA NA
## 3899 NA NA
## 3900 NA NA
## 3901 NA NA
## 3902 NA NA
## 3903 NA NA
## 3904 NA NA
## 3905 NA NA
## 3906 NA NA
## 3907 NA NA
## 3908 NA NA
## 3909 NA NA
## 3910 NA NA
## 3911 NA NA
## 3912 NA NA
## 3913 NA NA
## 3914 NA NA
## 3915 NA NA
## 3916 NA NA
## 3917 NA NA
## 3918 NA NA
## 3919 NA NA
## 3920 NA NA
## 3921 NA NA
## 3922 NA NA
## 3923 NA NA
## 3924 NA NA
## 3925 6.610 32.077
## 3926 6.610 32.077
## 3927 6.610 32.077
## 3928 6.610 32.077
## 3929 6.610 32.077
## 3930 6.610 32.077
## 3931 10.604 14.604
## 3932 10.604 14.604
## 3933 10.604 14.604
## 3934 10.604 14.604
## 3935 10.604 14.604
## 3936 10.604 14.604
## 3937 12.205 28.926
## 3938 12.205 28.926
## 3939 12.205 28.926
## 3940 12.205 28.926
## 3941 12.205 28.926
## 3942 12.205 28.926
## 3943 NA NA
## 3944 NA NA
## 3945 NA NA
## 3946 NA NA
## 3947 NA NA
## 3948 NA NA
## 3949 NA NA
## 3950 NA NA
## 3951 NA NA
## 3952 NA NA
## 3953 NA NA
## 3954 NA NA
## 3955 NA NA
## 3956 NA NA
## 3957 NA NA
## 3958 NA NA
## 3959 NA NA
## 3960 NA NA
## 3961 NA NA
## 3962 NA NA
## 3963 NA NA
## 3964 NA NA
## 3965 NA NA
## 3966 NA NA
## 3967 10.351 35.559
## 3968 10.351 35.559
## 3969 10.351 35.559
## 3970 10.351 35.559
## 3971 10.351 35.559
## 3972 10.351 35.559
## 3973 NA NA
## 3974 NA NA
## 3975 NA NA
## 3976 NA NA
## 3977 NA NA
## 3978 NA NA
## 3979 NA NA
## 3980 NA NA
## 3981 NA NA
## 3982 NA NA
## 3983 NA NA
## 3984 NA NA
## 3985 NA NA
## 3986 NA NA
## 3987 NA NA
## 3988 NA NA
## 3989 NA NA
## 3990 NA NA
## 3991 0.954 27.824
## 3992 0.954 27.824
## 3993 0.954 27.824
## 3994 0.954 27.824
## 3995 0.954 27.824
## 3996 0.954 27.824
## 3997 NA NA
## 3998 NA NA
## 3999 NA NA
## 4000 NA NA
## 4001 NA NA
## 4002 NA NA
## 4003 19.675 35.481
## 4004 19.675 35.481
## 4005 19.675 35.481
## 4006 19.675 35.481
## 4007 19.675 35.481
## 4008 19.675 35.481
## 4009 NA NA
## 4010 NA NA
## 4011 NA NA
## 4012 NA NA
## 4013 NA NA
## 4014 NA NA
## 4015 20.371 29.035
## 4016 20.371 29.035
## 4017 20.371 29.035
## 4018 20.371 29.035
## 4019 20.371 29.035
## 4020 20.371 29.035
## 4021 1.477 39.206
## 4022 1.477 39.206
## 4023 1.477 39.206
## 4024 1.477 39.206
## 4025 1.477 39.206
## 4026 1.477 39.206
## 4027 NA NA
## 4028 NA NA
## 4029 NA NA
## 4030 NA NA
## 4031 NA NA
## 4032 NA NA
## 4033 29.428 64.361
## 4034 29.428 64.361
## 4035 29.428 64.361
## 4036 29.428 64.361
## 4037 29.428 64.361
## 4038 29.428 64.361
## 4039 NA NA
## 4040 NA NA
## 4041 NA NA
## 4042 NA NA
## 4043 NA NA
## 4044 NA NA
## 4045 9.549 62.561
## 4046 9.549 62.561
## 4047 9.549 62.561
## 4048 9.549 62.561
## 4049 9.549 62.561
## 4050 9.549 62.561
## 4051 NA NA
## 4052 NA NA
## 4053 NA NA
## 4054 NA NA
## 4055 NA NA
## 4056 NA NA
## 4057 NA NA
## 4058 NA NA
## 4059 NA NA
## 4060 NA NA
## 4061 NA NA
## 4062 NA NA
## 4063 NA NA
## 4064 NA NA
## 4065 NA NA
## 4066 NA NA
## 4067 NA NA
## 4068 NA NA
## 4069 NA NA
## 4070 NA NA
## 4071 NA NA
## 4072 NA NA
## 4073 NA NA
## 4074 NA NA
## 4075 NA NA
## 4076 NA NA
## 4077 NA NA
## 4078 NA NA
## 4079 NA NA
## 4080 NA NA
## 4081 NA NA
## 4082 NA NA
## 4083 NA NA
## 4084 NA NA
## 4085 NA NA
## 4086 NA NA
## 4087 NA NA
## 4088 NA NA
## 4089 NA NA
## 4090 NA NA
## 4091 NA NA
## 4092 NA NA
## 4093 39.406 54.366
## 4094 39.406 54.366
## 4095 39.406 54.366
## 4096 39.406 54.366
## 4097 39.406 54.366
## 4098 39.406 54.366
## 4099 NA NA
## 4100 NA NA
## 4101 NA NA
## 4102 NA NA
## 4103 NA NA
## 4104 NA NA
## 4105 NA NA
## 4106 NA NA
## 4107 NA NA
## 4108 NA NA
## 4109 NA NA
## 4110 NA NA
## 4111 NA NA
## 4112 NA NA
## 4113 NA NA
## 4114 NA NA
## 4115 NA NA
## 4116 NA NA
## 4117 NA NA
## 4118 NA NA
## 4119 NA NA
## 4120 NA NA
## 4121 NA NA
## 4122 NA NA
## 4123 NA NA
## 4124 NA NA
## 4125 NA NA
## 4126 NA NA
## 4127 NA NA
## 4128 NA NA
## 4129 NA NA
## 4130 NA NA
## 4131 NA NA
## 4132 NA NA
## 4133 NA NA
## 4134 NA NA
## 4135 NA NA
## 4136 NA NA
## 4137 NA NA
## 4138 NA NA
## 4139 NA NA
## 4140 NA NA
## 4141 16.278 41.912
## 4142 16.278 41.912
## 4143 16.278 41.912
## 4144 16.278 41.912
## 4145 16.278 41.912
## 4146 16.278 41.912
## 4147 NA NA
## 4148 NA NA
## 4149 NA NA
## 4150 NA NA
## 4151 NA NA
## 4152 NA NA
## 4153 NA NA
## 4154 NA NA
## 4155 NA NA
## 4156 NA NA
## 4157 NA NA
## 4158 NA NA
## 4159 NA NA
## 4160 NA NA
## 4161 NA NA
## 4162 NA NA
## 4163 NA NA
## 4164 NA NA
## 4165 NA NA
## 4166 NA NA
## 4167 NA NA
## 4168 NA NA
## 4169 NA NA
## 4170 NA NA
## 4171 NA NA
## 4172 NA NA
## 4173 NA NA
## 4174 NA NA
## 4175 NA NA
## 4176 NA NA
## 4177 NA NA
## 4178 NA NA
## 4179 NA NA
## 4180 NA NA
## 4181 NA NA
## 4182 NA NA
## 4183 NA NA
## 4184 NA NA
## 4185 NA NA
## 4186 NA NA
## 4187 NA NA
## 4188 NA NA
## 4189 NA NA
## 4190 NA NA
## 4191 NA NA
## 4192 NA NA
## 4193 NA NA
## 4194 NA NA
## 4195 NA NA
## 4196 NA NA
## 4197 NA NA
## 4198 NA NA
## 4199 NA NA
## 4200 NA NA
## 4201 NA NA
## 4202 NA NA
## 4203 NA NA
## 4204 NA NA
## 4205 NA NA
## 4206 NA NA
## 4207 5.367 32.878
## 4208 5.367 32.878
## 4209 5.367 32.878
## 4210 5.367 32.878
## 4211 5.367 32.878
## 4212 5.367 32.878
## 4213 NA NA
## 4214 NA NA
## 4215 NA NA
## 4216 NA NA
## 4217 NA NA
## 4218 NA NA
## 4219 NA NA
## 4220 NA NA
## 4221 NA NA
## 4222 NA NA
## 4223 NA NA
## 4224 NA NA
## 4225 NA NA
## 4226 NA NA
## 4227 NA NA
## 4228 NA NA
## 4229 NA NA
## 4230 NA NA
## 4231 15.815 52.410
## 4232 15.815 52.410
## 4233 15.815 52.410
## 4234 15.815 52.410
## 4235 15.815 52.410
## 4236 15.815 52.410
## 4237 NA NA
## 4238 NA NA
## 4239 NA NA
## 4240 NA NA
## 4241 NA NA
## 4242 NA NA
## 4243 NA NA
## 4244 NA NA
## 4245 NA NA
## 4246 NA NA
## 4247 NA NA
## 4248 NA NA
## 4249 NA NA
## 4250 NA NA
## 4251 NA NA
## 4252 NA NA
## 4253 NA NA
## 4254 NA NA
## 4255 NA NA
## 4256 NA NA
## 4257 NA NA
## 4258 NA NA
## 4259 NA NA
## 4260 NA NA
## 4261 10.594 22.740
## 4262 10.594 22.740
## 4263 10.594 22.740
## 4264 10.594 22.740
## 4265 10.594 22.740
## 4266 10.594 22.740
## 4267 16.337 26.353
## 4268 16.337 26.353
## 4269 16.337 26.353
## 4270 16.337 26.353
## 4271 16.337 26.353
## 4272 16.337 26.353
## 4273 NA NA
## 4274 NA NA
## 4275 NA NA
## 4276 NA NA
## 4277 NA NA
## 4278 NA NA
## 4279 NA NA
## 4280 NA NA
## 4281 NA NA
## 4282 NA NA
## 4283 NA NA
## 4284 NA NA
## 4285 NA NA
## 4286 NA NA
## 4287 NA NA
## 4288 NA NA
## 4289 NA NA
## 4290 NA NA
## 4291 NA NA
## 4292 NA NA
## 4293 NA NA
## 4294 NA NA
## 4295 NA NA
## 4296 NA NA
## 4297 25.433 51.848
## 4298 25.433 51.848
## 4299 25.433 51.848
## 4300 25.433 51.848
## 4301 25.433 51.848
## 4302 25.433 51.848
## 4303 12.712 43.632
## 4304 12.712 43.632
## 4305 12.712 43.632
## 4306 12.712 43.632
## 4307 12.712 43.632
## 4308 12.712 43.632
## 4309 NA NA
## 4310 NA NA
## 4311 NA NA
## 4312 NA NA
## 4313 NA NA
## 4314 NA NA
## 4315 NA NA
## 4316 NA NA
## 4317 NA NA
## 4318 NA NA
## 4319 NA NA
## 4320 NA NA
## 4321 NA NA
## 4322 NA NA
## 4323 NA NA
## 4324 NA NA
## 4325 NA NA
## 4326 NA NA
## 4327 NA NA
## 4328 NA NA
## 4329 NA NA
## 4330 NA NA
## 4331 NA NA
## 4332 NA NA
## 4333 27.419 43.501
## 4334 27.419 43.501
## 4335 27.419 43.501
## 4336 27.419 43.501
## 4337 27.419 43.501
## 4338 27.419 43.501
## 4339 NA NA
## 4340 NA NA
## 4341 NA NA
## 4342 NA NA
## 4343 NA NA
## 4344 NA NA
## 4345 NA NA
## 4346 NA NA
## 4347 NA NA
## 4348 NA NA
## 4349 NA NA
## 4350 NA NA
## 4351 NA NA
## 4352 NA NA
## 4353 NA NA
## 4354 NA NA
## 4355 NA NA
## 4356 NA NA
## 4357 17.880 27.600
## 4358 17.880 27.600
## 4359 17.880 27.600
## 4360 17.880 27.600
## 4361 17.880 27.600
## 4362 17.880 27.600
## 4363 NA NA
## 4364 NA NA
## 4365 NA NA
## 4366 NA NA
## 4367 NA NA
## 4368 NA NA
## 4369 13.166 32.893
## 4370 13.166 32.893
## 4371 13.166 32.893
## 4372 13.166 32.893
## 4373 13.166 32.893
## 4374 13.166 32.893
## 4375 NA NA
## 4376 NA NA
## 4377 NA NA
## 4378 NA NA
## 4379 NA NA
## 4380 NA NA
## 4381 NA NA
## 4382 NA NA
## 4383 NA NA
## 4384 NA NA
## 4385 NA NA
## 4386 NA NA
## 4387 NA NA
## 4388 NA NA
## 4389 NA NA
## 4390 NA NA
## 4391 NA NA
## 4392 NA NA
## 4393 NA NA
## 4394 NA NA
## 4395 NA NA
## 4396 NA NA
## 4397 NA NA
## 4398 NA NA
## 4399 NA NA
## 4400 NA NA
## 4401 NA NA
## 4402 NA NA
## 4403 NA NA
## 4404 NA NA
## 4405 NA NA
## 4406 NA NA
## 4407 NA NA
## 4408 NA NA
## 4409 NA NA
## 4410 NA NA
## 4411 NA NA
## 4412 NA NA
## 4413 NA NA
## 4414 NA NA
## 4415 NA NA
## 4416 NA NA
## 4417 NA NA
## 4418 NA NA
## 4419 NA NA
## 4420 NA NA
## 4421 NA NA
## 4422 NA NA
## 4423 1.359 28.999
## 4424 1.359 28.999
## 4425 1.359 28.999
## 4426 1.359 28.999
## 4427 1.359 28.999
## 4428 1.359 28.999
## 4429 NA NA
## 4430 NA NA
## 4431 NA NA
## 4432 NA NA
## 4433 NA NA
## 4434 NA NA
## 4435 NA NA
## 4436 NA NA
## 4437 NA NA
## 4438 NA NA
## 4439 NA NA
## 4440 NA NA
## 4441 NA NA
## 4442 NA NA
## 4443 NA NA
## 4444 NA NA
## 4445 NA NA
## 4446 NA NA
## 4447 NA NA
## 4448 NA NA
## 4449 NA NA
## 4450 NA NA
## 4451 NA NA
## 4452 NA NA
## 4453 33.323 53.431
## 4454 33.323 53.431
## 4455 33.323 53.431
## 4456 33.323 53.431
## 4457 33.323 53.431
## 4458 33.323 53.431
## 4459 27.064 51.157
## 4460 27.064 51.157
## 4461 27.064 51.157
## 4462 27.064 51.157
## 4463 27.064 51.157
## 4464 27.064 51.157
## 4465 NA NA
## 4466 NA NA
## 4467 NA NA
## 4468 NA NA
## 4469 NA NA
## 4470 NA NA
## 4471 NA NA
## 4472 NA NA
## 4473 NA NA
## 4474 NA NA
## 4475 NA NA
## 4476 NA NA
## 4477 18.962 76.501
## 4478 18.962 76.501
## 4479 18.962 76.501
## 4480 18.962 76.501
## 4481 18.962 76.501
## 4482 18.962 76.501
## 4483 NA NA
## 4484 NA NA
## 4485 NA NA
## 4486 NA NA
## 4487 NA NA
## 4488 NA NA
## 4489 14.345 57.395
## 4490 14.345 57.395
## 4491 14.345 57.395
## 4492 14.345 57.395
## 4493 14.345 57.395
## 4494 14.345 57.395
## 4495 NA NA
## 4496 NA NA
## 4497 NA NA
## 4498 NA NA
## 4499 NA NA
## 4500 NA NA
## 4501 9.850 46.194
## 4502 9.850 46.194
## 4503 9.850 46.194
## 4504 9.850 46.194
## 4505 9.850 46.194
## 4506 9.850 46.194
## 4507 31.410 51.453
## 4508 31.410 51.453
## 4509 31.410 51.453
## 4510 31.410 51.453
## 4511 31.410 51.453
## 4512 31.410 51.453
## 4513 NA NA
## 4514 NA NA
## 4515 NA NA
## 4516 NA NA
## 4517 NA NA
## 4518 NA NA
## 4519 NA NA
## 4520 NA NA
## 4521 NA NA
## 4522 NA NA
## 4523 NA NA
## 4524 NA NA
## 4525 70.726 106.612
## 4526 70.726 106.612
## 4527 70.726 106.612
## 4528 70.726 106.612
## 4529 70.726 106.612
## 4530 70.726 106.612
## 4531 NA NA
## 4532 NA NA
## 4533 NA NA
## 4534 NA NA
## 4535 NA NA
## 4536 NA NA
## 4537 15.636 34.179
## 4538 15.636 34.179
## 4539 15.636 34.179
## 4540 15.636 34.179
## 4541 15.636 34.179
## 4542 15.636 34.179
## 4543 19.530 39.333
## 4544 19.530 39.333
## 4545 19.530 39.333
## 4546 19.530 39.333
## 4547 19.530 39.333
## 4548 19.530 39.333
## 4549 10.815 52.836
## 4550 10.815 52.836
## 4551 10.815 52.836
## 4552 10.815 52.836
## 4553 10.815 52.836
## 4554 10.815 52.836
## 4555 NA NA
## 4556 NA NA
## 4557 NA NA
## 4558 NA NA
## 4559 NA NA
## 4560 NA NA
## 4561 NA NA
## 4562 NA NA
## 4563 NA NA
## 4564 NA NA
## 4565 NA NA
## 4566 NA NA
## 4567 NA NA
## 4568 NA NA
## 4569 NA NA
## 4570 NA NA
## 4571 NA NA
## 4572 NA NA
## 4573 41.038 82.574
## 4574 41.038 82.574
## 4575 41.038 82.574
## 4576 41.038 82.574
## 4577 41.038 82.574
## 4578 41.038 82.574
## 4579 NA NA
## 4580 NA NA
## 4581 NA NA
## 4582 NA NA
## 4583 NA NA
## 4584 NA NA
## 4585 NA NA
## 4586 NA NA
## 4587 NA NA
## 4588 NA NA
## 4589 NA NA
## 4590 NA NA
## 4591 NA NA
## 4592 NA NA
## 4593 NA NA
## 4594 NA NA
## 4595 NA NA
## 4596 NA NA
## 4597 NA NA
## 4598 NA NA
## 4599 NA NA
## 4600 NA NA
## 4601 NA NA
## 4602 NA NA
## 4603 NA NA
## 4604 NA NA
## 4605 NA NA
## 4606 NA NA
## 4607 NA NA
## 4608 NA NA
## 4609 25.135 52.580
## 4610 25.135 52.580
## 4611 25.135 52.580
## 4612 25.135 52.580
## 4613 25.135 52.580
## 4614 25.135 52.580
## 4615 27.030 44.595
## 4616 27.030 44.595
## 4617 27.030 44.595
## 4618 27.030 44.595
## 4619 27.030 44.595
## 4620 27.030 44.595
## 4621 NA NA
## 4622 NA NA
## 4623 NA NA
## 4624 NA NA
## 4625 NA NA
## 4626 NA NA
## 4627 76.434 113.426
## 4628 76.434 113.426
## 4629 76.434 113.426
## 4630 76.434 113.426
## 4631 76.434 113.426
## 4632 76.434 113.426
## 4633 10.438 32.527
## 4634 10.438 32.527
## 4635 10.438 32.527
## 4636 10.438 32.527
## 4637 10.438 32.527
## 4638 10.438 32.527
## 4639 85.478 123.152
## 4640 85.478 123.152
## 4641 85.478 123.152
## 4642 85.478 123.152
## 4643 85.478 123.152
## 4644 85.478 123.152
## 4645 NA NA
## 4646 NA NA
## 4647 NA NA
## 4648 NA NA
## 4649 NA NA
## 4650 NA NA
## 4651 20.090 52.510
## 4652 20.090 52.510
## 4653 20.090 52.510
## 4654 20.090 52.510
## 4655 20.090 52.510
## 4656 20.090 52.510
## 4657 NA NA
## 4658 NA NA
## 4659 NA NA
## 4660 NA NA
## 4661 NA NA
## 4662 NA NA
## 4663 NA NA
## 4664 NA NA
## 4665 NA NA
## 4666 NA NA
## 4667 NA NA
## 4668 NA NA
## 4669 NA NA
## 4670 NA NA
## 4671 NA NA
## 4672 NA NA
## 4673 NA NA
## 4674 NA NA
## 4675 NA NA
## 4676 NA NA
## 4677 NA NA
## 4678 NA NA
## 4679 NA NA
## 4680 NA NA
## 4681 NA NA
## 4682 NA NA
## 4683 NA NA
## 4684 NA NA
## 4685 NA NA
## 4686 NA NA
## 4687 NA NA
## 4688 NA NA
## 4689 NA NA
## 4690 NA NA
## 4691 NA NA
## 4692 NA NA
## 4693 NA NA
## 4694 NA NA
## 4695 NA NA
## 4696 NA NA
## 4697 NA NA
## 4698 NA NA
## 4699 9.365 19.354
## 4700 9.365 19.354
## 4701 9.365 19.354
## 4702 9.365 19.354
## 4703 9.365 19.354
## 4704 9.365 19.354
## 4705 NA NA
## 4706 NA NA
## 4707 NA NA
## 4708 NA NA
## 4709 NA NA
## 4710 NA NA
## 4711 NA NA
## 4712 NA NA
## 4713 NA NA
## 4714 NA NA
## 4715 NA NA
## 4716 NA NA
## 4717 NA NA
## 4718 NA NA
## 4719 NA NA
## 4720 NA NA
## 4721 NA NA
## 4722 NA NA
## 4723 NA NA
## 4724 NA NA
## 4725 NA NA
## 4726 NA NA
## 4727 NA NA
## 4728 NA NA
## 4729 NA NA
## 4730 NA NA
## 4731 NA NA
## 4732 NA NA
## 4733 NA NA
## 4734 NA NA
## 4735 13.600 30.312
## 4736 13.600 30.312
## 4737 13.600 30.312
## 4738 13.600 30.312
## 4739 13.600 30.312
## 4740 13.600 30.312
## 4741 NA NA
## 4742 NA NA
## 4743 NA NA
## 4744 NA NA
## 4745 NA NA
## 4746 NA NA
## 4747 NA NA
## 4748 NA NA
## 4749 NA NA
## 4750 NA NA
## 4751 NA NA
## 4752 NA NA
## 4753 NA NA
## 4754 NA NA
## 4755 NA NA
## 4756 NA NA
## 4757 NA NA
## 4758 NA NA
## 4759 NA NA
## 4760 NA NA
## 4761 NA NA
## 4762 NA NA
## 4763 NA NA
## 4764 NA NA
## 4765 NA NA
## 4766 NA NA
## 4767 NA NA
## 4768 NA NA
## 4769 NA NA
## 4770 NA NA
## 4771 NA NA
## 4772 NA NA
## 4773 NA NA
## 4774 NA NA
## 4775 NA NA
## 4776 NA NA
## 4777 NA NA
## 4778 NA NA
## 4779 NA NA
## 4780 NA NA
## 4781 NA NA
## 4782 NA NA
## 4783 NA NA
## 4784 NA NA
## 4785 NA NA
## 4786 NA NA
## 4787 NA NA
## 4788 NA NA
## 4789 6.635 28.101
## 4790 6.635 28.101
## 4791 6.635 28.101
## 4792 6.635 28.101
## 4793 6.635 28.101
## 4794 6.635 28.101
## 4795 NA NA
## 4796 NA NA
## 4797 NA NA
## 4798 NA NA
## 4799 NA NA
## 4800 NA NA
## 4801 NA NA
## 4802 NA NA
## 4803 NA NA
## 4804 NA NA
## 4805 NA NA
## 4806 NA NA
## 4807 NA NA
## 4808 NA NA
## 4809 NA NA
## 4810 NA NA
## 4811 NA NA
## 4812 NA NA
## 4813 23.314 92.397
## 4814 23.314 92.397
## 4815 23.314 92.397
## 4816 23.314 92.397
## 4817 23.314 92.397
## 4818 23.314 92.397
## 4819 NA NA
## 4820 NA NA
## 4821 NA NA
## 4822 NA NA
## 4823 NA NA
## 4824 NA NA
## 4825 NA NA
## 4826 NA NA
## 4827 NA NA
## 4828 NA NA
## 4829 NA NA
## 4830 NA NA
## 4831 NA NA
## 4832 NA NA
## 4833 NA NA
## 4834 NA NA
## 4835 NA NA
## 4836 NA NA
## 4837 11.016 103.732
## 4838 11.016 103.732
## 4839 11.016 103.732
## 4840 11.016 103.732
## 4841 11.016 103.732
## 4842 11.016 103.732
## 4843 NA NA
## 4844 NA NA
## 4845 NA NA
## 4846 NA NA
## 4847 NA NA
## 4848 NA NA
## 4849 NA NA
## 4850 NA NA
## 4851 NA NA
## 4852 NA NA
## 4853 NA NA
## 4854 NA NA
## 4855 NA NA
## 4856 NA NA
## 4857 NA NA
## 4858 NA NA
## 4859 NA NA
## 4860 NA NA
## 4861 NA NA
## 4862 NA NA
## 4863 NA NA
## 4864 NA NA
## 4865 NA NA
## 4866 NA NA
## 4867 NA NA
## 4868 NA NA
## 4869 NA NA
## 4870 NA NA
## 4871 NA NA
## 4872 NA NA
## 4873 NA NA
## 4874 NA NA
## 4875 NA NA
## 4876 NA NA
## 4877 NA NA
## 4878 NA NA
## 4879 NA NA
## 4880 NA NA
## 4881 NA NA
## 4882 NA NA
## 4883 NA NA
## 4884 NA NA
## 4885 4.436 67.744
## 4886 4.436 67.744
## 4887 4.436 67.744
## 4888 4.436 67.744
## 4889 4.436 67.744
## 4890 4.436 67.744
## 4891 NA NA
## 4892 NA NA
## 4893 NA NA
## 4894 NA NA
## 4895 NA NA
## 4896 NA NA
## 4897 NA NA
## 4898 NA NA
## 4899 NA NA
## 4900 NA NA
## 4901 NA NA
## 4902 NA NA
## 4903 NA NA
## 4904 NA NA
## 4905 NA NA
## 4906 NA NA
## 4907 NA NA
## 4908 NA NA
## 4909 NA NA
## 4910 NA NA
## 4911 NA NA
## 4912 NA NA
## 4913 NA NA
## 4914 NA NA
## 4915 NA NA
## 4916 NA NA
## 4917 NA NA
## 4918 NA NA
## 4919 NA NA
## 4920 NA NA
## 4921 NA NA
## 4922 NA NA
## 4923 NA NA
## 4924 NA NA
## 4925 NA NA
## 4926 NA NA
## 4927 NA NA
## 4928 NA NA
## 4929 NA NA
## 4930 NA NA
## 4931 NA NA
## 4932 NA NA
## 4933 NA NA
## 4934 NA NA
## 4935 NA NA
## 4936 NA NA
## 4937 NA NA
## 4938 NA NA
## 4939 6.911 15.924
## 4940 6.911 15.924
## 4941 6.911 15.924
## 4942 6.911 15.924
## 4943 6.911 15.924
## 4944 6.911 15.924
## 4945 11.219 21.396
## 4946 11.219 21.396
## 4947 11.219 21.396
## 4948 11.219 21.396
## 4949 11.219 21.396
## 4950 11.219 21.396
## 4951 NA NA
## 4952 NA NA
## 4953 NA NA
## 4954 NA NA
## 4955 NA NA
## 4956 NA NA
## 4957 NA NA
## 4958 NA NA
## 4959 NA NA
## 4960 NA NA
## 4961 NA NA
## 4962 NA NA
## 4963 NA NA
## 4964 NA NA
## 4965 NA NA
## 4966 NA NA
## 4967 NA NA
## 4968 NA NA
## 4969 NA NA
## 4970 NA NA
## 4971 NA NA
## 4972 NA NA
## 4973 NA NA
## 4974 NA NA
## 4975 NA NA
## 4976 NA NA
## 4977 NA NA
## 4978 NA NA
## 4979 NA NA
## 4980 NA NA
## 4981 26.368 73.542
## 4982 26.368 73.542
## 4983 26.368 73.542
## 4984 26.368 73.542
## 4985 26.368 73.542
## 4986 26.368 73.542
## 4987 NA NA
## 4988 NA NA
## 4989 NA NA
## 4990 NA NA
## 4991 NA NA
## 4992 NA NA
## 4993 NA NA
## 4994 NA NA
## 4995 NA NA
## 4996 NA NA
## 4997 NA NA
## 4998 NA NA
## 4999 NA NA
## 5000 NA NA
## 5001 NA NA
## 5002 NA NA
## 5003 NA NA
## 5004 NA NA
## 5005 NA NA
## 5006 NA NA
## 5007 NA NA
## 5008 NA NA
## 5009 NA NA
## 5010 NA NA
## 5011 NA NA
## 5012 NA NA
## 5013 NA NA
## 5014 NA NA
## 5015 NA NA
## 5016 NA NA
## 5017 NA NA
## 5018 NA NA
## 5019 NA NA
## 5020 NA NA
## 5021 NA NA
## 5022 NA NA
## 5023 NA NA
## 5024 NA NA
## 5025 NA NA
## 5026 NA NA
## 5027 NA NA
## 5028 NA NA
## 5029 NA NA
## 5030 NA NA
## 5031 NA NA
## 5032 NA NA
## 5033 NA NA
## 5034 NA NA
## 5035 NA NA
## 5036 NA NA
## 5037 NA NA
## 5038 NA NA
## 5039 NA NA
## 5040 NA NA
## 5041 NA NA
## 5042 NA NA
## 5043 NA NA
## 5044 NA NA
## 5045 NA NA
## 5046 NA NA
## 5047 NA NA
## 5048 NA NA
## 5049 NA NA
## 5050 NA NA
## 5051 NA NA
## 5052 NA NA
## 5053 21.715 52.377
## 5054 21.715 52.377
## 5055 21.715 52.377
## 5056 21.715 52.377
## 5057 21.715 52.377
## 5058 21.715 52.377
## 5059 NA NA
## 5060 NA NA
## 5061 NA NA
## 5062 NA NA
## 5063 NA NA
## 5064 NA NA
## 5065 3.537 54.259
## 5066 3.537 54.259
## 5067 3.537 54.259
## 5068 3.537 54.259
## 5069 3.537 54.259
## 5070 3.537 54.259
## 5071 36.001 67.957
## 5072 36.001 67.957
## 5073 36.001 67.957
## 5074 36.001 67.957
## 5075 36.001 67.957
## 5076 36.001 67.957
## 5077 3.122 40.446
## 5078 3.122 40.446
## 5079 3.122 40.446
## 5080 3.122 40.446
## 5081 3.122 40.446
## 5082 3.122 40.446
## 5083 24.401 50.753
## 5084 24.401 50.753
## 5085 24.401 50.753
## 5086 24.401 50.753
## 5087 24.401 50.753
## 5088 24.401 50.753
## 5089 NA NA
## 5090 NA NA
## 5091 NA NA
## 5092 NA NA
## 5093 NA NA
## 5094 NA NA
## 5095 13.091 24.273
## 5096 13.091 24.273
## 5097 13.091 24.273
## 5098 13.091 24.273
## 5099 13.091 24.273
## 5100 13.091 24.273
## 5101 NA NA
## 5102 NA NA
## 5103 NA NA
## 5104 NA NA
## 5105 NA NA
## 5106 NA NA
## 5107 NA NA
## 5108 NA NA
## 5109 NA NA
## 5110 NA NA
## 5111 NA NA
## 5112 NA NA
## 5113 NA NA
## 5114 NA NA
## 5115 NA NA
## 5116 NA NA
## 5117 NA NA
## 5118 NA NA
## 5119 NA NA
## 5120 NA NA
## 5121 NA NA
## 5122 NA NA
## 5123 NA NA
## 5124 NA NA
## 5125 NA NA
## 5126 NA NA
## 5127 NA NA
## 5128 NA NA
## 5129 NA NA
## 5130 NA NA
## 5131 NA NA
## 5132 NA NA
## 5133 NA NA
## 5134 NA NA
## 5135 NA NA
## 5136 NA NA
## 5137 NA NA
## 5138 NA NA
## 5139 NA NA
## 5140 NA NA
## 5141 NA NA
## 5142 NA NA
## 5143 3.920 78.182
## 5144 3.920 78.182
## 5145 3.920 78.182
## 5146 3.920 78.182
## 5147 3.920 78.182
## 5148 3.920 78.182
## 5149 NA NA
## 5150 NA NA
## 5151 NA NA
## 5152 NA NA
## 5153 NA NA
## 5154 NA NA
## 5155 NA NA
## 5156 NA NA
## 5157 NA NA
## 5158 NA NA
## 5159 NA NA
## 5160 NA NA
## 5161 NA NA
## 5162 NA NA
## 5163 NA NA
## 5164 NA NA
## 5165 NA NA
## 5166 NA NA
## 5167 NA NA
## 5168 NA NA
## 5169 NA NA
## 5170 NA NA
## 5171 NA NA
## 5172 NA NA
## 5173 NA NA
## 5174 NA NA
## 5175 NA NA
## 5176 NA NA
## 5177 NA NA
## 5178 NA NA
## 5179 NA NA
## 5180 NA NA
## 5181 NA NA
## 5182 NA NA
## 5183 NA NA
## 5184 NA NA
## 5185 44.062 70.548
## 5186 44.062 70.548
## 5187 44.062 70.548
## 5188 44.062 70.548
## 5189 44.062 70.548
## 5190 44.062 70.548
## 5191 NA NA
## 5192 NA NA
## 5193 NA NA
## 5194 NA NA
## 5195 NA NA
## 5196 NA NA
## 5197 NA NA
## 5198 NA NA
## 5199 NA NA
## 5200 NA NA
## 5201 NA NA
## 5202 NA NA
## 5203 NA NA
## 5204 NA NA
## 5205 NA NA
## 5206 NA NA
## 5207 NA NA
## 5208 NA NA
## 5209 NA NA
## 5210 NA NA
## 5211 NA NA
## 5212 NA NA
## 5213 NA NA
## 5214 NA NA
## 5215 NA NA
## 5216 NA NA
## 5217 NA NA
## 5218 NA NA
## 5219 NA NA
## 5220 NA NA
## 5221 39.017 91.691
## 5222 39.017 91.691
## 5223 39.017 91.691
## 5224 39.017 91.691
## 5225 39.017 91.691
## 5226 39.017 91.691
## 5227 NA NA
## 5228 NA NA
## 5229 NA NA
## 5230 NA NA
## 5231 NA NA
## 5232 NA NA
## 5233 75.615 168.370
## 5234 75.615 168.370
## 5235 75.615 168.370
## 5236 75.615 168.370
## 5237 75.615 168.370
## 5238 75.615 168.370
## 5239 NA NA
## 5240 NA NA
## 5241 NA NA
## 5242 NA NA
## 5243 NA NA
## 5244 NA NA
## 5245 10.782 25.378
## 5246 10.782 25.378
## 5247 10.782 25.378
## 5248 10.782 25.378
## 5249 10.782 25.378
## 5250 10.782 25.378
## 5251 NA NA
## 5252 NA NA
## 5253 NA NA
## 5254 NA NA
## 5255 NA NA
## 5256 NA NA
## 5257 NA NA
## 5258 NA NA
## 5259 NA NA
## 5260 NA NA
## 5261 NA NA
## 5262 NA NA
## 5263 4.466 99.071
## 5264 4.466 99.071
## 5265 4.466 99.071
## 5266 4.466 99.071
## 5267 4.466 99.071
## 5268 4.466 99.071
## 5269 NA NA
## 5270 NA NA
## 5271 NA NA
## 5272 NA NA
## 5273 NA NA
## 5274 NA NA
## 5275 NA NA
## 5276 NA NA
## 5277 NA NA
## 5278 NA NA
## 5279 NA NA
## 5280 NA NA
## 5281 NA NA
## 5282 NA NA
## 5283 NA NA
## 5284 NA NA
## 5285 NA NA
## 5286 NA NA
## 5287 NA NA
## 5288 NA NA
## 5289 NA NA
## 5290 NA NA
## 5291 NA NA
## 5292 NA NA
## 5293 NA NA
## 5294 NA NA
## 5295 NA NA
## 5296 NA NA
## 5297 NA NA
## 5298 NA NA
## 5299 NA NA
## 5300 NA NA
## 5301 NA NA
## 5302 NA NA
## 5303 NA NA
## 5304 NA NA
## 5305 33.108 108.834
## 5306 33.108 108.834
## 5307 33.108 108.834
## 5308 33.108 108.834
## 5309 33.108 108.834
## 5310 33.108 108.834
## 5311 18.148 25.112
## 5312 18.148 25.112
## 5313 18.148 25.112
## 5314 18.148 25.112
## 5315 18.148 25.112
## 5316 18.148 25.112
## 5317 NA NA
## 5318 NA NA
## 5319 NA NA
## 5320 NA NA
## 5321 NA NA
## 5322 NA NA
## 5323 NA NA
## 5324 NA NA
## 5325 NA NA
## 5326 NA NA
## 5327 NA NA
## 5328 NA NA
## 5329 NA NA
## 5330 NA NA
## 5331 NA NA
## 5332 NA NA
## 5333 NA NA
## 5334 NA NA
## 5335 NA NA
## 5336 NA NA
## 5337 NA NA
## 5338 NA NA
## 5339 NA NA
## 5340 NA NA
## 5341 NA NA
## 5342 NA NA
## 5343 NA NA
## 5344 NA NA
## 5345 NA NA
## 5346 NA NA
## 5347 NA NA
## 5348 NA NA
## 5349 NA NA
## 5350 NA NA
## 5351 NA NA
## 5352 NA NA
## 5353 NA NA
## 5354 NA NA
## 5355 NA NA
## 5356 NA NA
## 5357 NA NA
## 5358 NA NA
## 5359 25.130 51.686
## 5360 25.130 51.686
## 5361 25.130 51.686
## 5362 25.130 51.686
## 5363 25.130 51.686
## 5364 25.130 51.686
## 5365 36.395 103.570
## 5366 36.395 103.570
## 5367 36.395 103.570
## 5368 36.395 103.570
## 5369 36.395 103.570
## 5370 36.395 103.570
## 5371 NA NA
## 5372 NA NA
## 5373 NA NA
## 5374 NA NA
## 5375 NA NA
## 5376 NA NA
## 5377 NA NA
## 5378 NA NA
## 5379 NA NA
## 5380 NA NA
## 5381 NA NA
## 5382 NA NA
## 5383 NA NA
## 5384 NA NA
## 5385 NA NA
## 5386 NA NA
## 5387 NA NA
## 5388 NA NA
## 5389 NA NA
## 5390 NA NA
## 5391 NA NA
## 5392 NA NA
## 5393 NA NA
## 5394 NA NA
## 5395 NA NA
## 5396 NA NA
## 5397 NA NA
## 5398 NA NA
## 5399 NA NA
## 5400 NA NA
## 5401 NA NA
## 5402 NA NA
## 5403 NA NA
## 5404 NA NA
## 5405 NA NA
## 5406 NA NA
## 5407 NA NA
## 5408 NA NA
## 5409 NA NA
## 5410 NA NA
## 5411 NA NA
## 5412 NA NA
## 5413 16.127 27.900
## 5414 16.127 27.900
## 5415 16.127 27.900
## 5416 16.127 27.900
## 5417 16.127 27.900
## 5418 16.127 27.900
## 5419 NA NA
## 5420 NA NA
## 5421 NA NA
## 5422 NA NA
## 5423 NA NA
## 5424 NA NA
## 5425 NA NA
## 5426 NA NA
## 5427 NA NA
## 5428 NA NA
## 5429 NA NA
## 5430 NA NA
## 5431 NA NA
## 5432 NA NA
## 5433 NA NA
## 5434 NA NA
## 5435 NA NA
## 5436 NA NA
## 5437 5.570 16.473
## 5438 5.570 16.473
## 5439 5.570 16.473
## 5440 5.570 16.473
## 5441 5.570 16.473
## 5442 5.570 16.473
## 5443 NA NA
## 5444 NA NA
## 5445 NA NA
## 5446 NA NA
## 5447 NA NA
## 5448 NA NA
## 5449 NA NA
## 5450 NA NA
## 5451 NA NA
## 5452 NA NA
## 5453 NA NA
## 5454 NA NA
## 5455 NA NA
## 5456 NA NA
## 5457 NA NA
## 5458 NA NA
## 5459 NA NA
## 5460 NA NA
## 5461 15.472 21.652
## 5462 15.472 21.652
## 5463 15.472 21.652
## 5464 15.472 21.652
## 5465 15.472 21.652
## 5466 15.472 21.652
## 5467 NA NA
## 5468 NA NA
## 5469 NA NA
## 5470 NA NA
## 5471 NA NA
## 5472 NA NA
## 5473 NA NA
## 5474 NA NA
## 5475 NA NA
## 5476 NA NA
## 5477 NA NA
## 5478 NA NA
## 5479 NA NA
## 5480 NA NA
## 5481 NA NA
## 5482 NA NA
## 5483 NA NA
## 5484 NA NA
## 5485 NA NA
## 5486 NA NA
## 5487 NA NA
## 5488 NA NA
## 5489 NA NA
## 5490 NA NA
## 5491 1.502 30.386
## 5492 1.502 30.386
## 5493 1.502 30.386
## 5494 1.502 30.386
## 5495 1.502 30.386
## 5496 1.502 30.386
## 5497 NA NA
## 5498 NA NA
## 5499 NA NA
## 5500 NA NA
## 5501 NA NA
## 5502 NA NA
## 5503 NA NA
## 5504 NA NA
## 5505 NA NA
## 5506 NA NA
## 5507 NA NA
## 5508 NA NA
## 5509 8.009 22.021
## 5510 8.009 22.021
## 5511 8.009 22.021
## 5512 8.009 22.021
## 5513 8.009 22.021
## 5514 8.009 22.021
## 5515 NA NA
## 5516 NA NA
## 5517 NA NA
## 5518 NA NA
## 5519 NA NA
## 5520 NA NA
## 5521 NA NA
## 5522 NA NA
## 5523 NA NA
## 5524 NA NA
## 5525 NA NA
## 5526 NA NA
## 5527 NA NA
## 5528 NA NA
## 5529 NA NA
## 5530 NA NA
## 5531 NA NA
## 5532 NA NA
## 5533 NA NA
## 5534 NA NA
## 5535 NA NA
## 5536 NA NA
## 5537 NA NA
## 5538 NA NA
## 5539 9.093 14.085
## 5540 9.093 14.085
## 5541 9.093 14.085
## 5542 9.093 14.085
## 5543 9.093 14.085
## 5544 9.093 14.085
## 5545 14.165 31.402
## 5546 14.165 31.402
## 5547 14.165 31.402
## 5548 14.165 31.402
## 5549 14.165 31.402
## 5550 14.165 31.402
## 5551 NA NA
## 5552 NA NA
## 5553 NA NA
## 5554 NA NA
## 5555 NA NA
## 5556 NA NA
## 5557 0.930 51.517
## 5558 0.930 51.517
## 5559 0.930 51.517
## 5560 0.930 51.517
## 5561 0.930 51.517
## 5562 0.930 51.517
## 5563 NA NA
## 5564 NA NA
## 5565 NA NA
## 5566 NA NA
## 5567 NA NA
## 5568 NA NA
## 5569 NA NA
## 5570 NA NA
## 5571 NA NA
## 5572 NA NA
## 5573 NA NA
## 5574 NA NA
## 5575 NA NA
## 5576 NA NA
## 5577 NA NA
## 5578 NA NA
## 5579 NA NA
## 5580 NA NA
## 5581 NA NA
## 5582 NA NA
## 5583 NA NA
## 5584 NA NA
## 5585 NA NA
## 5586 NA NA
## 5587 NA NA
## 5588 NA NA
## 5589 NA NA
## 5590 NA NA
## 5591 NA NA
## 5592 NA NA
## 5593 NA NA
## 5594 NA NA
## 5595 NA NA
## 5596 NA NA
## 5597 NA NA
## 5598 NA NA
## 5599 NA NA
## 5600 NA NA
## 5601 NA NA
## 5602 NA NA
## 5603 NA NA
## 5604 NA NA
## 5605 NA NA
## 5606 NA NA
## 5607 NA NA
## 5608 NA NA
## 5609 NA NA
## 5610 NA NA
## 5611 NA NA
## 5612 NA NA
## 5613 NA NA
## 5614 NA NA
## 5615 NA NA
## 5616 NA NA
## 5617 NA NA
## 5618 NA NA
## 5619 NA NA
## 5620 NA NA
## 5621 NA NA
## 5622 NA NA
## 5623 NA NA
## 5624 NA NA
## 5625 NA NA
## 5626 NA NA
## 5627 NA NA
## 5628 NA NA
## 5629 NA NA
## 5630 NA NA
## 5631 NA NA
## 5632 NA NA
## 5633 NA NA
## 5634 NA NA
## 5635 NA NA
## 5636 NA NA
## 5637 NA NA
## 5638 NA NA
## 5639 NA NA
## 5640 NA NA
## 5641 NA NA
## 5642 NA NA
## 5643 NA NA
## 5644 NA NA
## 5645 NA NA
## 5646 NA NA
## 5647 NA NA
## 5648 NA NA
## 5649 NA NA
## 5650 NA NA
## 5651 NA NA
## 5652 NA NA
## 5653 16.887 37.583
## 5654 16.887 37.583
## 5655 16.887 37.583
## 5656 16.887 37.583
## 5657 16.887 37.583
## 5658 16.887 37.583
## 5659 NA NA
## 5660 NA NA
## 5661 NA NA
## 5662 NA NA
## 5663 NA NA
## 5664 NA NA
## 5665 NA NA
## 5666 NA NA
## 5667 NA NA
## 5668 NA NA
## 5669 NA NA
## 5670 NA NA
## 5671 NA NA
## 5672 NA NA
## 5673 NA NA
## 5674 NA NA
## 5675 NA NA
## 5676 NA NA
## 5677 NA NA
## 5678 NA NA
## 5679 NA NA
## 5680 NA NA
## 5681 NA NA
## 5682 NA NA
## 5683 NA NA
## 5684 NA NA
## 5685 NA NA
## 5686 NA NA
## 5687 NA NA
## 5688 NA NA
## 5689 NA NA
## 5690 NA NA
## 5691 NA NA
## 5692 NA NA
## 5693 NA NA
## 5694 NA NA
## 5695 NA NA
## 5696 NA NA
## 5697 NA NA
## 5698 NA NA
## 5699 NA NA
## 5700 NA NA
## 5701 NA NA
## 5702 NA NA
## 5703 NA NA
## 5704 NA NA
## 5705 NA NA
## 5706 NA NA
## 5707 NA NA
## 5708 NA NA
## 5709 NA NA
## 5710 NA NA
## 5711 NA NA
## 5712 NA NA
## 5713 NA NA
## 5714 NA NA
## 5715 NA NA
## 5716 NA NA
## 5717 NA NA
## 5718 NA NA
## 5719 2.540 39.236
## 5720 2.540 39.236
## 5721 2.540 39.236
## 5722 2.540 39.236
## 5723 2.540 39.236
## 5724 2.540 39.236
## 5725 NA NA
## 5726 NA NA
## 5727 NA NA
## 5728 NA NA
## 5729 NA NA
## 5730 NA NA
## 5731 NA NA
## 5732 NA NA
## 5733 NA NA
## 5734 NA NA
## 5735 NA NA
## 5736 NA NA
## 5737 NA NA
## 5738 NA NA
## 5739 NA NA
## 5740 NA NA
## 5741 NA NA
## 5742 NA NA
## 5743 NA NA
## 5744 NA NA
## 5745 NA NA
## 5746 NA NA
## 5747 NA NA
## 5748 NA NA
## 5749 NA NA
## 5750 NA NA
## 5751 NA NA
## 5752 NA NA
## 5753 NA NA
## 5754 NA NA
## 5755 NA NA
## 5756 NA NA
## 5757 NA NA
## 5758 NA NA
## 5759 NA NA
## 5760 NA NA
## 5761 7.301 30.655
## 5762 7.301 30.655
## 5763 7.301 30.655
## 5764 7.301 30.655
## 5765 7.301 30.655
## 5766 7.301 30.655
## 5767 NA NA
## 5768 NA NA
## 5769 NA NA
## 5770 NA NA
## 5771 NA NA
## 5772 NA NA
## 5773 NA NA
## 5774 NA NA
## 5775 NA NA
## 5776 NA NA
## 5777 NA NA
## 5778 NA NA
## 5779 NA NA
## 5780 NA NA
## 5781 NA NA
## 5782 NA NA
## 5783 NA NA
## 5784 NA NA
## 5785 2.273 32.797
## 5786 2.273 32.797
## 5787 2.273 32.797
## 5788 2.273 32.797
## 5789 2.273 32.797
## 5790 2.273 32.797
## 5791 NA NA
## 5792 NA NA
## 5793 NA NA
## 5794 NA NA
## 5795 NA NA
## 5796 NA NA
## 5797 NA NA
## 5798 NA NA
## 5799 NA NA
## 5800 NA NA
## 5801 NA NA
## 5802 NA NA
## 5803 14.336 46.707
## 5804 14.336 46.707
## 5805 14.336 46.707
## 5806 14.336 46.707
## 5807 14.336 46.707
## 5808 14.336 46.707
## 5809 NA NA
## 5810 NA NA
## 5811 NA NA
## 5812 NA NA
## 5813 NA NA
## 5814 NA NA
## 5815 NA NA
## 5816 NA NA
## 5817 NA NA
## 5818 NA NA
## 5819 NA NA
## 5820 NA NA
## 5821 NA NA
## 5822 NA NA
## 5823 NA NA
## 5824 NA NA
## 5825 NA NA
## 5826 NA NA
## 5827 NA NA
## 5828 NA NA
## 5829 NA NA
## 5830 NA NA
## 5831 NA NA
## 5832 NA NA
## 5833 NA NA
## 5834 NA NA
## 5835 NA NA
## 5836 NA NA
## 5837 NA NA
## 5838 NA NA
## 5839 NA NA
## 5840 NA NA
## 5841 NA NA
## 5842 NA NA
## 5843 NA NA
## 5844 NA NA
## 5845 19.700 49.360
## 5846 19.700 49.360
## 5847 19.700 49.360
## 5848 19.700 49.360
## 5849 19.700 49.360
## 5850 19.700 49.360
## 5851 9.869 46.572
## 5852 9.869 46.572
## 5853 9.869 46.572
## 5854 9.869 46.572
## 5855 9.869 46.572
## 5856 9.869 46.572
## 5857 42.902 69.529
## 5858 42.902 69.529
## 5859 42.902 69.529
## 5860 42.902 69.529
## 5861 42.902 69.529
## 5862 42.902 69.529
## 5863 56.103 79.937
## 5864 56.103 79.937
## 5865 56.103 79.937
## 5866 56.103 79.937
## 5867 56.103 79.937
## 5868 56.103 79.937
## 5869 NA NA
## 5870 NA NA
## 5871 NA NA
## 5872 NA NA
## 5873 NA NA
## 5874 NA NA
## 5875 NA NA
## 5876 NA NA
## 5877 NA NA
## 5878 NA NA
## 5879 NA NA
## 5880 NA NA
## 5881 30.529 104.589
## 5882 30.529 104.589
## 5883 30.529 104.589
## 5884 30.529 104.589
## 5885 30.529 104.589
## 5886 30.529 104.589
## 5887 NA NA
## 5888 NA NA
## 5889 NA NA
## 5890 NA NA
## 5891 NA NA
## 5892 NA NA
## 5893 NA NA
## 5894 NA NA
## 5895 NA NA
## 5896 NA NA
## 5897 NA NA
## 5898 NA NA
## 5899 10.503 72.167
## 5900 10.503 72.167
## 5901 10.503 72.167
## 5902 10.503 72.167
## 5903 10.503 72.167
## 5904 10.503 72.167
## 5905 19.844 30.943
## 5906 19.844 30.943
## 5907 19.844 30.943
## 5908 19.844 30.943
## 5909 19.844 30.943
## 5910 19.844 30.943
## 5911 NA NA
## 5912 NA NA
## 5913 NA NA
## 5914 NA NA
## 5915 NA NA
## 5916 NA NA
## 5917 NA NA
## 5918 NA NA
## 5919 NA NA
## 5920 NA NA
## 5921 NA NA
## 5922 NA NA
## 5923 17.101 21.135
## 5924 17.101 21.135
## 5925 17.101 21.135
## 5926 17.101 21.135
## 5927 17.101 21.135
## 5928 17.101 21.135
## 5929 NA NA
## 5930 NA NA
## 5931 NA NA
## 5932 NA NA
## 5933 NA NA
## 5934 NA NA
## 5935 NA NA
## 5936 NA NA
## 5937 NA NA
## 5938 NA NA
## 5939 NA NA
## 5940 NA NA
## 5941 NA NA
## 5942 NA NA
## 5943 NA NA
## 5944 NA NA
## 5945 NA NA
## 5946 NA NA
## 5947 NA NA
## 5948 NA NA
## 5949 NA NA
## 5950 NA NA
## 5951 NA NA
## 5952 NA NA
## 5953 NA NA
## 5954 NA NA
## 5955 NA NA
## 5956 NA NA
## 5957 NA NA
## 5958 NA NA
## 5959 NA NA
## 5960 NA NA
## 5961 NA NA
## 5962 NA NA
## 5963 NA NA
## 5964 NA NA
## 5965 NA NA
## 5966 NA NA
## 5967 NA NA
## 5968 NA NA
## 5969 NA NA
## 5970 NA NA
## 5971 1.003 29.941
## 5972 1.003 29.941
## 5973 1.003 29.941
## 5974 1.003 29.941
## 5975 1.003 29.941
## 5976 1.003 29.941
## 5977 NA NA
## 5978 NA NA
## 5979 NA NA
## 5980 NA NA
## 5981 NA NA
## 5982 NA NA
## 5983 NA NA
## 5984 NA NA
## 5985 NA NA
## 5986 NA NA
## 5987 NA NA
## 5988 NA NA
## 5989 NA NA
## 5990 NA NA
## 5991 NA NA
## 5992 NA NA
## 5993 NA NA
## 5994 NA NA
## 5995 23.164 40.167
## 5996 23.164 40.167
## 5997 23.164 40.167
## 5998 23.164 40.167
## 5999 23.164 40.167
## 6000 23.164 40.167
## 6001 NA NA
## 6002 NA NA
## 6003 NA NA
## 6004 NA NA
## 6005 NA NA
## 6006 NA NA
## 6007 NA NA
## 6008 NA NA
## 6009 NA NA
## 6010 NA NA
## 6011 NA NA
## 6012 NA NA
## 6013 NA NA
## 6014 NA NA
## 6015 NA NA
## 6016 NA NA
## 6017 NA NA
## 6018 NA NA
## 6019 NA NA
## 6020 NA NA
## 6021 NA NA
## 6022 NA NA
## 6023 NA NA
## 6024 NA NA
## 6025 NA NA
## 6026 NA NA
## 6027 NA NA
## 6028 NA NA
## 6029 NA NA
## 6030 NA NA
## 6031 147.641 165.047
## 6032 147.641 165.047
## 6033 147.641 165.047
## 6034 147.641 165.047
## 6035 147.641 165.047
## 6036 147.641 165.047
## 6037 25.847 57.511
## 6038 25.847 57.511
## 6039 25.847 57.511
## 6040 25.847 57.511
## 6041 25.847 57.511
## 6042 25.847 57.511
## 6043 NA NA
## 6044 NA NA
## 6045 NA NA
## 6046 NA NA
## 6047 NA NA
## 6048 NA NA
## 6049 NA NA
## 6050 NA NA
## 6051 NA NA
## 6052 NA NA
## 6053 NA NA
## 6054 NA NA
## 6055 NA NA
## 6056 NA NA
## 6057 NA NA
## 6058 NA NA
## 6059 NA NA
## 6060 NA NA
## 6061 NA NA
## 6062 NA NA
## 6063 NA NA
## 6064 NA NA
## 6065 NA NA
## 6066 NA NA
## 6067 9.386 21.766
## 6068 9.386 21.766
## 6069 9.386 21.766
## 6070 9.386 21.766
## 6071 9.386 21.766
## 6072 9.386 21.766
## 6073 6.477 13.208
## 6074 6.477 13.208
## 6075 6.477 13.208
## 6076 6.477 13.208
## 6077 6.477 13.208
## 6078 6.477 13.208
## 6079 NA NA
## 6080 NA NA
## 6081 NA NA
## 6082 NA NA
## 6083 NA NA
## 6084 NA NA
## 6085 NA NA
## 6086 NA NA
## 6087 NA NA
## 6088 NA NA
## 6089 NA NA
## 6090 NA NA
## 6091 9.496 14.934
## 6092 9.496 14.934
## 6093 9.496 14.934
## 6094 9.496 14.934
## 6095 9.496 14.934
## 6096 9.496 14.934
## 6097 7.778 13.995
## 6098 7.778 13.995
## 6099 7.778 13.995
## 6100 7.778 13.995
## 6101 7.778 13.995
## 6102 7.778 13.995
## 6103 NA NA
## 6104 NA NA
## 6105 NA NA
## 6106 NA NA
## 6107 NA NA
## 6108 NA NA
## 6109 NA NA
## 6110 NA NA
## 6111 NA NA
## 6112 NA NA
## 6113 NA NA
## 6114 NA NA
## 6115 NA NA
## 6116 NA NA
## 6117 NA NA
## 6118 NA NA
## 6119 NA NA
## 6120 NA NA
## 6121 4.593 45.522
## 6122 4.593 45.522
## 6123 4.593 45.522
## 6124 4.593 45.522
## 6125 4.593 45.522
## 6126 4.593 45.522
## 6127 NA NA
## 6128 NA NA
## 6129 NA NA
## 6130 NA NA
## 6131 NA NA
## 6132 NA NA
## 6133 NA NA
## 6134 NA NA
## 6135 NA NA
## 6136 NA NA
## 6137 NA NA
## 6138 NA NA
## 6139 49.370 72.262
## 6140 49.370 72.262
## 6141 49.370 72.262
## 6142 49.370 72.262
## 6143 49.370 72.262
## 6144 49.370 72.262
## 6145 NA NA
## 6146 NA NA
## 6147 NA NA
## 6148 NA NA
## 6149 NA NA
## 6150 NA NA
## 6151 NA NA
## 6152 NA NA
## 6153 NA NA
## 6154 NA NA
## 6155 NA NA
## 6156 NA NA
## 6157 12.430 23.437
## 6158 12.430 23.437
## 6159 12.430 23.437
## 6160 12.430 23.437
## 6161 12.430 23.437
## 6162 12.430 23.437
## 6163 NA NA
## 6164 NA NA
## 6165 NA NA
## 6166 NA NA
## 6167 NA NA
## 6168 NA NA
## 6169 NA NA
## 6170 NA NA
## 6171 NA NA
## 6172 NA NA
## 6173 NA NA
## 6174 NA NA
## 6175 NA NA
## 6176 NA NA
## 6177 NA NA
## 6178 NA NA
## 6179 NA NA
## 6180 NA NA
## 6181 NA NA
## 6182 NA NA
## 6183 NA NA
## 6184 NA NA
## 6185 NA NA
## 6186 NA NA
## 6187 NA NA
## 6188 NA NA
## 6189 NA NA
## 6190 NA NA
## 6191 NA NA
## 6192 NA NA
## 6193 NA NA
## 6194 NA NA
## 6195 NA NA
## 6196 NA NA
## 6197 NA NA
## 6198 NA NA
## 6199 NA NA
## 6200 NA NA
## 6201 NA NA
## 6202 NA NA
## 6203 NA NA
## 6204 NA NA
## 6205 NA NA
## 6206 NA NA
## 6207 NA NA
## 6208 NA NA
## 6209 NA NA
## 6210 NA NA
## 6211 NA NA
## 6212 NA NA
## 6213 NA NA
## 6214 NA NA
## 6215 NA NA
## 6216 NA NA
## 6217 22.285 31.423
## 6218 22.285 31.423
## 6219 22.285 31.423
## 6220 22.285 31.423
## 6221 22.285 31.423
## 6222 22.285 31.423
## 6223 NA NA
## 6224 NA NA
## 6225 NA NA
## 6226 NA NA
## 6227 NA NA
## 6228 NA NA
## 6229 NA NA
## 6230 NA NA
## 6231 NA NA
## 6232 NA NA
## 6233 NA NA
## 6234 NA NA
## 6235 NA NA
## 6236 NA NA
## 6237 NA NA
## 6238 NA NA
## 6239 NA NA
## 6240 NA NA
## 6241 NA NA
## 6242 NA NA
## 6243 NA NA
## 6244 NA NA
## 6245 NA NA
## 6246 NA NA
## 6247 NA NA
## 6248 NA NA
## 6249 NA NA
## 6250 NA NA
## 6251 NA NA
## 6252 NA NA
## 6253 NA NA
## 6254 NA NA
## 6255 NA NA
## 6256 NA NA
## 6257 NA NA
## 6258 NA NA
## 6259 NA NA
## 6260 NA NA
## 6261 NA NA
## 6262 NA NA
## 6263 NA NA
## 6264 NA NA
## 6265 NA NA
## 6266 NA NA
## 6267 NA NA
## 6268 NA NA
## 6269 NA NA
## 6270 NA NA
## 6271 NA NA
## 6272 NA NA
## 6273 NA NA
## 6274 NA NA
## 6275 NA NA
## 6276 NA NA
## 6277 NA NA
## 6278 NA NA
## 6279 NA NA
## 6280 NA NA
## 6281 NA NA
## 6282 NA NA
## 6283 NA NA
## 6284 NA NA
## 6285 NA NA
## 6286 NA NA
## 6287 NA NA
## 6288 NA NA
## 6289 NA NA
## 6290 NA NA
## 6291 NA NA
## 6292 NA NA
## 6293 NA NA
## 6294 NA NA
## 6295 NA NA
## 6296 NA NA
## 6297 NA NA
## 6298 NA NA
## 6299 NA NA
## 6300 NA NA
## 6301 NA NA
## 6302 NA NA
## 6303 NA NA
## 6304 NA NA
## 6305 NA NA
## 6306 NA NA
## 6307 NA NA
## 6308 NA NA
## 6309 NA NA
## 6310 NA NA
## 6311 NA NA
## 6312 NA NA
## 6313 16.179 25.572
## 6314 16.179 25.572
## 6315 16.179 25.572
## 6316 16.179 25.572
## 6317 16.179 25.572
## 6318 16.179 25.572
## 6319 15.917 32.490
## 6320 15.917 32.490
## 6321 15.917 32.490
## 6322 15.917 32.490
## 6323 15.917 32.490
## 6324 15.917 32.490
## 6325 NA NA
## 6326 NA NA
## 6327 NA NA
## 6328 NA NA
## 6329 NA NA
## 6330 NA NA
## 6331 NA NA
## 6332 NA NA
## 6333 NA NA
## 6334 NA NA
## 6335 NA NA
## 6336 NA NA
## 6337 NA NA
## 6338 NA NA
## 6339 NA NA
## 6340 NA NA
## 6341 NA NA
## 6342 NA NA
## 6343 NA NA
## 6344 NA NA
## 6345 NA NA
## 6346 NA NA
## 6347 NA NA
## 6348 NA NA
## 6349 NA NA
## 6350 NA NA
## 6351 NA NA
## 6352 NA NA
## 6353 NA NA
## 6354 NA NA
## 6355 NA NA
## 6356 NA NA
## 6357 NA NA
## 6358 NA NA
## 6359 NA NA
## 6360 NA NA
## 6361 NA NA
## 6362 NA NA
## 6363 NA NA
## 6364 NA NA
## 6365 NA NA
## 6366 NA NA
## 6367 33.491 41.014
## 6368 33.491 41.014
## 6369 33.491 41.014
## 6370 33.491 41.014
## 6371 33.491 41.014
## 6372 33.491 41.014
## 6373 23.496 39.362
## 6374 23.496 39.362
## 6375 23.496 39.362
## 6376 23.496 39.362
## 6377 23.496 39.362
## 6378 23.496 39.362
## 6379 47.433 79.622
## 6380 47.433 79.622
## 6381 47.433 79.622
## 6382 47.433 79.622
## 6383 47.433 79.622
## 6384 47.433 79.622
## 6385 NA NA
## 6386 NA NA
## 6387 NA NA
## 6388 NA NA
## 6389 NA NA
## 6390 NA NA
## 6391 11.519 33.220
## 6392 11.519 33.220
## 6393 11.519 33.220
## 6394 11.519 33.220
## 6395 11.519 33.220
## 6396 11.519 33.220
## 6397 NA NA
## 6398 NA NA
## 6399 NA NA
## 6400 NA NA
## 6401 NA NA
## 6402 NA NA
## 6403 NA NA
## 6404 NA NA
## 6405 NA NA
## 6406 NA NA
## 6407 NA NA
## 6408 NA NA
## 6409 NA NA
## 6410 NA NA
## 6411 NA NA
## 6412 NA NA
## 6413 NA NA
## 6414 NA NA
## 6415 NA NA
## 6416 NA NA
## 6417 NA NA
## 6418 NA NA
## 6419 NA NA
## 6420 NA NA
## 6421 27.221 42.042
## 6422 27.221 42.042
## 6423 27.221 42.042
## 6424 27.221 42.042
## 6425 27.221 42.042
## 6426 27.221 42.042
## 6427 NA NA
## 6428 NA NA
## 6429 NA NA
## 6430 NA NA
## 6431 NA NA
## 6432 NA NA
## 6433 NA NA
## 6434 NA NA
## 6435 NA NA
## 6436 NA NA
## 6437 NA NA
## 6438 NA NA
## 6439 NA NA
## 6440 NA NA
## 6441 NA NA
## 6442 NA NA
## 6443 NA NA
## 6444 NA NA
## 6445 NA NA
## 6446 NA NA
## 6447 NA NA
## 6448 NA NA
## 6449 NA NA
## 6450 NA NA
## 6451 NA NA
## 6452 NA NA
## 6453 NA NA
## 6454 NA NA
## 6455 NA NA
## 6456 NA NA
## 6457 NA NA
## 6458 NA NA
## 6459 NA NA
## 6460 NA NA
## 6461 NA NA
## 6462 NA NA
## 6463 NA NA
## 6464 NA NA
## 6465 NA NA
## 6466 NA NA
## 6467 NA NA
## 6468 NA NA
## 6469 10.791 23.092
## 6470 10.791 23.092
## 6471 10.791 23.092
## 6472 10.791 23.092
## 6473 10.791 23.092
## 6474 10.791 23.092
## 6475 16.471 27.774
## 6476 16.471 27.774
## 6477 16.471 27.774
## 6478 16.471 27.774
## 6479 16.471 27.774
## 6480 16.471 27.774
## 6481 NA NA
## 6482 NA NA
## 6483 NA NA
## 6484 NA NA
## 6485 NA NA
## 6486 NA NA
## 6487 7.473 24.471
## 6488 7.473 24.471
## 6489 7.473 24.471
## 6490 7.473 24.471
## 6491 7.473 24.471
## 6492 7.473 24.471
## 6493 NA NA
## 6494 NA NA
## 6495 NA NA
## 6496 NA NA
## 6497 NA NA
## 6498 NA NA
## 6499 NA NA
## 6500 NA NA
## 6501 NA NA
## 6502 NA NA
## 6503 NA NA
## 6504 NA NA
## 6505 NA NA
## 6506 NA NA
## 6507 NA NA
## 6508 NA NA
## 6509 NA NA
## 6510 NA NA
## 6511 NA NA
## 6512 NA NA
## 6513 NA NA
## 6514 NA NA
## 6515 NA NA
## 6516 NA NA
## 6517 NA NA
## 6518 NA NA
## 6519 NA NA
## 6520 NA NA
## 6521 NA NA
## 6522 NA NA
## 6523 NA NA
## 6524 NA NA
## 6525 NA NA
## 6526 NA NA
## 6527 NA NA
## 6528 NA NA
## 6529 NA NA
## 6530 NA NA
## 6531 NA NA
## 6532 NA NA
## 6533 NA NA
## 6534 NA NA
## 6535 NA NA
## 6536 NA NA
## 6537 NA NA
## 6538 NA NA
## 6539 NA NA
## 6540 NA NA
## 6541 NA NA
## 6542 NA NA
## 6543 NA NA
## 6544 NA NA
## 6545 NA NA
## 6546 NA NA
## 6547 NA NA
## 6548 NA NA
## 6549 NA NA
## 6550 NA NA
## 6551 NA NA
## 6552 NA NA
## 6553 35.426 50.345
## 6554 35.426 50.345
## 6555 35.426 50.345
## 6556 35.426 50.345
## 6557 35.426 50.345
## 6558 35.426 50.345
## 6559 NA NA
## 6560 NA NA
## 6561 NA NA
## 6562 NA NA
## 6563 NA NA
## 6564 NA NA
## 6565 NA NA
## 6566 NA NA
## 6567 NA NA
## 6568 NA NA
## 6569 NA NA
## 6570 NA NA
## 6571 15.199 26.877
## 6572 15.199 26.877
## 6573 15.199 26.877
## 6574 15.199 26.877
## 6575 15.199 26.877
## 6576 15.199 26.877
## 6577 NA NA
## 6578 NA NA
## 6579 NA NA
## 6580 NA NA
## 6581 NA NA
## 6582 NA NA
## 6583 NA NA
## 6584 NA NA
## 6585 NA NA
## 6586 NA NA
## 6587 NA NA
## 6588 NA NA
## 6589 10.974 17.970
## 6590 10.974 17.970
## 6591 10.974 17.970
## 6592 10.974 17.970
## 6593 10.974 17.970
## 6594 10.974 17.970
## 6595 15.101 56.689
## 6596 15.101 56.689
## 6597 15.101 56.689
## 6598 15.101 56.689
## 6599 15.101 56.689
## 6600 15.101 56.689
## 6601 NA NA
## 6602 NA NA
## 6603 NA NA
## 6604 NA NA
## 6605 NA NA
## 6606 NA NA
## 6607 NA NA
## 6608 NA NA
## 6609 NA NA
## 6610 NA NA
## 6611 NA NA
## 6612 NA NA
## 6613 23.150 44.899
## 6614 23.150 44.899
## 6615 23.150 44.899
## 6616 23.150 44.899
## 6617 23.150 44.899
## 6618 23.150 44.899
## 6619 NA NA
## 6620 NA NA
## 6621 NA NA
## 6622 NA NA
## 6623 NA NA
## 6624 NA NA
## 6625 3.235 26.342
## 6626 3.235 26.342
## 6627 3.235 26.342
## 6628 3.235 26.342
## 6629 3.235 26.342
## 6630 3.235 26.342
## 6631 12.667 26.005
## 6632 12.667 26.005
## 6633 12.667 26.005
## 6634 12.667 26.005
## 6635 12.667 26.005
## 6636 12.667 26.005
## 6637 NA NA
## 6638 NA NA
## 6639 NA NA
## 6640 NA NA
## 6641 NA NA
## 6642 NA NA
## 6643 20.005 36.029
## 6644 20.005 36.029
## 6645 20.005 36.029
## 6646 20.005 36.029
## 6647 20.005 36.029
## 6648 20.005 36.029
## 6649 NA NA
## 6650 NA NA
## 6651 NA NA
## 6652 NA NA
## 6653 NA NA
## 6654 NA NA
## 6655 NA NA
## 6656 NA NA
## 6657 NA NA
## 6658 NA NA
## 6659 NA NA
## 6660 NA NA
## 6661 NA NA
## 6662 NA NA
## 6663 NA NA
## 6664 NA NA
## 6665 NA NA
## 6666 NA NA
## 6667 NA NA
## 6668 NA NA
## 6669 NA NA
## 6670 NA NA
## 6671 NA NA
## 6672 NA NA
## 6673 11.916 23.694
## 6674 11.916 23.694
## 6675 11.916 23.694
## 6676 11.916 23.694
## 6677 11.916 23.694
## 6678 11.916 23.694
## 6679 12.601 22.660
## 6680 12.601 22.660
## 6681 12.601 22.660
## 6682 12.601 22.660
## 6683 12.601 22.660
## 6684 12.601 22.660
## 6685 NA NA
## 6686 NA NA
## 6687 NA NA
## 6688 NA NA
## 6689 NA NA
## 6690 NA NA
## 6691 NA NA
## 6692 NA NA
## 6693 NA NA
## 6694 NA NA
## 6695 NA NA
## 6696 NA NA
## 6697 NA NA
## 6698 NA NA
## 6699 NA NA
## 6700 NA NA
## 6701 NA NA
## 6702 NA NA
## 6703 NA NA
## 6704 NA NA
## 6705 NA NA
## 6706 NA NA
## 6707 NA NA
## 6708 NA NA
## 6709 NA NA
## 6710 NA NA
## 6711 NA NA
## 6712 NA NA
## 6713 NA NA
## 6714 NA NA
## 6715 47.616 58.053
## 6716 47.616 58.053
## 6717 47.616 58.053
## 6718 47.616 58.053
## 6719 47.616 58.053
## 6720 47.616 58.053
## 6721 NA NA
## 6722 NA NA
## 6723 NA NA
## 6724 NA NA
## 6725 NA NA
## 6726 NA NA
## 6727 NA NA
## 6728 NA NA
## 6729 NA NA
## 6730 NA NA
## 6731 NA NA
## 6732 NA NA
## 6733 NA NA
## 6734 NA NA
## 6735 NA NA
## 6736 NA NA
## 6737 NA NA
## 6738 NA NA
## 6739 NA NA
## 6740 NA NA
## 6741 NA NA
## 6742 NA NA
## 6743 NA NA
## 6744 NA NA
## 6745 NA NA
## 6746 NA NA
## 6747 NA NA
## 6748 NA NA
## 6749 NA NA
## 6750 NA NA
## 6751 NA NA
## 6752 NA NA
## 6753 NA NA
## 6754 NA NA
## 6755 NA NA
## 6756 NA NA
## 6757 NA NA
## 6758 NA NA
## 6759 NA NA
## 6760 NA NA
## 6761 NA NA
## 6762 NA NA
## 6763 25.897 46.254
## 6764 25.897 46.254
## 6765 25.897 46.254
## 6766 25.897 46.254
## 6767 25.897 46.254
## 6768 25.897 46.254
## 6769 6.305 26.775
## 6770 6.305 26.775
## 6771 6.305 26.775
## 6772 6.305 26.775
## 6773 6.305 26.775
## 6774 6.305 26.775
## 6775 NA NA
## 6776 NA NA
## 6777 NA NA
## 6778 NA NA
## 6779 NA NA
## 6780 NA NA
## 6781 NA NA
## 6782 NA NA
## 6783 NA NA
## 6784 NA NA
## 6785 NA NA
## 6786 NA NA
## 6787 NA NA
## 6788 NA NA
## 6789 NA NA
## 6790 NA NA
## 6791 NA NA
## 6792 NA NA
## 6793 NA NA
## 6794 NA NA
## 6795 NA NA
## 6796 NA NA
## 6797 NA NA
## 6798 NA NA
## 6799 NA NA
## 6800 NA NA
## 6801 NA NA
## 6802 NA NA
## 6803 NA NA
## 6804 NA NA
## 6805 NA NA
## 6806 NA NA
## 6807 NA NA
## 6808 NA NA
## 6809 NA NA
## 6810 NA NA
## 6811 NA NA
## 6812 NA NA
## 6813 NA NA
## 6814 NA NA
## 6815 NA NA
## 6816 NA NA
## 6817 NA NA
## 6818 NA NA
## 6819 NA NA
## 6820 NA NA
## 6821 NA NA
## 6822 NA NA
## 6823 NA NA
## 6824 NA NA
## 6825 NA NA
## 6826 NA NA
## 6827 NA NA
## 6828 NA NA
## 6829 NA NA
## 6830 NA NA
## 6831 NA NA
## 6832 NA NA
## 6833 NA NA
## 6834 NA NA
## 6835 NA NA
## 6836 NA NA
## 6837 NA NA
## 6838 NA NA
## 6839 NA NA
## 6840 NA NA
## 6841 NA NA
## 6842 NA NA
## 6843 NA NA
## 6844 NA NA
## 6845 NA NA
## 6846 NA NA
## 6847 17.486 27.175
## 6848 17.486 27.175
## 6849 17.486 27.175
## 6850 17.486 27.175
## 6851 17.486 27.175
## 6852 17.486 27.175
## 6853 NA NA
## 6854 NA NA
## 6855 NA NA
## 6856 NA NA
## 6857 NA NA
## 6858 NA NA
## 6859 NA NA
## 6860 NA NA
## 6861 NA NA
## 6862 NA NA
## 6863 NA NA
## 6864 NA NA
## 6865 4.787 82.281
## 6866 4.787 82.281
## 6867 4.787 82.281
## 6868 4.787 82.281
## 6869 4.787 82.281
## 6870 4.787 82.281
## 6871 NA NA
## 6872 NA NA
## 6873 NA NA
## 6874 NA NA
## 6875 NA NA
## 6876 NA NA
## 6877 NA NA
## 6878 NA NA
## 6879 NA NA
## 6880 NA NA
## 6881 NA NA
## 6882 NA NA
## 6883 NA NA
## 6884 NA NA
## 6885 NA NA
## 6886 NA NA
## 6887 NA NA
## 6888 NA NA
## 6889 NA NA
## 6890 NA NA
## 6891 NA NA
## 6892 NA NA
## 6893 NA NA
## 6894 NA NA
## 6895 NA NA
## 6896 NA NA
## 6897 NA NA
## 6898 NA NA
## 6899 NA NA
## 6900 NA NA
## 6901 NA NA
## 6902 NA NA
## 6903 NA NA
## 6904 NA NA
## 6905 NA NA
## 6906 NA NA
## 6907 NA NA
## 6908 NA NA
## 6909 NA NA
## 6910 NA NA
## 6911 NA NA
## 6912 NA NA
## 6913 NA NA
## 6914 NA NA
## 6915 NA NA
## 6916 NA NA
## 6917 NA NA
## 6918 NA NA
## 6919 NA NA
## 6920 NA NA
## 6921 NA NA
## 6922 NA NA
## 6923 NA NA
## 6924 NA NA
## 6925 54.424 88.496
## 6926 54.424 88.496
## 6927 54.424 88.496
## 6928 54.424 88.496
## 6929 54.424 88.496
## 6930 54.424 88.496
## 6931 NA NA
## 6932 NA NA
## 6933 NA NA
## 6934 NA NA
## 6935 NA NA
## 6936 NA NA
## 6937 NA NA
## 6938 NA NA
## 6939 NA NA
## 6940 NA NA
## 6941 NA NA
## 6942 NA NA
## 6943 NA NA
## 6944 NA NA
## 6945 NA NA
## 6946 NA NA
## 6947 NA NA
## 6948 NA NA
## 6949 11.380 24.030
## 6950 11.380 24.030
## 6951 11.380 24.030
## 6952 11.380 24.030
## 6953 11.380 24.030
## 6954 11.380 24.030
## 6955 NA NA
## 6956 NA NA
## 6957 NA NA
## 6958 NA NA
## 6959 NA NA
## 6960 NA NA
## 6961 13.559 23.524
## 6962 13.559 23.524
## 6963 13.559 23.524
## 6964 13.559 23.524
## 6965 13.559 23.524
## 6966 13.559 23.524
## 6967 NA NA
## 6968 NA NA
## 6969 NA NA
## 6970 NA NA
## 6971 NA NA
## 6972 NA NA
## 6973 24.473 51.785
## 6974 24.473 51.785
## 6975 24.473 51.785
## 6976 24.473 51.785
## 6977 24.473 51.785
## 6978 24.473 51.785
## 6979 NA NA
## 6980 NA NA
## 6981 NA NA
## 6982 NA NA
## 6983 NA NA
## 6984 NA NA
## 6985 18.520 30.849
## 6986 18.520 30.849
## 6987 18.520 30.849
## 6988 18.520 30.849
## 6989 18.520 30.849
## 6990 18.520 30.849
## 6991 14.866 55.333
## 6992 14.866 55.333
## 6993 14.866 55.333
## 6994 14.866 55.333
## 6995 14.866 55.333
## 6996 14.866 55.333
## 6997 2.417 46.323
## 6998 2.417 46.323
## 6999 2.417 46.323
## 7000 2.417 46.323
## 7001 2.417 46.323
## 7002 2.417 46.323
## 7003 NA NA
## 7004 NA NA
## 7005 NA NA
## 7006 NA NA
## 7007 NA NA
## 7008 NA NA
## 7009 NA NA
## 7010 NA NA
## 7011 NA NA
## 7012 NA NA
## 7013 NA NA
## 7014 NA NA
## 7015 NA NA
## 7016 NA NA
## 7017 NA NA
## 7018 NA NA
## 7019 NA NA
## 7020 NA NA
## 7021 NA NA
## 7022 NA NA
## 7023 NA NA
## 7024 NA NA
## 7025 NA NA
## 7026 NA NA
## 7027 NA NA
## 7028 NA NA
## 7029 NA NA
## 7030 NA NA
## 7031 NA NA
## 7032 NA NA
## 7033 NA NA
## 7034 NA NA
## 7035 NA NA
## 7036 NA NA
## 7037 NA NA
## 7038 NA NA
## 7039 NA NA
## 7040 NA NA
## 7041 NA NA
## 7042 NA NA
## 7043 NA NA
## 7044 NA NA
## 7045 NA NA
## 7046 NA NA
## 7047 NA NA
## 7048 NA NA
## 7049 NA NA
## 7050 NA NA
## 7051 NA NA
## 7052 NA NA
## 7053 NA NA
## 7054 NA NA
## 7055 NA NA
## 7056 NA NA
## 7057 NA NA
## 7058 NA NA
## 7059 NA NA
## 7060 NA NA
## 7061 NA NA
## 7062 NA NA
## 7063 25.920 46.439
## 7064 25.920 46.439
## 7065 25.920 46.439
## 7066 25.920 46.439
## 7067 25.920 46.439
## 7068 25.920 46.439
## 7069 NA NA
## 7070 NA NA
## 7071 NA NA
## 7072 NA NA
## 7073 NA NA
## 7074 NA NA
## 7075 7.898 21.970
## 7076 7.898 21.970
## 7077 7.898 21.970
## 7078 7.898 21.970
## 7079 7.898 21.970
## 7080 7.898 21.970
## 7081 NA NA
## 7082 NA NA
## 7083 NA NA
## 7084 NA NA
## 7085 NA NA
## 7086 NA NA
## 7087 NA NA
## 7088 NA NA
## 7089 NA NA
## 7090 NA NA
## 7091 NA NA
## 7092 NA NA
## 7093 NA NA
## 7094 NA NA
## 7095 NA NA
## 7096 NA NA
## 7097 NA NA
## 7098 NA NA
## 7099 NA NA
## 7100 NA NA
## 7101 NA NA
## 7102 NA NA
## 7103 NA NA
## 7104 NA NA
## 7105 NA NA
## 7106 NA NA
## 7107 NA NA
## 7108 NA NA
## 7109 NA NA
## 7110 NA NA
## 7111 NA NA
## 7112 NA NA
## 7113 NA NA
## 7114 NA NA
## 7115 NA NA
## 7116 NA NA
## 7117 NA NA
## 7118 NA NA
## 7119 NA NA
## 7120 NA NA
## 7121 NA NA
## 7122 NA NA
## 7123 NA NA
## 7124 NA NA
## 7125 NA NA
## 7126 NA NA
## 7127 NA NA
## 7128 NA NA
## 7129 16.827 26.526
## 7130 16.827 26.526
## 7131 16.827 26.526
## 7132 16.827 26.526
## 7133 16.827 26.526
## 7134 16.827 26.526
## 7135 NA NA
## 7136 NA NA
## 7137 NA NA
## 7138 NA NA
## 7139 NA NA
## 7140 NA NA
## 7141 NA NA
## 7142 NA NA
## 7143 NA NA
## 7144 NA NA
## 7145 NA NA
## 7146 NA NA
## 7147 10.038 30.947
## 7148 10.038 30.947
## 7149 10.038 30.947
## 7150 10.038 30.947
## 7151 10.038 30.947
## 7152 10.038 30.947
## 7153 5.246 41.116
## 7154 5.246 41.116
## 7155 5.246 41.116
## 7156 5.246 41.116
## 7157 5.246 41.116
## 7158 5.246 41.116
## 7159 NA NA
## 7160 NA NA
## 7161 NA NA
## 7162 NA NA
## 7163 NA NA
## 7164 NA NA
## 7165 NA NA
## 7166 NA NA
## 7167 NA NA
## 7168 NA NA
## 7169 NA NA
## 7170 NA NA
## 7171 2.413 42.526
## 7172 2.413 42.526
## 7173 2.413 42.526
## 7174 2.413 42.526
## 7175 2.413 42.526
## 7176 2.413 42.526
## 7177 NA NA
## 7178 NA NA
## 7179 NA NA
## 7180 NA NA
## 7181 NA NA
## 7182 NA NA
## 7183 NA NA
## 7184 NA NA
## 7185 NA NA
## 7186 NA NA
## 7187 NA NA
## 7188 NA NA
## 7189 NA NA
## 7190 NA NA
## 7191 NA NA
## 7192 NA NA
## 7193 NA NA
## 7194 NA NA
## 7195 10.886 25.909
## 7196 10.886 25.909
## 7197 10.886 25.909
## 7198 10.886 25.909
## 7199 10.886 25.909
## 7200 10.886 25.909
## 7201 NA NA
## 7202 NA NA
## 7203 NA NA
## 7204 NA NA
## 7205 NA NA
## 7206 NA NA
## 7207 NA NA
## 7208 NA NA
## 7209 NA NA
## 7210 NA NA
## 7211 NA NA
## 7212 NA NA
## 7213 NA NA
## 7214 NA NA
## 7215 NA NA
## 7216 NA NA
## 7217 NA NA
## 7218 NA NA
## 7219 2.063 17.879
## 7220 2.063 17.879
## 7221 2.063 17.879
## 7222 2.063 17.879
## 7223 2.063 17.879
## 7224 2.063 17.879
## 7225 NA NA
## 7226 NA NA
## 7227 NA NA
## 7228 NA NA
## 7229 NA NA
## 7230 NA NA
## 7231 NA NA
## 7232 NA NA
## 7233 NA NA
## 7234 NA NA
## 7235 NA NA
## 7236 NA NA
## 7237 NA NA
## 7238 NA NA
## 7239 NA NA
## 7240 NA NA
## 7241 NA NA
## 7242 NA NA
## 7243 NA NA
## 7244 NA NA
## 7245 NA NA
## 7246 NA NA
## 7247 NA NA
## 7248 NA NA
## 7249 NA NA
## 7250 NA NA
## 7251 NA NA
## 7252 NA NA
## 7253 NA NA
## 7254 NA NA
## 7255 NA NA
## 7256 NA NA
## 7257 NA NA
## 7258 NA NA
## 7259 NA NA
## 7260 NA NA
## 7261 NA NA
## 7262 NA NA
## 7263 NA NA
## 7264 NA NA
## 7265 NA NA
## 7266 NA NA
## 7267 NA NA
## 7268 NA NA
## 7269 NA NA
## 7270 NA NA
## 7271 NA NA
## 7272 NA NA
## 7273 210.535 229.817
## 7274 210.535 229.817
## 7275 210.535 229.817
## 7276 210.535 229.817
## 7277 210.535 229.817
## 7278 210.535 229.817
## 7279 NA NA
## 7280 NA NA
## 7281 NA NA
## 7282 NA NA
## 7283 NA NA
## 7284 NA NA
## 7285 407.985 427.538
## 7286 407.985 427.538
## 7287 407.985 427.538
## 7288 407.985 427.538
## 7289 407.985 427.538
## 7290 407.985 427.538
## 7291 NA NA
## 7292 NA NA
## 7293 NA NA
## 7294 NA NA
## 7295 NA NA
## 7296 NA NA
## 7297 35.039 83.137
## 7298 35.039 83.137
## 7299 35.039 83.137
## 7300 35.039 83.137
## 7301 35.039 83.137
## 7302 35.039 83.137
## 7303 32.393 44.201
## 7304 32.393 44.201
## 7305 32.393 44.201
## 7306 32.393 44.201
## 7307 32.393 44.201
## 7308 32.393 44.201
## 7309 NA NA
## 7310 NA NA
## 7311 NA NA
## 7312 NA NA
## 7313 NA NA
## 7314 NA NA
## 7315 NA NA
## 7316 NA NA
## 7317 NA NA
## 7318 NA NA
## 7319 NA NA
## 7320 NA NA
## 7321 NA NA
## 7322 NA NA
## 7323 NA NA
## 7324 NA NA
## 7325 NA NA
## 7326 NA NA
## 7327 NA NA
## 7328 NA NA
## 7329 NA NA
## 7330 NA NA
## 7331 NA NA
## 7332 NA NA
## 7333 16.922 39.763
## 7334 16.922 39.763
## 7335 16.922 39.763
## 7336 16.922 39.763
## 7337 16.922 39.763
## 7338 16.922 39.763
## 7339 6.600 30.996
## 7340 6.600 30.996
## 7341 6.600 30.996
## 7342 6.600 30.996
## 7343 6.600 30.996
## 7344 6.600 30.996
## 7345 NA NA
## 7346 NA NA
## 7347 NA NA
## 7348 NA NA
## 7349 NA NA
## 7350 NA NA
## 7351 22.329 52.427
## 7352 22.329 52.427
## 7353 22.329 52.427
## 7354 22.329 52.427
## 7355 22.329 52.427
## 7356 22.329 52.427
## 7357 NA NA
## 7358 NA NA
## 7359 NA NA
## 7360 NA NA
## 7361 NA NA
## 7362 NA NA
## 7363 NA NA
## 7364 NA NA
## 7365 NA NA
## 7366 NA NA
## 7367 NA NA
## 7368 NA NA
## 7369 19.425 26.417
## 7370 19.425 26.417
## 7371 19.425 26.417
## 7372 19.425 26.417
## 7373 19.425 26.417
## 7374 19.425 26.417
## 7375 NA NA
## 7376 NA NA
## 7377 NA NA
## 7378 NA NA
## 7379 NA NA
## 7380 NA NA
## 7381 3.385 29.909
## 7382 3.385 29.909
## 7383 3.385 29.909
## 7384 3.385 29.909
## 7385 3.385 29.909
## 7386 3.385 29.909
## 7387 NA NA
## 7388 NA NA
## 7389 NA NA
## 7390 NA NA
## 7391 NA NA
## 7392 NA NA
## 7393 NA NA
## 7394 NA NA
## 7395 NA NA
## 7396 NA NA
## 7397 NA NA
## 7398 NA NA
## 7399 NA NA
## 7400 NA NA
## 7401 NA NA
## 7402 NA NA
## 7403 NA NA
## 7404 NA NA
## 7405 NA NA
## 7406 NA NA
## 7407 NA NA
## 7408 NA NA
## 7409 NA NA
## 7410 NA NA
## 7411 NA NA
## 7412 NA NA
## 7413 NA NA
## 7414 NA NA
## 7415 NA NA
## 7416 NA NA
## 7417 NA NA
## 7418 NA NA
## 7419 NA NA
## 7420 NA NA
## 7421 NA NA
## 7422 NA NA
## 7423 28.090 49.451
## 7424 28.090 49.451
## 7425 28.090 49.451
## 7426 28.090 49.451
## 7427 28.090 49.451
## 7428 28.090 49.451
## 7429 NA NA
## 7430 NA NA
## 7431 NA NA
## 7432 NA NA
## 7433 NA NA
## 7434 NA NA
## 7435 97.704 108.217
## 7436 97.704 108.217
## 7437 97.704 108.217
## 7438 97.704 108.217
## 7439 97.704 108.217
## 7440 97.704 108.217
## 7441 NA NA
## 7442 NA NA
## 7443 NA NA
## 7444 NA NA
## 7445 NA NA
## 7446 NA NA
## 7447 21.423 34.001
## 7448 21.423 34.001
## 7449 21.423 34.001
## 7450 21.423 34.001
## 7451 21.423 34.001
## 7452 21.423 34.001
## 7453 NA NA
## 7454 NA NA
## 7455 NA NA
## 7456 NA NA
## 7457 NA NA
## 7458 NA NA
## 7459 NA NA
## 7460 NA NA
## 7461 NA NA
## 7462 NA NA
## 7463 NA NA
## 7464 NA NA
## 7465 NA NA
## 7466 NA NA
## 7467 NA NA
## 7468 NA NA
## 7469 NA NA
## 7470 NA NA
## 7471 NA NA
## 7472 NA NA
## 7473 NA NA
## 7474 NA NA
## 7475 NA NA
## 7476 NA NA
## 7477 NA NA
## 7478 NA NA
## 7479 NA NA
## 7480 NA NA
## 7481 NA NA
## 7482 NA NA
## 7483 4.246 132.265
## 7484 4.246 132.265
## 7485 4.246 132.265
## 7486 4.246 132.265
## 7487 4.246 132.265
## 7488 4.246 132.265
## 7489 NA NA
## 7490 NA NA
## 7491 NA NA
## 7492 NA NA
## 7493 NA NA
## 7494 NA NA
## 7495 10.759 25.867
## 7496 10.759 25.867
## 7497 10.759 25.867
## 7498 10.759 25.867
## 7499 10.759 25.867
## 7500 10.759 25.867
## 7501 NA NA
## 7502 NA NA
## 7503 NA NA
## 7504 NA NA
## 7505 NA NA
## 7506 NA NA
## 7507 34.162 47.812
## 7508 34.162 47.812
## 7509 34.162 47.812
## 7510 34.162 47.812
## 7511 34.162 47.812
## 7512 34.162 47.812
## 7513 NA NA
## 7514 NA NA
## 7515 NA NA
## 7516 NA NA
## 7517 NA NA
## 7518 NA NA
## 7519 NA NA
## 7520 NA NA
## 7521 NA NA
## 7522 NA NA
## 7523 NA NA
## 7524 NA NA
## 7525 NA NA
## 7526 NA NA
## 7527 NA NA
## 7528 NA NA
## 7529 NA NA
## 7530 NA NA
## 7531 NA NA
## 7532 NA NA
## 7533 NA NA
## 7534 NA NA
## 7535 NA NA
## 7536 NA NA
## 7537 NA NA
## 7538 NA NA
## 7539 NA NA
## 7540 NA NA
## 7541 NA NA
## 7542 NA NA
## 7543 NA NA
## 7544 NA NA
## 7545 NA NA
## 7546 NA NA
## 7547 NA NA
## 7548 NA NA
## 7549 NA NA
## 7550 NA NA
## 7551 NA NA
## 7552 NA NA
## 7553 NA NA
## 7554 NA NA
## 7555 NA NA
## 7556 NA NA
## 7557 NA NA
## 7558 NA NA
## 7559 NA NA
## 7560 NA NA
## 7561 22.777 47.836
## 7562 22.777 47.836
## 7563 22.777 47.836
## 7564 22.777 47.836
## 7565 22.777 47.836
## 7566 22.777 47.836
## 7567 20.593 36.709
## 7568 20.593 36.709
## 7569 20.593 36.709
## 7570 20.593 36.709
## 7571 20.593 36.709
## 7572 20.593 36.709
## 7573 NA NA
## 7574 NA NA
## 7575 NA NA
## 7576 NA NA
## 7577 NA NA
## 7578 NA NA
## 7579 NA NA
## 7580 NA NA
## 7581 NA NA
## 7582 NA NA
## 7583 NA NA
## 7584 NA NA
## 7585 NA NA
## 7586 NA NA
## 7587 NA NA
## 7588 NA NA
## 7589 NA NA
## 7590 NA NA
## 7591 39.428 53.784
## 7592 39.428 53.784
## 7593 39.428 53.784
## 7594 39.428 53.784
## 7595 39.428 53.784
## 7596 39.428 53.784
## 7597 NA NA
## 7598 NA NA
## 7599 NA NA
## 7600 NA NA
## 7601 NA NA
## 7602 NA NA
## 7603 124.402 147.231
## 7604 124.402 147.231
## 7605 124.402 147.231
## 7606 124.402 147.231
## 7607 124.402 147.231
## 7608 124.402 147.231
## 7609 NA NA
## 7610 NA NA
## 7611 NA NA
## 7612 NA NA
## 7613 NA NA
## 7614 NA NA
## 7615 19.436 89.688
## 7616 19.436 89.688
## 7617 19.436 89.688
## 7618 19.436 89.688
## 7619 19.436 89.688
## 7620 19.436 89.688
## 7621 2.828 25.526
## 7622 2.828 25.526
## 7623 2.828 25.526
## 7624 2.828 25.526
## 7625 2.828 25.526
## 7626 2.828 25.526
## 7627 1886.490 1898.505
## 7628 1886.490 1898.505
## 7629 1886.490 1898.505
## 7630 1886.490 1898.505
## 7631 1886.490 1898.505
## 7632 1886.490 1898.505
## 7633 NA NA
## 7634 NA NA
## 7635 NA NA
## 7636 NA NA
## 7637 NA NA
## 7638 NA NA
## 7639 2.236 183.027
## 7640 2.236 183.027
## 7641 2.236 183.027
## 7642 2.236 183.027
## 7643 2.236 183.027
## 7644 2.236 183.027
## 7645 NA NA
## 7646 NA NA
## 7647 NA NA
## 7648 NA NA
## 7649 NA NA
## 7650 NA NA
## 7651 NA NA
## 7652 NA NA
## 7653 NA NA
## 7654 NA NA
## 7655 NA NA
## 7656 NA NA
## 7657 6.314 32.631
## 7658 6.314 32.631
## 7659 6.314 32.631
## 7660 6.314 32.631
## 7661 6.314 32.631
## 7662 6.314 32.631
## 7663 NA NA
## 7664 NA NA
## 7665 NA NA
## 7666 NA NA
## 7667 NA NA
## 7668 NA NA
## 7669 NA NA
## 7670 NA NA
## 7671 NA NA
## 7672 NA NA
## 7673 NA NA
## 7674 NA NA
## 7675 12.373 25.042
## 7676 12.373 25.042
## 7677 12.373 25.042
## 7678 12.373 25.042
## 7679 12.373 25.042
## 7680 12.373 25.042
## 7681 2.853 60.098
## 7682 2.853 60.098
## 7683 2.853 60.098
## 7684 2.853 60.098
## 7685 2.853 60.098
## 7686 2.853 60.098
## 7687 NA NA
## 7688 NA NA
## 7689 NA NA
## 7690 NA NA
## 7691 NA NA
## 7692 NA NA
## 7693 NA NA
## 7694 NA NA
## 7695 NA NA
## 7696 NA NA
## 7697 NA NA
## 7698 NA NA
## 7699 NA NA
## 7700 NA NA
## 7701 NA NA
## 7702 NA NA
## 7703 NA NA
## 7704 NA NA
## 7705 28.777 51.207
## 7706 28.777 51.207
## 7707 28.777 51.207
## 7708 28.777 51.207
## 7709 28.777 51.207
## 7710 28.777 51.207
## 7711 NA NA
## 7712 NA NA
## 7713 NA NA
## 7714 NA NA
## 7715 NA NA
## 7716 NA NA
## 7717 21.814 38.206
## 7718 21.814 38.206
## 7719 21.814 38.206
## 7720 21.814 38.206
## 7721 21.814 38.206
## 7722 21.814 38.206
## 7723 20.620 84.290
## 7724 20.620 84.290
## 7725 20.620 84.290
## 7726 20.620 84.290
## 7727 20.620 84.290
## 7728 20.620 84.290
## 7729 NA NA
## 7730 NA NA
## 7731 NA NA
## 7732 NA NA
## 7733 NA NA
## 7734 NA NA
## 7735 NA NA
## 7736 NA NA
## 7737 NA NA
## 7738 NA NA
## 7739 NA NA
## 7740 NA NA
## 7741 NA NA
## 7742 NA NA
## 7743 NA NA
## 7744 NA NA
## 7745 NA NA
## 7746 NA NA
## 7747 NA NA
## 7748 NA NA
## 7749 NA NA
## 7750 NA NA
## 7751 NA NA
## 7752 NA NA
## 7753 NA NA
## 7754 NA NA
## 7755 NA NA
## 7756 NA NA
## 7757 NA NA
## 7758 NA NA
## 7759 6.415 35.487
## 7760 6.415 35.487
## 7761 6.415 35.487
## 7762 6.415 35.487
## 7763 6.415 35.487
## 7764 6.415 35.487
## 7765 NA NA
## 7766 NA NA
## 7767 NA NA
## 7768 NA NA
## 7769 NA NA
## 7770 NA NA
## 7771 NA NA
## 7772 NA NA
## 7773 NA NA
## 7774 NA NA
## 7775 NA NA
## 7776 NA NA
## 7777 NA NA
## 7778 NA NA
## 7779 NA NA
## 7780 NA NA
## 7781 NA NA
## 7782 NA NA
## 7783 NA NA
## 7784 NA NA
## 7785 NA NA
## 7786 NA NA
## 7787 NA NA
## 7788 NA NA
## 7789 16.207 29.089
## 7790 16.207 29.089
## 7791 16.207 29.089
## 7792 16.207 29.089
## 7793 16.207 29.089
## 7794 16.207 29.089
## 7795 NA NA
## 7796 NA NA
## 7797 NA NA
## 7798 NA NA
## 7799 NA NA
## 7800 NA NA
## 7801 NA NA
## 7802 NA NA
## 7803 NA NA
## 7804 NA NA
## 7805 NA NA
## 7806 NA NA
## 7807 NA NA
## 7808 NA NA
## 7809 NA NA
## 7810 NA NA
## 7811 NA NA
## 7812 NA NA
## 7813 NA NA
## 7814 NA NA
## 7815 NA NA
## 7816 NA NA
## 7817 NA NA
## 7818 NA NA
## 7819 NA NA
## 7820 NA NA
## 7821 NA NA
## 7822 NA NA
## 7823 NA NA
## 7824 NA NA
## 7825 7.493 220.123
## 7826 7.493 220.123
## 7827 7.493 220.123
## 7828 7.493 220.123
## 7829 7.493 220.123
## 7830 7.493 220.123
## 7831 29.804 66.827
## 7832 29.804 66.827
## 7833 29.804 66.827
## 7834 29.804 66.827
## 7835 29.804 66.827
## 7836 29.804 66.827
## 7837 NA NA
## 7838 NA NA
## 7839 NA NA
## 7840 NA NA
## 7841 NA NA
## 7842 NA NA
## 7843 31.696 39.846
## 7844 31.696 39.846
## 7845 31.696 39.846
## 7846 31.696 39.846
## 7847 31.696 39.846
## 7848 31.696 39.846
## 7849 NA NA
## 7850 NA NA
## 7851 NA NA
## 7852 NA NA
## 7853 NA NA
## 7854 NA NA
## 7855 13.268 38.864
## 7856 13.268 38.864
## 7857 13.268 38.864
## 7858 13.268 38.864
## 7859 13.268 38.864
## 7860 13.268 38.864
## 7861 NA NA
## 7862 NA NA
## 7863 NA NA
## 7864 NA NA
## 7865 NA NA
## 7866 NA NA
## 7867 NA NA
## 7868 NA NA
## 7869 NA NA
## 7870 NA NA
## 7871 NA NA
## 7872 NA NA
## 7873 NA NA
## 7874 NA NA
## 7875 NA NA
## 7876 NA NA
## 7877 NA NA
## 7878 NA NA
## 7879 NA NA
## 7880 NA NA
## 7881 NA NA
## 7882 NA NA
## 7883 NA NA
## 7884 NA NA
## 7885 NA NA
## 7886 NA NA
## 7887 NA NA
## 7888 NA NA
## 7889 NA NA
## 7890 NA NA
## 7891 NA NA
## 7892 NA NA
## 7893 NA NA
## 7894 NA NA
## 7895 NA NA
## 7896 NA NA
## 7897 6.610 32.077
## 7898 6.610 32.077
## 7899 6.610 32.077
## 7900 6.610 32.077
## 7901 6.610 32.077
## 7902 6.610 32.077
## 7903 10.604 14.604
## 7904 10.604 14.604
## 7905 10.604 14.604
## 7906 10.604 14.604
## 7907 10.604 14.604
## 7908 10.604 14.604
## 7909 12.205 28.926
## 7910 12.205 28.926
## 7911 12.205 28.926
## 7912 12.205 28.926
## 7913 12.205 28.926
## 7914 12.205 28.926
## 7915 NA NA
## 7916 NA NA
## 7917 NA NA
## 7918 NA NA
## 7919 NA NA
## 7920 NA NA
## 7921 NA NA
## 7922 NA NA
## 7923 NA NA
## 7924 NA NA
## 7925 NA NA
## 7926 NA NA
## 7927 NA NA
## 7928 NA NA
## 7929 NA NA
## 7930 NA NA
## 7931 NA NA
## 7932 NA NA
## 7933 NA NA
## 7934 NA NA
## 7935 NA NA
## 7936 NA NA
## 7937 NA NA
## 7938 NA NA
## 7939 10.351 35.559
## 7940 10.351 35.559
## 7941 10.351 35.559
## 7942 10.351 35.559
## 7943 10.351 35.559
## 7944 10.351 35.559
## 7945 NA NA
## 7946 NA NA
## 7947 NA NA
## 7948 NA NA
## 7949 NA NA
## 7950 NA NA
## 7951 NA NA
## 7952 NA NA
## 7953 NA NA
## 7954 NA NA
## 7955 NA NA
## 7956 NA NA
## 7957 NA NA
## 7958 NA NA
## 7959 NA NA
## 7960 NA NA
## 7961 NA NA
## 7962 NA NA
## 7963 0.954 27.824
## 7964 0.954 27.824
## 7965 0.954 27.824
## 7966 0.954 27.824
## 7967 0.954 27.824
## 7968 0.954 27.824
## 7969 NA NA
## 7970 NA NA
## 7971 NA NA
## 7972 NA NA
## 7973 NA NA
## 7974 NA NA
## 7975 19.675 35.481
## 7976 19.675 35.481
## 7977 19.675 35.481
## 7978 19.675 35.481
## 7979 19.675 35.481
## 7980 19.675 35.481
## 7981 NA NA
## 7982 NA NA
## 7983 NA NA
## 7984 NA NA
## 7985 NA NA
## 7986 NA NA
## 7987 20.371 29.035
## 7988 20.371 29.035
## 7989 20.371 29.035
## 7990 20.371 29.035
## 7991 20.371 29.035
## 7992 20.371 29.035
## 7993 1.477 39.206
## 7994 1.477 39.206
## 7995 1.477 39.206
## 7996 1.477 39.206
## 7997 1.477 39.206
## 7998 1.477 39.206
## 7999 NA NA
## 8000 NA NA
## 8001 NA NA
## 8002 NA NA
## 8003 NA NA
## 8004 NA NA
## 8005 29.428 64.361
## 8006 29.428 64.361
## 8007 29.428 64.361
## 8008 29.428 64.361
## 8009 29.428 64.361
## 8010 29.428 64.361
## 8011 NA NA
## 8012 NA NA
## 8013 NA NA
## 8014 NA NA
## 8015 NA NA
## 8016 NA NA
## 8017 9.549 62.561
## 8018 9.549 62.561
## 8019 9.549 62.561
## 8020 9.549 62.561
## 8021 9.549 62.561
## 8022 9.549 62.561
## 8023 NA NA
## 8024 NA NA
## 8025 NA NA
## 8026 NA NA
## 8027 NA NA
## 8028 NA NA
## 8029 NA NA
## 8030 NA NA
## 8031 NA NA
## 8032 NA NA
## 8033 NA NA
## 8034 NA NA
## 8035 NA NA
## 8036 NA NA
## 8037 NA NA
## 8038 NA NA
## 8039 NA NA
## 8040 NA NA
## 8041 NA NA
## 8042 NA NA
## 8043 NA NA
## 8044 NA NA
## 8045 NA NA
## 8046 NA NA
## 8047 NA NA
## 8048 NA NA
## 8049 NA NA
## 8050 NA NA
## 8051 NA NA
## 8052 NA NA
## 8053 NA NA
## 8054 NA NA
## 8055 NA NA
## 8056 NA NA
## 8057 NA NA
## 8058 NA NA
## 8059 NA NA
## 8060 NA NA
## 8061 NA NA
## 8062 NA NA
## 8063 NA NA
## 8064 NA NA
## 8065 39.406 54.366
## 8066 39.406 54.366
## 8067 39.406 54.366
## 8068 39.406 54.366
## 8069 39.406 54.366
## 8070 39.406 54.366
## 8071 NA NA
## 8072 NA NA
## 8073 NA NA
## 8074 NA NA
## 8075 NA NA
## 8076 NA NA
## 8077 NA NA
## 8078 NA NA
## 8079 NA NA
## 8080 NA NA
## 8081 NA NA
## 8082 NA NA
## 8083 NA NA
## 8084 NA NA
## 8085 NA NA
## 8086 NA NA
## 8087 NA NA
## 8088 NA NA
## 8089 NA NA
## 8090 NA NA
## 8091 NA NA
## 8092 NA NA
## 8093 NA NA
## 8094 NA NA
## 8095 NA NA
## 8096 NA NA
## 8097 NA NA
## 8098 NA NA
## 8099 NA NA
## 8100 NA NA
## 8101 NA NA
## 8102 NA NA
## 8103 NA NA
## 8104 NA NA
## 8105 NA NA
## 8106 NA NA
## 8107 NA NA
## 8108 NA NA
## 8109 NA NA
## 8110 NA NA
## 8111 NA NA
## 8112 NA NA
## 8113 16.278 41.912
## 8114 16.278 41.912
## 8115 16.278 41.912
## 8116 16.278 41.912
## 8117 16.278 41.912
## 8118 16.278 41.912
## 8119 NA NA
## 8120 NA NA
## 8121 NA NA
## 8122 NA NA
## 8123 NA NA
## 8124 NA NA
## 8125 NA NA
## 8126 NA NA
## 8127 NA NA
## 8128 NA NA
## 8129 NA NA
## 8130 NA NA
## 8131 NA NA
## 8132 NA NA
## 8133 NA NA
## 8134 NA NA
## 8135 NA NA
## 8136 NA NA
## 8137 NA NA
## 8138 NA NA
## 8139 NA NA
## 8140 NA NA
## 8141 NA NA
## 8142 NA NA
## 8143 NA NA
## 8144 NA NA
## 8145 NA NA
## 8146 NA NA
## 8147 NA NA
## 8148 NA NA
## 8149 NA NA
## 8150 NA NA
## 8151 NA NA
## 8152 NA NA
## 8153 NA NA
## 8154 NA NA
## 8155 NA NA
## 8156 NA NA
## 8157 NA NA
## 8158 NA NA
## 8159 NA NA
## 8160 NA NA
## 8161 NA NA
## 8162 NA NA
## 8163 NA NA
## 8164 NA NA
## 8165 NA NA
## 8166 NA NA
## 8167 NA NA
## 8168 NA NA
## 8169 NA NA
## 8170 NA NA
## 8171 NA NA
## 8172 NA NA
## 8173 NA NA
## 8174 NA NA
## 8175 NA NA
## 8176 NA NA
## 8177 NA NA
## 8178 NA NA
## 8179 5.367 32.878
## 8180 5.367 32.878
## 8181 5.367 32.878
## 8182 5.367 32.878
## 8183 5.367 32.878
## 8184 5.367 32.878
## 8185 NA NA
## 8186 NA NA
## 8187 NA NA
## 8188 NA NA
## 8189 NA NA
## 8190 NA NA
## 8191 NA NA
## 8192 NA NA
## 8193 NA NA
## 8194 NA NA
## 8195 NA NA
## 8196 NA NA
## 8197 NA NA
## 8198 NA NA
## 8199 NA NA
## 8200 NA NA
## 8201 NA NA
## 8202 NA NA
## 8203 15.815 52.410
## 8204 15.815 52.410
## 8205 15.815 52.410
## 8206 15.815 52.410
## 8207 15.815 52.410
## 8208 15.815 52.410
## 8209 NA NA
## 8210 NA NA
## 8211 NA NA
## 8212 NA NA
## 8213 NA NA
## 8214 NA NA
## 8215 NA NA
## 8216 NA NA
## 8217 NA NA
## 8218 NA NA
## 8219 NA NA
## 8220 NA NA
## 8221 NA NA
## 8222 NA NA
## 8223 NA NA
## 8224 NA NA
## 8225 NA NA
## 8226 NA NA
## 8227 NA NA
## 8228 NA NA
## 8229 NA NA
## 8230 NA NA
## 8231 NA NA
## 8232 NA NA
## 8233 10.594 22.740
## 8234 10.594 22.740
## 8235 10.594 22.740
## 8236 10.594 22.740
## 8237 10.594 22.740
## 8238 10.594 22.740
## 8239 16.337 26.353
## 8240 16.337 26.353
## 8241 16.337 26.353
## 8242 16.337 26.353
## 8243 16.337 26.353
## 8244 16.337 26.353
## 8245 NA NA
## 8246 NA NA
## 8247 NA NA
## 8248 NA NA
## 8249 NA NA
## 8250 NA NA
## 8251 NA NA
## 8252 NA NA
## 8253 NA NA
## 8254 NA NA
## 8255 NA NA
## 8256 NA NA
## 8257 NA NA
## 8258 NA NA
## 8259 NA NA
## 8260 NA NA
## 8261 NA NA
## 8262 NA NA
## 8263 NA NA
## 8264 NA NA
## 8265 NA NA
## 8266 NA NA
## 8267 NA NA
## 8268 NA NA
## 8269 25.433 51.848
## 8270 25.433 51.848
## 8271 25.433 51.848
## 8272 25.433 51.848
## 8273 25.433 51.848
## 8274 25.433 51.848
## 8275 12.712 43.632
## 8276 12.712 43.632
## 8277 12.712 43.632
## 8278 12.712 43.632
## 8279 12.712 43.632
## 8280 12.712 43.632
## 8281 NA NA
## 8282 NA NA
## 8283 NA NA
## 8284 NA NA
## 8285 NA NA
## 8286 NA NA
## 8287 NA NA
## 8288 NA NA
## 8289 NA NA
## 8290 NA NA
## 8291 NA NA
## 8292 NA NA
## 8293 NA NA
## 8294 NA NA
## 8295 NA NA
## 8296 NA NA
## 8297 NA NA
## 8298 NA NA
## 8299 NA NA
## 8300 NA NA
## 8301 NA NA
## 8302 NA NA
## 8303 NA NA
## 8304 NA NA
## 8305 27.419 43.501
## 8306 27.419 43.501
## 8307 27.419 43.501
## 8308 27.419 43.501
## 8309 27.419 43.501
## 8310 27.419 43.501
## 8311 NA NA
## 8312 NA NA
## 8313 NA NA
## 8314 NA NA
## 8315 NA NA
## 8316 NA NA
## 8317 NA NA
## 8318 NA NA
## 8319 NA NA
## 8320 NA NA
## 8321 NA NA
## 8322 NA NA
## 8323 NA NA
## 8324 NA NA
## 8325 NA NA
## 8326 NA NA
## 8327 NA NA
## 8328 NA NA
## 8329 17.880 27.600
## 8330 17.880 27.600
## 8331 17.880 27.600
## 8332 17.880 27.600
## 8333 17.880 27.600
## 8334 17.880 27.600
## 8335 NA NA
## 8336 NA NA
## 8337 NA NA
## 8338 NA NA
## 8339 NA NA
## 8340 NA NA
## 8341 13.166 32.893
## 8342 13.166 32.893
## 8343 13.166 32.893
## 8344 13.166 32.893
## 8345 13.166 32.893
## 8346 13.166 32.893
## 8347 NA NA
## 8348 NA NA
## 8349 NA NA
## 8350 NA NA
## 8351 NA NA
## 8352 NA NA
## 8353 NA NA
## 8354 NA NA
## 8355 NA NA
## 8356 NA NA
## 8357 NA NA
## 8358 NA NA
## 8359 NA NA
## 8360 NA NA
## 8361 NA NA
## 8362 NA NA
## 8363 NA NA
## 8364 NA NA
## 8365 NA NA
## 8366 NA NA
## 8367 NA NA
## 8368 NA NA
## 8369 NA NA
## 8370 NA NA
## 8371 NA NA
## 8372 NA NA
## 8373 NA NA
## 8374 NA NA
## 8375 NA NA
## 8376 NA NA
## 8377 NA NA
## 8378 NA NA
## 8379 NA NA
## 8380 NA NA
## 8381 NA NA
## 8382 NA NA
## 8383 NA NA
## 8384 NA NA
## 8385 NA NA
## 8386 NA NA
## 8387 NA NA
## 8388 NA NA
## 8389 NA NA
## 8390 NA NA
## 8391 NA NA
## 8392 NA NA
## 8393 NA NA
## 8394 NA NA
## 8395 1.359 28.999
## 8396 1.359 28.999
## 8397 1.359 28.999
## 8398 1.359 28.999
## 8399 1.359 28.999
## 8400 1.359 28.999
## 8401 NA NA
## 8402 NA NA
## 8403 NA NA
## 8404 NA NA
## 8405 NA NA
## 8406 NA NA
## 8407 NA NA
## 8408 NA NA
## 8409 NA NA
## 8410 NA NA
## 8411 NA NA
## 8412 NA NA
## 8413 NA NA
## 8414 NA NA
## 8415 NA NA
## 8416 NA NA
## 8417 NA NA
## 8418 NA NA
## 8419 NA NA
## 8420 NA NA
## 8421 NA NA
## 8422 NA NA
## 8423 NA NA
## 8424 NA NA
## 8425 33.323 53.431
## 8426 33.323 53.431
## 8427 33.323 53.431
## 8428 33.323 53.431
## 8429 33.323 53.431
## 8430 33.323 53.431
## 8431 27.064 51.157
## 8432 27.064 51.157
## 8433 27.064 51.157
## 8434 27.064 51.157
## 8435 27.064 51.157
## 8436 27.064 51.157
## 8437 NA NA
## 8438 NA NA
## 8439 NA NA
## 8440 NA NA
## 8441 NA NA
## 8442 NA NA
## 8443 NA NA
## 8444 NA NA
## 8445 NA NA
## 8446 NA NA
## 8447 NA NA
## 8448 NA NA
## 8449 18.962 76.501
## 8450 18.962 76.501
## 8451 18.962 76.501
## 8452 18.962 76.501
## 8453 18.962 76.501
## 8454 18.962 76.501
## 8455 NA NA
## 8456 NA NA
## 8457 NA NA
## 8458 NA NA
## 8459 NA NA
## 8460 NA NA
## 8461 14.345 57.395
## 8462 14.345 57.395
## 8463 14.345 57.395
## 8464 14.345 57.395
## 8465 14.345 57.395
## 8466 14.345 57.395
## 8467 NA NA
## 8468 NA NA
## 8469 NA NA
## 8470 NA NA
## 8471 NA NA
## 8472 NA NA
## 8473 9.850 46.194
## 8474 9.850 46.194
## 8475 9.850 46.194
## 8476 9.850 46.194
## 8477 9.850 46.194
## 8478 9.850 46.194
## 8479 31.410 51.453
## 8480 31.410 51.453
## 8481 31.410 51.453
## 8482 31.410 51.453
## 8483 31.410 51.453
## 8484 31.410 51.453
## 8485 NA NA
## 8486 NA NA
## 8487 NA NA
## 8488 NA NA
## 8489 NA NA
## 8490 NA NA
## 8491 NA NA
## 8492 NA NA
## 8493 NA NA
## 8494 NA NA
## 8495 NA NA
## 8496 NA NA
## 8497 70.726 106.612
## 8498 70.726 106.612
## 8499 70.726 106.612
## 8500 70.726 106.612
## 8501 70.726 106.612
## 8502 70.726 106.612
## 8503 NA NA
## 8504 NA NA
## 8505 NA NA
## 8506 NA NA
## 8507 NA NA
## 8508 NA NA
## 8509 15.636 34.179
## 8510 15.636 34.179
## 8511 15.636 34.179
## 8512 15.636 34.179
## 8513 15.636 34.179
## 8514 15.636 34.179
## 8515 19.530 39.333
## 8516 19.530 39.333
## 8517 19.530 39.333
## 8518 19.530 39.333
## 8519 19.530 39.333
## 8520 19.530 39.333
## 8521 10.815 52.836
## 8522 10.815 52.836
## 8523 10.815 52.836
## 8524 10.815 52.836
## 8525 10.815 52.836
## 8526 10.815 52.836
## 8527 NA NA
## 8528 NA NA
## 8529 NA NA
## 8530 NA NA
## 8531 NA NA
## 8532 NA NA
## 8533 NA NA
## 8534 NA NA
## 8535 NA NA
## 8536 NA NA
## 8537 NA NA
## 8538 NA NA
## 8539 NA NA
## 8540 NA NA
## 8541 NA NA
## 8542 NA NA
## 8543 NA NA
## 8544 NA NA
## 8545 41.038 82.574
## 8546 41.038 82.574
## 8547 41.038 82.574
## 8548 41.038 82.574
## 8549 41.038 82.574
## 8550 41.038 82.574
## 8551 NA NA
## 8552 NA NA
## 8553 NA NA
## 8554 NA NA
## 8555 NA NA
## 8556 NA NA
## 8557 NA NA
## 8558 NA NA
## 8559 NA NA
## 8560 NA NA
## 8561 NA NA
## 8562 NA NA
## 8563 NA NA
## 8564 NA NA
## 8565 NA NA
## 8566 NA NA
## 8567 NA NA
## 8568 NA NA
## 8569 NA NA
## 8570 NA NA
## 8571 NA NA
## 8572 NA NA
## 8573 NA NA
## 8574 NA NA
## 8575 NA NA
## 8576 NA NA
## 8577 NA NA
## 8578 NA NA
## 8579 NA NA
## 8580 NA NA
## 8581 25.135 52.580
## 8582 25.135 52.580
## 8583 25.135 52.580
## 8584 25.135 52.580
## 8585 25.135 52.580
## 8586 25.135 52.580
## 8587 27.030 44.595
## 8588 27.030 44.595
## 8589 27.030 44.595
## 8590 27.030 44.595
## 8591 27.030 44.595
## 8592 27.030 44.595
## 8593 NA NA
## 8594 NA NA
## 8595 NA NA
## 8596 NA NA
## 8597 NA NA
## 8598 NA NA
## 8599 76.434 113.426
## 8600 76.434 113.426
## 8601 76.434 113.426
## 8602 76.434 113.426
## 8603 76.434 113.426
## 8604 76.434 113.426
## 8605 10.438 32.527
## 8606 10.438 32.527
## 8607 10.438 32.527
## 8608 10.438 32.527
## 8609 10.438 32.527
## 8610 10.438 32.527
## 8611 85.478 123.152
## 8612 85.478 123.152
## 8613 85.478 123.152
## 8614 85.478 123.152
## 8615 85.478 123.152
## 8616 85.478 123.152
## 8617 NA NA
## 8618 NA NA
## 8619 NA NA
## 8620 NA NA
## 8621 NA NA
## 8622 NA NA
## 8623 20.090 52.510
## 8624 20.090 52.510
## 8625 20.090 52.510
## 8626 20.090 52.510
## 8627 20.090 52.510
## 8628 20.090 52.510
## 8629 NA NA
## 8630 NA NA
## 8631 NA NA
## 8632 NA NA
## 8633 NA NA
## 8634 NA NA
## 8635 NA NA
## 8636 NA NA
## 8637 NA NA
## 8638 NA NA
## 8639 NA NA
## 8640 NA NA
## 8641 NA NA
## 8642 NA NA
## 8643 NA NA
## 8644 NA NA
## 8645 NA NA
## 8646 NA NA
## 8647 NA NA
## 8648 NA NA
## 8649 NA NA
## 8650 NA NA
## 8651 NA NA
## 8652 NA NA
## 8653 NA NA
## 8654 NA NA
## 8655 NA NA
## 8656 NA NA
## 8657 NA NA
## 8658 NA NA
## 8659 NA NA
## 8660 NA NA
## 8661 NA NA
## 8662 NA NA
## 8663 NA NA
## 8664 NA NA
## 8665 NA NA
## 8666 NA NA
## 8667 NA NA
## 8668 NA NA
## 8669 NA NA
## 8670 NA NA
## 8671 9.365 19.354
## 8672 9.365 19.354
## 8673 9.365 19.354
## 8674 9.365 19.354
## 8675 9.365 19.354
## 8676 9.365 19.354
## 8677 NA NA
## 8678 NA NA
## 8679 NA NA
## 8680 NA NA
## 8681 NA NA
## 8682 NA NA
## 8683 NA NA
## 8684 NA NA
## 8685 NA NA
## 8686 NA NA
## 8687 NA NA
## 8688 NA NA
## 8689 NA NA
## 8690 NA NA
## 8691 NA NA
## 8692 NA NA
## 8693 NA NA
## 8694 NA NA
## 8695 NA NA
## 8696 NA NA
## 8697 NA NA
## 8698 NA NA
## 8699 NA NA
## 8700 NA NA
## 8701 NA NA
## 8702 NA NA
## 8703 NA NA
## 8704 NA NA
## 8705 NA NA
## 8706 NA NA
## 8707 13.600 30.312
## 8708 13.600 30.312
## 8709 13.600 30.312
## 8710 13.600 30.312
## 8711 13.600 30.312
## 8712 13.600 30.312
## 8713 NA NA
## 8714 NA NA
## 8715 NA NA
## 8716 NA NA
## 8717 NA NA
## 8718 NA NA
## 8719 NA NA
## 8720 NA NA
## 8721 NA NA
## 8722 NA NA
## 8723 NA NA
## 8724 NA NA
## 8725 NA NA
## 8726 NA NA
## 8727 NA NA
## 8728 NA NA
## 8729 NA NA
## 8730 NA NA
## 8731 NA NA
## 8732 NA NA
## 8733 NA NA
## 8734 NA NA
## 8735 NA NA
## 8736 NA NA
## 8737 NA NA
## 8738 NA NA
## 8739 NA NA
## 8740 NA NA
## 8741 NA NA
## 8742 NA NA
## 8743 NA NA
## 8744 NA NA
## 8745 NA NA
## 8746 NA NA
## 8747 NA NA
## 8748 NA NA
## 8749 NA NA
## 8750 NA NA
## 8751 NA NA
## 8752 NA NA
## 8753 NA NA
## 8754 NA NA
## 8755 NA NA
## 8756 NA NA
## 8757 NA NA
## 8758 NA NA
## 8759 NA NA
## 8760 NA NA
## 8761 6.635 28.101
## 8762 6.635 28.101
## 8763 6.635 28.101
## 8764 6.635 28.101
## 8765 6.635 28.101
## 8766 6.635 28.101
## 8767 NA NA
## 8768 NA NA
## 8769 NA NA
## 8770 NA NA
## 8771 NA NA
## 8772 NA NA
## 8773 NA NA
## 8774 NA NA
## 8775 NA NA
## 8776 NA NA
## 8777 NA NA
## 8778 NA NA
## 8779 NA NA
## 8780 NA NA
## 8781 NA NA
## 8782 NA NA
## 8783 NA NA
## 8784 NA NA
## 8785 23.314 92.397
## 8786 23.314 92.397
## 8787 23.314 92.397
## 8788 23.314 92.397
## 8789 23.314 92.397
## 8790 23.314 92.397
## 8791 NA NA
## 8792 NA NA
## 8793 NA NA
## 8794 NA NA
## 8795 NA NA
## 8796 NA NA
## 8797 NA NA
## 8798 NA NA
## 8799 NA NA
## 8800 NA NA
## 8801 NA NA
## 8802 NA NA
## 8803 NA NA
## 8804 NA NA
## 8805 NA NA
## 8806 NA NA
## 8807 NA NA
## 8808 NA NA
## 8809 11.016 103.732
## 8810 11.016 103.732
## 8811 11.016 103.732
## 8812 11.016 103.732
## 8813 11.016 103.732
## 8814 11.016 103.732
## 8815 NA NA
## 8816 NA NA
## 8817 NA NA
## 8818 NA NA
## 8819 NA NA
## 8820 NA NA
## 8821 NA NA
## 8822 NA NA
## 8823 NA NA
## 8824 NA NA
## 8825 NA NA
## 8826 NA NA
## 8827 NA NA
## 8828 NA NA
## 8829 NA NA
## 8830 NA NA
## 8831 NA NA
## 8832 NA NA
## 8833 NA NA
## 8834 NA NA
## 8835 NA NA
## 8836 NA NA
## 8837 NA NA
## 8838 NA NA
## 8839 NA NA
## 8840 NA NA
## 8841 NA NA
## 8842 NA NA
## 8843 NA NA
## 8844 NA NA
## 8845 NA NA
## 8846 NA NA
## 8847 NA NA
## 8848 NA NA
## 8849 NA NA
## 8850 NA NA
## 8851 NA NA
## 8852 NA NA
## 8853 NA NA
## 8854 NA NA
## 8855 NA NA
## 8856 NA NA
## 8857 4.436 67.744
## 8858 4.436 67.744
## 8859 4.436 67.744
## 8860 4.436 67.744
## 8861 4.436 67.744
## 8862 4.436 67.744
## 8863 NA NA
## 8864 NA NA
## 8865 NA NA
## 8866 NA NA
## 8867 NA NA
## 8868 NA NA
## 8869 NA NA
## 8870 NA NA
## 8871 NA NA
## 8872 NA NA
## 8873 NA NA
## 8874 NA NA
## 8875 NA NA
## 8876 NA NA
## 8877 NA NA
## 8878 NA NA
## 8879 NA NA
## 8880 NA NA
## 8881 NA NA
## 8882 NA NA
## 8883 NA NA
## 8884 NA NA
## 8885 NA NA
## 8886 NA NA
## 8887 NA NA
## 8888 NA NA
## 8889 NA NA
## 8890 NA NA
## 8891 NA NA
## 8892 NA NA
## 8893 NA NA
## 8894 NA NA
## 8895 NA NA
## 8896 NA NA
## 8897 NA NA
## 8898 NA NA
## 8899 NA NA
## 8900 NA NA
## 8901 NA NA
## 8902 NA NA
## 8903 NA NA
## 8904 NA NA
## 8905 NA NA
## 8906 NA NA
## 8907 NA NA
## 8908 NA NA
## 8909 NA NA
## 8910 NA NA
## 8911 6.911 15.924
## 8912 6.911 15.924
## 8913 6.911 15.924
## 8914 6.911 15.924
## 8915 6.911 15.924
## 8916 6.911 15.924
## 8917 11.219 21.396
## 8918 11.219 21.396
## 8919 11.219 21.396
## 8920 11.219 21.396
## 8921 11.219 21.396
## 8922 11.219 21.396
## 8923 NA NA
## 8924 NA NA
## 8925 NA NA
## 8926 NA NA
## 8927 NA NA
## 8928 NA NA
## 8929 NA NA
## 8930 NA NA
## 8931 NA NA
## 8932 NA NA
## 8933 NA NA
## 8934 NA NA
## 8935 NA NA
## 8936 NA NA
## 8937 NA NA
## 8938 NA NA
## 8939 NA NA
## 8940 NA NA
## 8941 NA NA
## 8942 NA NA
## 8943 NA NA
## 8944 NA NA
## 8945 NA NA
## 8946 NA NA
## 8947 NA NA
## 8948 NA NA
## 8949 NA NA
## 8950 NA NA
## 8951 NA NA
## 8952 NA NA
## 8953 26.368 73.542
## 8954 26.368 73.542
## 8955 26.368 73.542
## 8956 26.368 73.542
## 8957 26.368 73.542
## 8958 26.368 73.542
## 8959 NA NA
## 8960 NA NA
## 8961 NA NA
## 8962 NA NA
## 8963 NA NA
## 8964 NA NA
## 8965 NA NA
## 8966 NA NA
## 8967 NA NA
## 8968 NA NA
## 8969 NA NA
## 8970 NA NA
## 8971 NA NA
## 8972 NA NA
## 8973 NA NA
## 8974 NA NA
## 8975 NA NA
## 8976 NA NA
## 8977 NA NA
## 8978 NA NA
## 8979 NA NA
## 8980 NA NA
## 8981 NA NA
## 8982 NA NA
## 8983 NA NA
## 8984 NA NA
## 8985 NA NA
## 8986 NA NA
## 8987 NA NA
## 8988 NA NA
## 8989 NA NA
## 8990 NA NA
## 8991 NA NA
## 8992 NA NA
## 8993 NA NA
## 8994 NA NA
## 8995 NA NA
## 8996 NA NA
## 8997 NA NA
## 8998 NA NA
## 8999 NA NA
## 9000 NA NA
## 9001 NA NA
## 9002 NA NA
## 9003 NA NA
## 9004 NA NA
## 9005 NA NA
## 9006 NA NA
## 9007 NA NA
## 9008 NA NA
## 9009 NA NA
## 9010 NA NA
## 9011 NA NA
## 9012 NA NA
## 9013 NA NA
## 9014 NA NA
## 9015 NA NA
## 9016 NA NA
## 9017 NA NA
## 9018 NA NA
## 9019 NA NA
## 9020 NA NA
## 9021 NA NA
## 9022 NA NA
## 9023 NA NA
## 9024 NA NA
## 9025 21.715 52.377
## 9026 21.715 52.377
## 9027 21.715 52.377
## 9028 21.715 52.377
## 9029 21.715 52.377
## 9030 21.715 52.377
## 9031 NA NA
## 9032 NA NA
## 9033 NA NA
## 9034 NA NA
## 9035 NA NA
## 9036 NA NA
## 9037 3.537 54.259
## 9038 3.537 54.259
## 9039 3.537 54.259
## 9040 3.537 54.259
## 9041 3.537 54.259
## 9042 3.537 54.259
## 9043 36.001 67.957
## 9044 36.001 67.957
## 9045 36.001 67.957
## 9046 36.001 67.957
## 9047 36.001 67.957
## 9048 36.001 67.957
## 9049 3.122 40.446
## 9050 3.122 40.446
## 9051 3.122 40.446
## 9052 3.122 40.446
## 9053 3.122 40.446
## 9054 3.122 40.446
## 9055 24.401 50.753
## 9056 24.401 50.753
## 9057 24.401 50.753
## 9058 24.401 50.753
## 9059 24.401 50.753
## 9060 24.401 50.753
## 9061 NA NA
## 9062 NA NA
## 9063 NA NA
## 9064 NA NA
## 9065 NA NA
## 9066 NA NA
## 9067 13.091 24.273
## 9068 13.091 24.273
## 9069 13.091 24.273
## 9070 13.091 24.273
## 9071 13.091 24.273
## 9072 13.091 24.273
## 9073 NA NA
## 9074 NA NA
## 9075 NA NA
## 9076 NA NA
## 9077 NA NA
## 9078 NA NA
## 9079 NA NA
## 9080 NA NA
## 9081 NA NA
## 9082 NA NA
## 9083 NA NA
## 9084 NA NA
## 9085 NA NA
## 9086 NA NA
## 9087 NA NA
## 9088 NA NA
## 9089 NA NA
## 9090 NA NA
## 9091 NA NA
## 9092 NA NA
## 9093 NA NA
## 9094 NA NA
## 9095 NA NA
## 9096 NA NA
## 9097 NA NA
## 9098 NA NA
## 9099 NA NA
## 9100 NA NA
## 9101 NA NA
## 9102 NA NA
## 9103 NA NA
## 9104 NA NA
## 9105 NA NA
## 9106 NA NA
## 9107 NA NA
## 9108 NA NA
## 9109 NA NA
## 9110 NA NA
## 9111 NA NA
## 9112 NA NA
## 9113 NA NA
## 9114 NA NA
## 9115 3.920 78.182
## 9116 3.920 78.182
## 9117 3.920 78.182
## 9118 3.920 78.182
## 9119 3.920 78.182
## 9120 3.920 78.182
## 9121 NA NA
## 9122 NA NA
## 9123 NA NA
## 9124 NA NA
## 9125 NA NA
## 9126 NA NA
## 9127 NA NA
## 9128 NA NA
## 9129 NA NA
## 9130 NA NA
## 9131 NA NA
## 9132 NA NA
## 9133 NA NA
## 9134 NA NA
## 9135 NA NA
## 9136 NA NA
## 9137 NA NA
## 9138 NA NA
## 9139 NA NA
## 9140 NA NA
## 9141 NA NA
## 9142 NA NA
## 9143 NA NA
## 9144 NA NA
## 9145 NA NA
## 9146 NA NA
## 9147 NA NA
## 9148 NA NA
## 9149 NA NA
## 9150 NA NA
## 9151 NA NA
## 9152 NA NA
## 9153 NA NA
## 9154 NA NA
## 9155 NA NA
## 9156 NA NA
## 9157 44.062 70.548
## 9158 44.062 70.548
## 9159 44.062 70.548
## 9160 44.062 70.548
## 9161 44.062 70.548
## 9162 44.062 70.548
## 9163 NA NA
## 9164 NA NA
## 9165 NA NA
## 9166 NA NA
## 9167 NA NA
## 9168 NA NA
## 9169 NA NA
## 9170 NA NA
## 9171 NA NA
## 9172 NA NA
## 9173 NA NA
## 9174 NA NA
## 9175 NA NA
## 9176 NA NA
## 9177 NA NA
## 9178 NA NA
## 9179 NA NA
## 9180 NA NA
## 9181 NA NA
## 9182 NA NA
## 9183 NA NA
## 9184 NA NA
## 9185 NA NA
## 9186 NA NA
## 9187 NA NA
## 9188 NA NA
## 9189 NA NA
## 9190 NA NA
## 9191 NA NA
## 9192 NA NA
## 9193 39.017 91.691
## 9194 39.017 91.691
## 9195 39.017 91.691
## 9196 39.017 91.691
## 9197 39.017 91.691
## 9198 39.017 91.691
## 9199 NA NA
## 9200 NA NA
## 9201 NA NA
## 9202 NA NA
## 9203 NA NA
## 9204 NA NA
## 9205 75.615 168.370
## 9206 75.615 168.370
## 9207 75.615 168.370
## 9208 75.615 168.370
## 9209 75.615 168.370
## 9210 75.615 168.370
## 9211 NA NA
## 9212 NA NA
## 9213 NA NA
## 9214 NA NA
## 9215 NA NA
## 9216 NA NA
## 9217 10.782 25.378
## 9218 10.782 25.378
## 9219 10.782 25.378
## 9220 10.782 25.378
## 9221 10.782 25.378
## 9222 10.782 25.378
## 9223 NA NA
## 9224 NA NA
## 9225 NA NA
## 9226 NA NA
## 9227 NA NA
## 9228 NA NA
## 9229 NA NA
## 9230 NA NA
## 9231 NA NA
## 9232 NA NA
## 9233 NA NA
## 9234 NA NA
## 9235 4.466 99.071
## 9236 4.466 99.071
## 9237 4.466 99.071
## 9238 4.466 99.071
## 9239 4.466 99.071
## 9240 4.466 99.071
## 9241 NA NA
## 9242 NA NA
## 9243 NA NA
## 9244 NA NA
## 9245 NA NA
## 9246 NA NA
## 9247 NA NA
## 9248 NA NA
## 9249 NA NA
## 9250 NA NA
## 9251 NA NA
## 9252 NA NA
## 9253 NA NA
## 9254 NA NA
## 9255 NA NA
## 9256 NA NA
## 9257 NA NA
## 9258 NA NA
## 9259 NA NA
## 9260 NA NA
## 9261 NA NA
## 9262 NA NA
## 9263 NA NA
## 9264 NA NA
## 9265 NA NA
## 9266 NA NA
## 9267 NA NA
## 9268 NA NA
## 9269 NA NA
## 9270 NA NA
## 9271 NA NA
## 9272 NA NA
## 9273 NA NA
## 9274 NA NA
## 9275 NA NA
## 9276 NA NA
## 9277 33.108 108.834
## 9278 33.108 108.834
## 9279 33.108 108.834
## 9280 33.108 108.834
## 9281 33.108 108.834
## 9282 33.108 108.834
## 9283 18.148 25.112
## 9284 18.148 25.112
## 9285 18.148 25.112
## 9286 18.148 25.112
## 9287 18.148 25.112
## 9288 18.148 25.112
## 9289 NA NA
## 9290 NA NA
## 9291 NA NA
## 9292 NA NA
## 9293 NA NA
## 9294 NA NA
## 9295 NA NA
## 9296 NA NA
## 9297 NA NA
## 9298 NA NA
## 9299 NA NA
## 9300 NA NA
## 9301 NA NA
## 9302 NA NA
## 9303 NA NA
## 9304 NA NA
## 9305 NA NA
## 9306 NA NA
## 9307 NA NA
## 9308 NA NA
## 9309 NA NA
## 9310 NA NA
## 9311 NA NA
## 9312 NA NA
## 9313 NA NA
## 9314 NA NA
## 9315 NA NA
## 9316 NA NA
## 9317 NA NA
## 9318 NA NA
## 9319 NA NA
## 9320 NA NA
## 9321 NA NA
## 9322 NA NA
## 9323 NA NA
## 9324 NA NA
## 9325 NA NA
## 9326 NA NA
## 9327 NA NA
## 9328 NA NA
## 9329 NA NA
## 9330 NA NA
## 9331 25.130 51.686
## 9332 25.130 51.686
## 9333 25.130 51.686
## 9334 25.130 51.686
## 9335 25.130 51.686
## 9336 25.130 51.686
## 9337 36.395 103.570
## 9338 36.395 103.570
## 9339 36.395 103.570
## 9340 36.395 103.570
## 9341 36.395 103.570
## 9342 36.395 103.570
## 9343 NA NA
## 9344 NA NA
## 9345 NA NA
## 9346 NA NA
## 9347 NA NA
## 9348 NA NA
## 9349 NA NA
## 9350 NA NA
## 9351 NA NA
## 9352 NA NA
## 9353 NA NA
## 9354 NA NA
## 9355 NA NA
## 9356 NA NA
## 9357 NA NA
## 9358 NA NA
## 9359 NA NA
## 9360 NA NA
## 9361 NA NA
## 9362 NA NA
## 9363 NA NA
## 9364 NA NA
## 9365 NA NA
## 9366 NA NA
## 9367 NA NA
## 9368 NA NA
## 9369 NA NA
## 9370 NA NA
## 9371 NA NA
## 9372 NA NA
## 9373 NA NA
## 9374 NA NA
## 9375 NA NA
## 9376 NA NA
## 9377 NA NA
## 9378 NA NA
## 9379 NA NA
## 9380 NA NA
## 9381 NA NA
## 9382 NA NA
## 9383 NA NA
## 9384 NA NA
## 9385 16.127 27.900
## 9386 16.127 27.900
## 9387 16.127 27.900
## 9388 16.127 27.900
## 9389 16.127 27.900
## 9390 16.127 27.900
## 9391 NA NA
## 9392 NA NA
## 9393 NA NA
## 9394 NA NA
## 9395 NA NA
## 9396 NA NA
## 9397 NA NA
## 9398 NA NA
## 9399 NA NA
## 9400 NA NA
## 9401 NA NA
## 9402 NA NA
## 9403 NA NA
## 9404 NA NA
## 9405 NA NA
## 9406 NA NA
## 9407 NA NA
## 9408 NA NA
## 9409 5.570 16.473
## 9410 5.570 16.473
## 9411 5.570 16.473
## 9412 5.570 16.473
## 9413 5.570 16.473
## 9414 5.570 16.473
## 9415 NA NA
## 9416 NA NA
## 9417 NA NA
## 9418 NA NA
## 9419 NA NA
## 9420 NA NA
## 9421 NA NA
## 9422 NA NA
## 9423 NA NA
## 9424 NA NA
## 9425 NA NA
## 9426 NA NA
## 9427 NA NA
## 9428 NA NA
## 9429 NA NA
## 9430 NA NA
## 9431 NA NA
## 9432 NA NA
## 9433 15.472 21.652
## 9434 15.472 21.652
## 9435 15.472 21.652
## 9436 15.472 21.652
## 9437 15.472 21.652
## 9438 15.472 21.652
## 9439 NA NA
## 9440 NA NA
## 9441 NA NA
## 9442 NA NA
## 9443 NA NA
## 9444 NA NA
## 9445 NA NA
## 9446 NA NA
## 9447 NA NA
## 9448 NA NA
## 9449 NA NA
## 9450 NA NA
## 9451 NA NA
## 9452 NA NA
## 9453 NA NA
## 9454 NA NA
## 9455 NA NA
## 9456 NA NA
## 9457 NA NA
## 9458 NA NA
## 9459 NA NA
## 9460 NA NA
## 9461 NA NA
## 9462 NA NA
## 9463 1.502 30.386
## 9464 1.502 30.386
## 9465 1.502 30.386
## 9466 1.502 30.386
## 9467 1.502 30.386
## 9468 1.502 30.386
## 9469 NA NA
## 9470 NA NA
## 9471 NA NA
## 9472 NA NA
## 9473 NA NA
## 9474 NA NA
## 9475 NA NA
## 9476 NA NA
## 9477 NA NA
## 9478 NA NA
## 9479 NA NA
## 9480 NA NA
## 9481 8.009 22.021
## 9482 8.009 22.021
## 9483 8.009 22.021
## 9484 8.009 22.021
## 9485 8.009 22.021
## 9486 8.009 22.021
## 9487 NA NA
## 9488 NA NA
## 9489 NA NA
## 9490 NA NA
## 9491 NA NA
## 9492 NA NA
## 9493 NA NA
## 9494 NA NA
## 9495 NA NA
## 9496 NA NA
## 9497 NA NA
## 9498 NA NA
## 9499 NA NA
## 9500 NA NA
## 9501 NA NA
## 9502 NA NA
## 9503 NA NA
## 9504 NA NA
## 9505 NA NA
## 9506 NA NA
## 9507 NA NA
## 9508 NA NA
## 9509 NA NA
## 9510 NA NA
## 9511 9.093 14.085
## 9512 9.093 14.085
## 9513 9.093 14.085
## 9514 9.093 14.085
## 9515 9.093 14.085
## 9516 9.093 14.085
## 9517 14.165 31.402
## 9518 14.165 31.402
## 9519 14.165 31.402
## 9520 14.165 31.402
## 9521 14.165 31.402
## 9522 14.165 31.402
## 9523 NA NA
## 9524 NA NA
## 9525 NA NA
## 9526 NA NA
## 9527 NA NA
## 9528 NA NA
## 9529 0.930 51.517
## 9530 0.930 51.517
## 9531 0.930 51.517
## 9532 0.930 51.517
## 9533 0.930 51.517
## 9534 0.930 51.517
## 9535 NA NA
## 9536 NA NA
## 9537 NA NA
## 9538 NA NA
## 9539 NA NA
## 9540 NA NA
## 9541 NA NA
## 9542 NA NA
## 9543 NA NA
## 9544 NA NA
## 9545 NA NA
## 9546 NA NA
## 9547 NA NA
## 9548 NA NA
## 9549 NA NA
## 9550 NA NA
## 9551 NA NA
## 9552 NA NA
## 9553 NA NA
## 9554 NA NA
## 9555 NA NA
## 9556 NA NA
## 9557 NA NA
## 9558 NA NA
## 9559 NA NA
## 9560 NA NA
## 9561 NA NA
## 9562 NA NA
## 9563 NA NA
## 9564 NA NA
## 9565 NA NA
## 9566 NA NA
## 9567 NA NA
## 9568 NA NA
## 9569 NA NA
## 9570 NA NA
## 9571 NA NA
## 9572 NA NA
## 9573 NA NA
## 9574 NA NA
## 9575 NA NA
## 9576 NA NA
## 9577 NA NA
## 9578 NA NA
## 9579 NA NA
## 9580 NA NA
## 9581 NA NA
## 9582 NA NA
## 9583 NA NA
## 9584 NA NA
## 9585 NA NA
## 9586 NA NA
## 9587 NA NA
## 9588 NA NA
## 9589 NA NA
## 9590 NA NA
## 9591 NA NA
## 9592 NA NA
## 9593 NA NA
## 9594 NA NA
## 9595 NA NA
## 9596 NA NA
## 9597 NA NA
## 9598 NA NA
## 9599 NA NA
## 9600 NA NA
## 9601 NA NA
## 9602 NA NA
## 9603 NA NA
## 9604 NA NA
## 9605 NA NA
## 9606 NA NA
## 9607 NA NA
## 9608 NA NA
## 9609 NA NA
## 9610 NA NA
## 9611 NA NA
## 9612 NA NA
## 9613 NA NA
## 9614 NA NA
## 9615 NA NA
## 9616 NA NA
## 9617 NA NA
## 9618 NA NA
## 9619 NA NA
## 9620 NA NA
## 9621 NA NA
## 9622 NA NA
## 9623 NA NA
## 9624 NA NA
## 9625 16.887 37.583
## 9626 16.887 37.583
## 9627 16.887 37.583
## 9628 16.887 37.583
## 9629 16.887 37.583
## 9630 16.887 37.583
## 9631 NA NA
## 9632 NA NA
## 9633 NA NA
## 9634 NA NA
## 9635 NA NA
## 9636 NA NA
## 9637 NA NA
## 9638 NA NA
## 9639 NA NA
## 9640 NA NA
## 9641 NA NA
## 9642 NA NA
## 9643 NA NA
## 9644 NA NA
## 9645 NA NA
## 9646 NA NA
## 9647 NA NA
## 9648 NA NA
## 9649 NA NA
## 9650 NA NA
## 9651 NA NA
## 9652 NA NA
## 9653 NA NA
## 9654 NA NA
## 9655 NA NA
## 9656 NA NA
## 9657 NA NA
## 9658 NA NA
## 9659 NA NA
## 9660 NA NA
## 9661 NA NA
## 9662 NA NA
## 9663 NA NA
## 9664 NA NA
## 9665 NA NA
## 9666 NA NA
## 9667 NA NA
## 9668 NA NA
## 9669 NA NA
## 9670 NA NA
## 9671 NA NA
## 9672 NA NA
## 9673 NA NA
## 9674 NA NA
## 9675 NA NA
## 9676 NA NA
## 9677 NA NA
## 9678 NA NA
## 9679 NA NA
## 9680 NA NA
## 9681 NA NA
## 9682 NA NA
## 9683 NA NA
## 9684 NA NA
## 9685 NA NA
## 9686 NA NA
## 9687 NA NA
## 9688 NA NA
## 9689 NA NA
## 9690 NA NA
## 9691 2.540 39.236
## 9692 2.540 39.236
## 9693 2.540 39.236
## 9694 2.540 39.236
## 9695 2.540 39.236
## 9696 2.540 39.236
## 9697 NA NA
## 9698 NA NA
## 9699 NA NA
## 9700 NA NA
## 9701 NA NA
## 9702 NA NA
## 9703 NA NA
## 9704 NA NA
## 9705 NA NA
## 9706 NA NA
## 9707 NA NA
## 9708 NA NA
## 9709 NA NA
## 9710 NA NA
## 9711 NA NA
## 9712 NA NA
## 9713 NA NA
## 9714 NA NA
## 9715 NA NA
## 9716 NA NA
## 9717 NA NA
## 9718 NA NA
## 9719 NA NA
## 9720 NA NA
## 9721 NA NA
## 9722 NA NA
## 9723 NA NA
## 9724 NA NA
## 9725 NA NA
## 9726 NA NA
## 9727 NA NA
## 9728 NA NA
## 9729 NA NA
## 9730 NA NA
## 9731 NA NA
## 9732 NA NA
## 9733 7.301 30.655
## 9734 7.301 30.655
## 9735 7.301 30.655
## 9736 7.301 30.655
## 9737 7.301 30.655
## 9738 7.301 30.655
## 9739 NA NA
## 9740 NA NA
## 9741 NA NA
## 9742 NA NA
## 9743 NA NA
## 9744 NA NA
## 9745 NA NA
## 9746 NA NA
## 9747 NA NA
## 9748 NA NA
## 9749 NA NA
## 9750 NA NA
## 9751 NA NA
## 9752 NA NA
## 9753 NA NA
## 9754 NA NA
## 9755 NA NA
## 9756 NA NA
## 9757 2.273 32.797
## 9758 2.273 32.797
## 9759 2.273 32.797
## 9760 2.273 32.797
## 9761 2.273 32.797
## 9762 2.273 32.797
## 9763 NA NA
## 9764 NA NA
## 9765 NA NA
## 9766 NA NA
## 9767 NA NA
## 9768 NA NA
## 9769 NA NA
## 9770 NA NA
## 9771 NA NA
## 9772 NA NA
## 9773 NA NA
## 9774 NA NA
## 9775 14.336 46.707
## 9776 14.336 46.707
## 9777 14.336 46.707
## 9778 14.336 46.707
## 9779 14.336 46.707
## 9780 14.336 46.707
## 9781 NA NA
## 9782 NA NA
## 9783 NA NA
## 9784 NA NA
## 9785 NA NA
## 9786 NA NA
## 9787 NA NA
## 9788 NA NA
## 9789 NA NA
## 9790 NA NA
## 9791 NA NA
## 9792 NA NA
## 9793 NA NA
## 9794 NA NA
## 9795 NA NA
## 9796 NA NA
## 9797 NA NA
## 9798 NA NA
## 9799 NA NA
## 9800 NA NA
## 9801 NA NA
## 9802 NA NA
## 9803 NA NA
## 9804 NA NA
## 9805 NA NA
## 9806 NA NA
## 9807 NA NA
## 9808 NA NA
## 9809 NA NA
## 9810 NA NA
## 9811 NA NA
## 9812 NA NA
## 9813 NA NA
## 9814 NA NA
## 9815 NA NA
## 9816 NA NA
## 9817 19.700 49.360
## 9818 19.700 49.360
## 9819 19.700 49.360
## 9820 19.700 49.360
## 9821 19.700 49.360
## 9822 19.700 49.360
## 9823 9.869 46.572
## 9824 9.869 46.572
## 9825 9.869 46.572
## 9826 9.869 46.572
## 9827 9.869 46.572
## 9828 9.869 46.572
## 9829 42.902 69.529
## 9830 42.902 69.529
## 9831 42.902 69.529
## 9832 42.902 69.529
## 9833 42.902 69.529
## 9834 42.902 69.529
## 9835 56.103 79.937
## 9836 56.103 79.937
## 9837 56.103 79.937
## 9838 56.103 79.937
## 9839 56.103 79.937
## 9840 56.103 79.937
## 9841 NA NA
## 9842 NA NA
## 9843 NA NA
## 9844 NA NA
## 9845 NA NA
## 9846 NA NA
## 9847 NA NA
## 9848 NA NA
## 9849 NA NA
## 9850 NA NA
## 9851 NA NA
## 9852 NA NA
## 9853 30.529 104.589
## 9854 30.529 104.589
## 9855 30.529 104.589
## 9856 30.529 104.589
## 9857 30.529 104.589
## 9858 30.529 104.589
## 9859 NA NA
## 9860 NA NA
## 9861 NA NA
## 9862 NA NA
## 9863 NA NA
## 9864 NA NA
## 9865 NA NA
## 9866 NA NA
## 9867 NA NA
## 9868 NA NA
## 9869 NA NA
## 9870 NA NA
## 9871 10.503 72.167
## 9872 10.503 72.167
## 9873 10.503 72.167
## 9874 10.503 72.167
## 9875 10.503 72.167
## 9876 10.503 72.167
## 9877 19.844 30.943
## 9878 19.844 30.943
## 9879 19.844 30.943
## 9880 19.844 30.943
## 9881 19.844 30.943
## 9882 19.844 30.943
## 9883 NA NA
## 9884 NA NA
## 9885 NA NA
## 9886 NA NA
## 9887 NA NA
## 9888 NA NA
## 9889 NA NA
## 9890 NA NA
## 9891 NA NA
## 9892 NA NA
## 9893 NA NA
## 9894 NA NA
## 9895 17.101 21.135
## 9896 17.101 21.135
## 9897 17.101 21.135
## 9898 17.101 21.135
## 9899 17.101 21.135
## 9900 17.101 21.135
## 9901 NA NA
## 9902 NA NA
## 9903 NA NA
## 9904 NA NA
## 9905 NA NA
## 9906 NA NA
## 9907 NA NA
## 9908 NA NA
## 9909 NA NA
## 9910 NA NA
## 9911 NA NA
## 9912 NA NA
## 9913 NA NA
## 9914 NA NA
## 9915 NA NA
## 9916 NA NA
## 9917 NA NA
## 9918 NA NA
## 9919 NA NA
## 9920 NA NA
## 9921 NA NA
## 9922 NA NA
## 9923 NA NA
## 9924 NA NA
## 9925 NA NA
## 9926 NA NA
## 9927 NA NA
## 9928 NA NA
## 9929 NA NA
## 9930 NA NA
## 9931 NA NA
## 9932 NA NA
## 9933 NA NA
## 9934 NA NA
## 9935 NA NA
## 9936 NA NA
## 9937 NA NA
## 9938 NA NA
## 9939 NA NA
## 9940 NA NA
## 9941 NA NA
## 9942 NA NA
## 9943 1.003 29.941
## 9944 1.003 29.941
## 9945 1.003 29.941
## 9946 1.003 29.941
## 9947 1.003 29.941
## 9948 1.003 29.941
## 9949 NA NA
## 9950 NA NA
## 9951 NA NA
## 9952 NA NA
## 9953 NA NA
## 9954 NA NA
## 9955 NA NA
## 9956 NA NA
## 9957 NA NA
## 9958 NA NA
## 9959 NA NA
## 9960 NA NA
## 9961 NA NA
## 9962 NA NA
## 9963 NA NA
## 9964 NA NA
## 9965 NA NA
## 9966 NA NA
## 9967 23.164 40.167
## 9968 23.164 40.167
## 9969 23.164 40.167
## 9970 23.164 40.167
## 9971 23.164 40.167
## 9972 23.164 40.167
## 9973 NA NA
## 9974 NA NA
## 9975 NA NA
## 9976 NA NA
## 9977 NA NA
## 9978 NA NA
## 9979 NA NA
## 9980 NA NA
## 9981 NA NA
## 9982 NA NA
## 9983 NA NA
## 9984 NA NA
## 9985 NA NA
## 9986 NA NA
## 9987 NA NA
## 9988 NA NA
## 9989 NA NA
## 9990 NA NA
## 9991 NA NA
## 9992 NA NA
## 9993 NA NA
## 9994 NA NA
## 9995 NA NA
## 9996 NA NA
## 9997 NA NA
## 9998 NA NA
## 9999 NA NA
## 10000 NA NA
## 10001 NA NA
## 10002 NA NA
## 10003 147.641 165.047
## 10004 147.641 165.047
## 10005 147.641 165.047
## 10006 147.641 165.047
## 10007 147.641 165.047
## 10008 147.641 165.047
## 10009 25.847 57.511
## 10010 25.847 57.511
## 10011 25.847 57.511
## 10012 25.847 57.511
## 10013 25.847 57.511
## 10014 25.847 57.511
## 10015 NA NA
## 10016 NA NA
## 10017 NA NA
## 10018 NA NA
## 10019 NA NA
## 10020 NA NA
## 10021 NA NA
## 10022 NA NA
## 10023 NA NA
## 10024 NA NA
## 10025 NA NA
## 10026 NA NA
## 10027 NA NA
## 10028 NA NA
## 10029 NA NA
## 10030 NA NA
## 10031 NA NA
## 10032 NA NA
## 10033 NA NA
## 10034 NA NA
## 10035 NA NA
## 10036 NA NA
## 10037 NA NA
## 10038 NA NA
## 10039 9.386 21.766
## 10040 9.386 21.766
## 10041 9.386 21.766
## 10042 9.386 21.766
## 10043 9.386 21.766
## 10044 9.386 21.766
## 10045 6.477 13.208
## 10046 6.477 13.208
## 10047 6.477 13.208
## 10048 6.477 13.208
## 10049 6.477 13.208
## 10050 6.477 13.208
## 10051 NA NA
## 10052 NA NA
## 10053 NA NA
## 10054 NA NA
## 10055 NA NA
## 10056 NA NA
## 10057 NA NA
## 10058 NA NA
## 10059 NA NA
## 10060 NA NA
## 10061 NA NA
## 10062 NA NA
## 10063 9.496 14.934
## 10064 9.496 14.934
## 10065 9.496 14.934
## 10066 9.496 14.934
## 10067 9.496 14.934
## 10068 9.496 14.934
## 10069 7.778 13.995
## 10070 7.778 13.995
## 10071 7.778 13.995
## 10072 7.778 13.995
## 10073 7.778 13.995
## 10074 7.778 13.995
## 10075 NA NA
## 10076 NA NA
## 10077 NA NA
## 10078 NA NA
## 10079 NA NA
## 10080 NA NA
## 10081 NA NA
## 10082 NA NA
## 10083 NA NA
## 10084 NA NA
## 10085 NA NA
## 10086 NA NA
## 10087 NA NA
## 10088 NA NA
## 10089 NA NA
## 10090 NA NA
## 10091 NA NA
## 10092 NA NA
## 10093 4.593 45.522
## 10094 4.593 45.522
## 10095 4.593 45.522
## 10096 4.593 45.522
## 10097 4.593 45.522
## 10098 4.593 45.522
## 10099 NA NA
## 10100 NA NA
## 10101 NA NA
## 10102 NA NA
## 10103 NA NA
## 10104 NA NA
## 10105 NA NA
## 10106 NA NA
## 10107 NA NA
## 10108 NA NA
## 10109 NA NA
## 10110 NA NA
## 10111 49.370 72.262
## 10112 49.370 72.262
## 10113 49.370 72.262
## 10114 49.370 72.262
## 10115 49.370 72.262
## 10116 49.370 72.262
## 10117 NA NA
## 10118 NA NA
## 10119 NA NA
## 10120 NA NA
## 10121 NA NA
## 10122 NA NA
## 10123 NA NA
## 10124 NA NA
## 10125 NA NA
## 10126 NA NA
## 10127 NA NA
## 10128 NA NA
## 10129 12.430 23.437
## 10130 12.430 23.437
## 10131 12.430 23.437
## 10132 12.430 23.437
## 10133 12.430 23.437
## 10134 12.430 23.437
## 10135 NA NA
## 10136 NA NA
## 10137 NA NA
## 10138 NA NA
## 10139 NA NA
## 10140 NA NA
## 10141 NA NA
## 10142 NA NA
## 10143 NA NA
## 10144 NA NA
## 10145 NA NA
## 10146 NA NA
## 10147 NA NA
## 10148 NA NA
## 10149 NA NA
## 10150 NA NA
## 10151 NA NA
## 10152 NA NA
## 10153 NA NA
## 10154 NA NA
## 10155 NA NA
## 10156 NA NA
## 10157 NA NA
## 10158 NA NA
## 10159 NA NA
## 10160 NA NA
## 10161 NA NA
## 10162 NA NA
## 10163 NA NA
## 10164 NA NA
## 10165 NA NA
## 10166 NA NA
## 10167 NA NA
## 10168 NA NA
## 10169 NA NA
## 10170 NA NA
## 10171 NA NA
## 10172 NA NA
## 10173 NA NA
## 10174 NA NA
## 10175 NA NA
## 10176 NA NA
## 10177 NA NA
## 10178 NA NA
## 10179 NA NA
## 10180 NA NA
## 10181 NA NA
## 10182 NA NA
## 10183 NA NA
## 10184 NA NA
## 10185 NA NA
## 10186 NA NA
## 10187 NA NA
## 10188 NA NA
## 10189 22.285 31.423
## 10190 22.285 31.423
## 10191 22.285 31.423
## 10192 22.285 31.423
## 10193 22.285 31.423
## 10194 22.285 31.423
## 10195 NA NA
## 10196 NA NA
## 10197 NA NA
## 10198 NA NA
## 10199 NA NA
## 10200 NA NA
## 10201 NA NA
## 10202 NA NA
## 10203 NA NA
## 10204 NA NA
## 10205 NA NA
## 10206 NA NA
## 10207 NA NA
## 10208 NA NA
## 10209 NA NA
## 10210 NA NA
## 10211 NA NA
## 10212 NA NA
## 10213 NA NA
## 10214 NA NA
## 10215 NA NA
## 10216 NA NA
## 10217 NA NA
## 10218 NA NA
## 10219 NA NA
## 10220 NA NA
## 10221 NA NA
## 10222 NA NA
## 10223 NA NA
## 10224 NA NA
## 10225 NA NA
## 10226 NA NA
## 10227 NA NA
## 10228 NA NA
## 10229 NA NA
## 10230 NA NA
## 10231 NA NA
## 10232 NA NA
## 10233 NA NA
## 10234 NA NA
## 10235 NA NA
## 10236 NA NA
## 10237 NA NA
## 10238 NA NA
## 10239 NA NA
## 10240 NA NA
## 10241 NA NA
## 10242 NA NA
## 10243 NA NA
## 10244 NA NA
## 10245 NA NA
## 10246 NA NA
## 10247 NA NA
## 10248 NA NA
## 10249 NA NA
## 10250 NA NA
## 10251 NA NA
## 10252 NA NA
## 10253 NA NA
## 10254 NA NA
## 10255 NA NA
## 10256 NA NA
## 10257 NA NA
## 10258 NA NA
## 10259 NA NA
## 10260 NA NA
## 10261 NA NA
## 10262 NA NA
## 10263 NA NA
## 10264 NA NA
## 10265 NA NA
## 10266 NA NA
## 10267 NA NA
## 10268 NA NA
## 10269 NA NA
## 10270 NA NA
## 10271 NA NA
## 10272 NA NA
## 10273 NA NA
## 10274 NA NA
## 10275 NA NA
## 10276 NA NA
## 10277 NA NA
## 10278 NA NA
## 10279 NA NA
## 10280 NA NA
## 10281 NA NA
## 10282 NA NA
## 10283 NA NA
## 10284 NA NA
## 10285 16.179 25.572
## 10286 16.179 25.572
## 10287 16.179 25.572
## 10288 16.179 25.572
## 10289 16.179 25.572
## 10290 16.179 25.572
## 10291 15.917 32.490
## 10292 15.917 32.490
## 10293 15.917 32.490
## 10294 15.917 32.490
## 10295 15.917 32.490
## 10296 15.917 32.490
## 10297 NA NA
## 10298 NA NA
## 10299 NA NA
## 10300 NA NA
## 10301 NA NA
## 10302 NA NA
## 10303 NA NA
## 10304 NA NA
## 10305 NA NA
## 10306 NA NA
## 10307 NA NA
## 10308 NA NA
## 10309 NA NA
## 10310 NA NA
## 10311 NA NA
## 10312 NA NA
## 10313 NA NA
## 10314 NA NA
## 10315 NA NA
## 10316 NA NA
## 10317 NA NA
## 10318 NA NA
## 10319 NA NA
## 10320 NA NA
## 10321 NA NA
## 10322 NA NA
## 10323 NA NA
## 10324 NA NA
## 10325 NA NA
## 10326 NA NA
## 10327 NA NA
## 10328 NA NA
## 10329 NA NA
## 10330 NA NA
## 10331 NA NA
## 10332 NA NA
## 10333 NA NA
## 10334 NA NA
## 10335 NA NA
## 10336 NA NA
## 10337 NA NA
## 10338 NA NA
## 10339 33.491 41.014
## 10340 33.491 41.014
## 10341 33.491 41.014
## 10342 33.491 41.014
## 10343 33.491 41.014
## 10344 33.491 41.014
## 10345 23.496 39.362
## 10346 23.496 39.362
## 10347 23.496 39.362
## 10348 23.496 39.362
## 10349 23.496 39.362
## 10350 23.496 39.362
## 10351 47.433 79.622
## 10352 47.433 79.622
## 10353 47.433 79.622
## 10354 47.433 79.622
## 10355 47.433 79.622
## 10356 47.433 79.622
## 10357 NA NA
## 10358 NA NA
## 10359 NA NA
## 10360 NA NA
## 10361 NA NA
## 10362 NA NA
## 10363 11.519 33.220
## 10364 11.519 33.220
## 10365 11.519 33.220
## 10366 11.519 33.220
## 10367 11.519 33.220
## 10368 11.519 33.220
## 10369 NA NA
## 10370 NA NA
## 10371 NA NA
## 10372 NA NA
## 10373 NA NA
## 10374 NA NA
## 10375 NA NA
## 10376 NA NA
## 10377 NA NA
## 10378 NA NA
## 10379 NA NA
## 10380 NA NA
## 10381 NA NA
## 10382 NA NA
## 10383 NA NA
## 10384 NA NA
## 10385 NA NA
## 10386 NA NA
## 10387 NA NA
## 10388 NA NA
## 10389 NA NA
## 10390 NA NA
## 10391 NA NA
## 10392 NA NA
## 10393 27.221 42.042
## 10394 27.221 42.042
## 10395 27.221 42.042
## 10396 27.221 42.042
## 10397 27.221 42.042
## 10398 27.221 42.042
## 10399 NA NA
## 10400 NA NA
## 10401 NA NA
## 10402 NA NA
## 10403 NA NA
## 10404 NA NA
## 10405 NA NA
## 10406 NA NA
## 10407 NA NA
## 10408 NA NA
## 10409 NA NA
## 10410 NA NA
## 10411 NA NA
## 10412 NA NA
## 10413 NA NA
## 10414 NA NA
## 10415 NA NA
## 10416 NA NA
## 10417 NA NA
## 10418 NA NA
## 10419 NA NA
## 10420 NA NA
## 10421 NA NA
## 10422 NA NA
## 10423 NA NA
## 10424 NA NA
## 10425 NA NA
## 10426 NA NA
## 10427 NA NA
## 10428 NA NA
## 10429 NA NA
## 10430 NA NA
## 10431 NA NA
## 10432 NA NA
## 10433 NA NA
## 10434 NA NA
## 10435 NA NA
## 10436 NA NA
## 10437 NA NA
## 10438 NA NA
## 10439 NA NA
## 10440 NA NA
## 10441 10.791 23.092
## 10442 10.791 23.092
## 10443 10.791 23.092
## 10444 10.791 23.092
## 10445 10.791 23.092
## 10446 10.791 23.092
## 10447 16.471 27.774
## 10448 16.471 27.774
## 10449 16.471 27.774
## 10450 16.471 27.774
## 10451 16.471 27.774
## 10452 16.471 27.774
## 10453 NA NA
## 10454 NA NA
## 10455 NA NA
## 10456 NA NA
## 10457 NA NA
## 10458 NA NA
## 10459 7.473 24.471
## 10460 7.473 24.471
## 10461 7.473 24.471
## 10462 7.473 24.471
## 10463 7.473 24.471
## 10464 7.473 24.471
## 10465 NA NA
## 10466 NA NA
## 10467 NA NA
## 10468 NA NA
## 10469 NA NA
## 10470 NA NA
## 10471 NA NA
## 10472 NA NA
## 10473 NA NA
## 10474 NA NA
## 10475 NA NA
## 10476 NA NA
## 10477 NA NA
## 10478 NA NA
## 10479 NA NA
## 10480 NA NA
## 10481 NA NA
## 10482 NA NA
## 10483 NA NA
## 10484 NA NA
## 10485 NA NA
## 10486 NA NA
## 10487 NA NA
## 10488 NA NA
## 10489 NA NA
## 10490 NA NA
## 10491 NA NA
## 10492 NA NA
## 10493 NA NA
## 10494 NA NA
## 10495 NA NA
## 10496 NA NA
## 10497 NA NA
## 10498 NA NA
## 10499 NA NA
## 10500 NA NA
## 10501 NA NA
## 10502 NA NA
## 10503 NA NA
## 10504 NA NA
## 10505 NA NA
## 10506 NA NA
## 10507 NA NA
## 10508 NA NA
## 10509 NA NA
## 10510 NA NA
## 10511 NA NA
## 10512 NA NA
## 10513 NA NA
## 10514 NA NA
## 10515 NA NA
## 10516 NA NA
## 10517 NA NA
## 10518 NA NA
## 10519 NA NA
## 10520 NA NA
## 10521 NA NA
## 10522 NA NA
## 10523 NA NA
## 10524 NA NA
## 10525 35.426 50.345
## 10526 35.426 50.345
## 10527 35.426 50.345
## 10528 35.426 50.345
## 10529 35.426 50.345
## 10530 35.426 50.345
## 10531 NA NA
## 10532 NA NA
## 10533 NA NA
## 10534 NA NA
## 10535 NA NA
## 10536 NA NA
## 10537 NA NA
## 10538 NA NA
## 10539 NA NA
## 10540 NA NA
## 10541 NA NA
## 10542 NA NA
## 10543 15.199 26.877
## 10544 15.199 26.877
## 10545 15.199 26.877
## 10546 15.199 26.877
## 10547 15.199 26.877
## 10548 15.199 26.877
## 10549 NA NA
## 10550 NA NA
## 10551 NA NA
## 10552 NA NA
## 10553 NA NA
## 10554 NA NA
## 10555 NA NA
## 10556 NA NA
## 10557 NA NA
## 10558 NA NA
## 10559 NA NA
## 10560 NA NA
## 10561 10.974 17.970
## 10562 10.974 17.970
## 10563 10.974 17.970
## 10564 10.974 17.970
## 10565 10.974 17.970
## 10566 10.974 17.970
## 10567 15.101 56.689
## 10568 15.101 56.689
## 10569 15.101 56.689
## 10570 15.101 56.689
## 10571 15.101 56.689
## 10572 15.101 56.689
## 10573 NA NA
## 10574 NA NA
## 10575 NA NA
## 10576 NA NA
## 10577 NA NA
## 10578 NA NA
## 10579 NA NA
## 10580 NA NA
## 10581 NA NA
## 10582 NA NA
## 10583 NA NA
## 10584 NA NA
## 10585 23.150 44.899
## 10586 23.150 44.899
## 10587 23.150 44.899
## 10588 23.150 44.899
## 10589 23.150 44.899
## 10590 23.150 44.899
## 10591 NA NA
## 10592 NA NA
## 10593 NA NA
## 10594 NA NA
## 10595 NA NA
## 10596 NA NA
## 10597 3.235 26.342
## 10598 3.235 26.342
## 10599 3.235 26.342
## 10600 3.235 26.342
## 10601 3.235 26.342
## 10602 3.235 26.342
## 10603 12.667 26.005
## 10604 12.667 26.005
## 10605 12.667 26.005
## 10606 12.667 26.005
## 10607 12.667 26.005
## 10608 12.667 26.005
## 10609 NA NA
## 10610 NA NA
## 10611 NA NA
## 10612 NA NA
## 10613 NA NA
## 10614 NA NA
## 10615 20.005 36.029
## 10616 20.005 36.029
## 10617 20.005 36.029
## 10618 20.005 36.029
## 10619 20.005 36.029
## 10620 20.005 36.029
## 10621 NA NA
## 10622 NA NA
## 10623 NA NA
## 10624 NA NA
## 10625 NA NA
## 10626 NA NA
## 10627 NA NA
## 10628 NA NA
## 10629 NA NA
## 10630 NA NA
## 10631 NA NA
## 10632 NA NA
## 10633 NA NA
## 10634 NA NA
## 10635 NA NA
## 10636 NA NA
## 10637 NA NA
## 10638 NA NA
## 10639 NA NA
## 10640 NA NA
## 10641 NA NA
## 10642 NA NA
## 10643 NA NA
## 10644 NA NA
## 10645 11.916 23.694
## 10646 11.916 23.694
## 10647 11.916 23.694
## 10648 11.916 23.694
## 10649 11.916 23.694
## 10650 11.916 23.694
## 10651 12.601 22.660
## 10652 12.601 22.660
## 10653 12.601 22.660
## 10654 12.601 22.660
## 10655 12.601 22.660
## 10656 12.601 22.660
## 10657 NA NA
## 10658 NA NA
## 10659 NA NA
## 10660 NA NA
## 10661 NA NA
## 10662 NA NA
## 10663 NA NA
## 10664 NA NA
## 10665 NA NA
## 10666 NA NA
## 10667 NA NA
## 10668 NA NA
## 10669 NA NA
## 10670 NA NA
## 10671 NA NA
## 10672 NA NA
## 10673 NA NA
## 10674 NA NA
## 10675 NA NA
## 10676 NA NA
## 10677 NA NA
## 10678 NA NA
## 10679 NA NA
## 10680 NA NA
## 10681 NA NA
## 10682 NA NA
## 10683 NA NA
## 10684 NA NA
## 10685 NA NA
## 10686 NA NA
## 10687 47.616 58.053
## 10688 47.616 58.053
## 10689 47.616 58.053
## 10690 47.616 58.053
## 10691 47.616 58.053
## 10692 47.616 58.053
## 10693 NA NA
## 10694 NA NA
## 10695 NA NA
## 10696 NA NA
## 10697 NA NA
## 10698 NA NA
## 10699 NA NA
## 10700 NA NA
## 10701 NA NA
## 10702 NA NA
## 10703 NA NA
## 10704 NA NA
## 10705 NA NA
## 10706 NA NA
## 10707 NA NA
## 10708 NA NA
## 10709 NA NA
## 10710 NA NA
## 10711 NA NA
## 10712 NA NA
## 10713 NA NA
## 10714 NA NA
## 10715 NA NA
## 10716 NA NA
## 10717 NA NA
## 10718 NA NA
## 10719 NA NA
## 10720 NA NA
## 10721 NA NA
## 10722 NA NA
## 10723 NA NA
## 10724 NA NA
## 10725 NA NA
## 10726 NA NA
## 10727 NA NA
## 10728 NA NA
## 10729 NA NA
## 10730 NA NA
## 10731 NA NA
## 10732 NA NA
## 10733 NA NA
## 10734 NA NA
## 10735 25.897 46.254
## 10736 25.897 46.254
## 10737 25.897 46.254
## 10738 25.897 46.254
## 10739 25.897 46.254
## 10740 25.897 46.254
## 10741 6.305 26.775
## 10742 6.305 26.775
## 10743 6.305 26.775
## 10744 6.305 26.775
## 10745 6.305 26.775
## 10746 6.305 26.775
## 10747 NA NA
## 10748 NA NA
## 10749 NA NA
## 10750 NA NA
## 10751 NA NA
## 10752 NA NA
## 10753 NA NA
## 10754 NA NA
## 10755 NA NA
## 10756 NA NA
## 10757 NA NA
## 10758 NA NA
## 10759 NA NA
## 10760 NA NA
## 10761 NA NA
## 10762 NA NA
## 10763 NA NA
## 10764 NA NA
## 10765 NA NA
## 10766 NA NA
## 10767 NA NA
## 10768 NA NA
## 10769 NA NA
## 10770 NA NA
## 10771 NA NA
## 10772 NA NA
## 10773 NA NA
## 10774 NA NA
## 10775 NA NA
## 10776 NA NA
## 10777 NA NA
## 10778 NA NA
## 10779 NA NA
## 10780 NA NA
## 10781 NA NA
## 10782 NA NA
## 10783 NA NA
## 10784 NA NA
## 10785 NA NA
## 10786 NA NA
## 10787 NA NA
## 10788 NA NA
## 10789 NA NA
## 10790 NA NA
## 10791 NA NA
## 10792 NA NA
## 10793 NA NA
## 10794 NA NA
## 10795 NA NA
## 10796 NA NA
## 10797 NA NA
## 10798 NA NA
## 10799 NA NA
## 10800 NA NA
## 10801 NA NA
## 10802 NA NA
## 10803 NA NA
## 10804 NA NA
## 10805 NA NA
## 10806 NA NA
## 10807 NA NA
## 10808 NA NA
## 10809 NA NA
## 10810 NA NA
## 10811 NA NA
## 10812 NA NA
## 10813 NA NA
## 10814 NA NA
## 10815 NA NA
## 10816 NA NA
## 10817 NA NA
## 10818 NA NA
## 10819 17.486 27.175
## 10820 17.486 27.175
## 10821 17.486 27.175
## 10822 17.486 27.175
## 10823 17.486 27.175
## 10824 17.486 27.175
## 10825 NA NA
## 10826 NA NA
## 10827 NA NA
## 10828 NA NA
## 10829 NA NA
## 10830 NA NA
## 10831 NA NA
## 10832 NA NA
## 10833 NA NA
## 10834 NA NA
## 10835 NA NA
## 10836 NA NA
## 10837 4.787 82.281
## 10838 4.787 82.281
## 10839 4.787 82.281
## 10840 4.787 82.281
## 10841 4.787 82.281
## 10842 4.787 82.281
## 10843 NA NA
## 10844 NA NA
## 10845 NA NA
## 10846 NA NA
## 10847 NA NA
## 10848 NA NA
## 10849 NA NA
## 10850 NA NA
## 10851 NA NA
## 10852 NA NA
## 10853 NA NA
## 10854 NA NA
## 10855 NA NA
## 10856 NA NA
## 10857 NA NA
## 10858 NA NA
## 10859 NA NA
## 10860 NA NA
## 10861 NA NA
## 10862 NA NA
## 10863 NA NA
## 10864 NA NA
## 10865 NA NA
## 10866 NA NA
## 10867 NA NA
## 10868 NA NA
## 10869 NA NA
## 10870 NA NA
## 10871 NA NA
## 10872 NA NA
## 10873 NA NA
## 10874 NA NA
## 10875 NA NA
## 10876 NA NA
## 10877 NA NA
## 10878 NA NA
## 10879 NA NA
## 10880 NA NA
## 10881 NA NA
## 10882 NA NA
## 10883 NA NA
## 10884 NA NA
## 10885 NA NA
## 10886 NA NA
## 10887 NA NA
## 10888 NA NA
## 10889 NA NA
## 10890 NA NA
## 10891 NA NA
## 10892 NA NA
## 10893 NA NA
## 10894 NA NA
## 10895 NA NA
## 10896 NA NA
## 10897 54.424 88.496
## 10898 54.424 88.496
## 10899 54.424 88.496
## 10900 54.424 88.496
## 10901 54.424 88.496
## 10902 54.424 88.496
## 10903 NA NA
## 10904 NA NA
## 10905 NA NA
## 10906 NA NA
## 10907 NA NA
## 10908 NA NA
## 10909 NA NA
## 10910 NA NA
## 10911 NA NA
## 10912 NA NA
## 10913 NA NA
## 10914 NA NA
## 10915 NA NA
## 10916 NA NA
## 10917 NA NA
## 10918 NA NA
## 10919 NA NA
## 10920 NA NA
## 10921 11.380 24.030
## 10922 11.380 24.030
## 10923 11.380 24.030
## 10924 11.380 24.030
## 10925 11.380 24.030
## 10926 11.380 24.030
## 10927 NA NA
## 10928 NA NA
## 10929 NA NA
## 10930 NA NA
## 10931 NA NA
## 10932 NA NA
## 10933 13.559 23.524
## 10934 13.559 23.524
## 10935 13.559 23.524
## 10936 13.559 23.524
## 10937 13.559 23.524
## 10938 13.559 23.524
## 10939 NA NA
## 10940 NA NA
## 10941 NA NA
## 10942 NA NA
## 10943 NA NA
## 10944 NA NA
## 10945 24.473 51.785
## 10946 24.473 51.785
## 10947 24.473 51.785
## 10948 24.473 51.785
## 10949 24.473 51.785
## 10950 24.473 51.785
## 10951 NA NA
## 10952 NA NA
## 10953 NA NA
## 10954 NA NA
## 10955 NA NA
## 10956 NA NA
## 10957 18.520 30.849
## 10958 18.520 30.849
## 10959 18.520 30.849
## 10960 18.520 30.849
## 10961 18.520 30.849
## 10962 18.520 30.849
## 10963 14.866 55.333
## 10964 14.866 55.333
## 10965 14.866 55.333
## 10966 14.866 55.333
## 10967 14.866 55.333
## 10968 14.866 55.333
## 10969 2.417 46.323
## 10970 2.417 46.323
## 10971 2.417 46.323
## 10972 2.417 46.323
## 10973 2.417 46.323
## 10974 2.417 46.323
## 10975 NA NA
## 10976 NA NA
## 10977 NA NA
## 10978 NA NA
## 10979 NA NA
## 10980 NA NA
## 10981 NA NA
## 10982 NA NA
## 10983 NA NA
## 10984 NA NA
## 10985 NA NA
## 10986 NA NA
## 10987 NA NA
## 10988 NA NA
## 10989 NA NA
## 10990 NA NA
## 10991 NA NA
## 10992 NA NA
## 10993 NA NA
## 10994 NA NA
## 10995 NA NA
## 10996 NA NA
## 10997 NA NA
## 10998 NA NA
## 10999 NA NA
## 11000 NA NA
## 11001 NA NA
## 11002 NA NA
## 11003 NA NA
## 11004 NA NA
## 11005 NA NA
## 11006 NA NA
## 11007 NA NA
## 11008 NA NA
## 11009 NA NA
## 11010 NA NA
## 11011 NA NA
## 11012 NA NA
## 11013 NA NA
## 11014 NA NA
## 11015 NA NA
## 11016 NA NA
## 11017 NA NA
## 11018 NA NA
## 11019 NA NA
## 11020 NA NA
## 11021 NA NA
## 11022 NA NA
## 11023 NA NA
## 11024 NA NA
## 11025 NA NA
## 11026 NA NA
## 11027 NA NA
## 11028 NA NA
## 11029 NA NA
## 11030 NA NA
## 11031 NA NA
## 11032 NA NA
## 11033 NA NA
## 11034 NA NA
## 11035 25.920 46.439
## 11036 25.920 46.439
## 11037 25.920 46.439
## 11038 25.920 46.439
## 11039 25.920 46.439
## 11040 25.920 46.439
## 11041 NA NA
## 11042 NA NA
## 11043 NA NA
## 11044 NA NA
## 11045 NA NA
## 11046 NA NA
## 11047 7.898 21.970
## 11048 7.898 21.970
## 11049 7.898 21.970
## 11050 7.898 21.970
## 11051 7.898 21.970
## 11052 7.898 21.970
## 11053 NA NA
## 11054 NA NA
## 11055 NA NA
## 11056 NA NA
## 11057 NA NA
## 11058 NA NA
## 11059 NA NA
## 11060 NA NA
## 11061 NA NA
## 11062 NA NA
## 11063 NA NA
## 11064 NA NA
## 11065 NA NA
## 11066 NA NA
## 11067 NA NA
## 11068 NA NA
## 11069 NA NA
## 11070 NA NA
## 11071 NA NA
## 11072 NA NA
## 11073 NA NA
## 11074 NA NA
## 11075 NA NA
## 11076 NA NA
## 11077 NA NA
## 11078 NA NA
## 11079 NA NA
## 11080 NA NA
## 11081 NA NA
## 11082 NA NA
## 11083 NA NA
## 11084 NA NA
## 11085 NA NA
## 11086 NA NA
## 11087 NA NA
## 11088 NA NA
## 11089 NA NA
## 11090 NA NA
## 11091 NA NA
## 11092 NA NA
## 11093 NA NA
## 11094 NA NA
## 11095 NA NA
## 11096 NA NA
## 11097 NA NA
## 11098 NA NA
## 11099 NA NA
## 11100 NA NA
## 11101 16.827 26.526
## 11102 16.827 26.526
## 11103 16.827 26.526
## 11104 16.827 26.526
## 11105 16.827 26.526
## 11106 16.827 26.526
## 11107 NA NA
## 11108 NA NA
## 11109 NA NA
## 11110 NA NA
## 11111 NA NA
## 11112 NA NA
## 11113 NA NA
## 11114 NA NA
## 11115 NA NA
## 11116 NA NA
## 11117 NA NA
## 11118 NA NA
## 11119 10.038 30.947
## 11120 10.038 30.947
## 11121 10.038 30.947
## 11122 10.038 30.947
## 11123 10.038 30.947
## 11124 10.038 30.947
## 11125 5.246 41.116
## 11126 5.246 41.116
## 11127 5.246 41.116
## 11128 5.246 41.116
## 11129 5.246 41.116
## 11130 5.246 41.116
## 11131 NA NA
## 11132 NA NA
## 11133 NA NA
## 11134 NA NA
## 11135 NA NA
## 11136 NA NA
## 11137 NA NA
## 11138 NA NA
## 11139 NA NA
## 11140 NA NA
## 11141 NA NA
## 11142 NA NA
## 11143 2.413 42.526
## 11144 2.413 42.526
## 11145 2.413 42.526
## 11146 2.413 42.526
## 11147 2.413 42.526
## 11148 2.413 42.526
## 11149 NA NA
## 11150 NA NA
## 11151 NA NA
## 11152 NA NA
## 11153 NA NA
## 11154 NA NA
## 11155 NA NA
## 11156 NA NA
## 11157 NA NA
## 11158 NA NA
## 11159 NA NA
## 11160 NA NA
## 11161 NA NA
## 11162 NA NA
## 11163 NA NA
## 11164 NA NA
## 11165 NA NA
## 11166 NA NA
## 11167 10.886 25.909
## 11168 10.886 25.909
## 11169 10.886 25.909
## 11170 10.886 25.909
## 11171 10.886 25.909
## 11172 10.886 25.909
## 11173 NA NA
## 11174 NA NA
## 11175 NA NA
## 11176 NA NA
## 11177 NA NA
## 11178 NA NA
## 11179 NA NA
## 11180 NA NA
## 11181 NA NA
## 11182 NA NA
## 11183 NA NA
## 11184 NA NA
## 11185 NA NA
## 11186 NA NA
## 11187 NA NA
## 11188 NA NA
## 11189 NA NA
## 11190 NA NA
## 11191 2.063 17.879
## 11192 2.063 17.879
## 11193 2.063 17.879
## 11194 2.063 17.879
## 11195 2.063 17.879
## 11196 2.063 17.879
## 11197 NA NA
## 11198 NA NA
## 11199 NA NA
## 11200 NA NA
## 11201 NA NA
## 11202 NA NA
## 11203 NA NA
## 11204 NA NA
## 11205 NA NA
## 11206 NA NA
## 11207 NA NA
## 11208 NA NA
## 11209 NA NA
## 11210 NA NA
## 11211 NA NA
## 11212 NA NA
## 11213 NA NA
## 11214 NA NA
## 11215 NA NA
## 11216 NA NA
## 11217 NA NA
## 11218 NA NA
## 11219 NA NA
## 11220 NA NA
## 11221 NA NA
## 11222 NA NA
## 11223 NA NA
## 11224 NA NA
## 11225 NA NA
## 11226 NA NA
## 11227 NA NA
## 11228 NA NA
## 11229 NA NA
## 11230 NA NA
## 11231 NA NA
## 11232 NA NA
## 11233 NA NA
## 11234 NA NA
## 11235 NA NA
## 11236 NA NA
## 11237 NA NA
## 11238 NA NA
## 11239 NA NA
## 11240 NA NA
## 11241 NA NA
## 11242 NA NA
## 11243 NA NA
## 11244 NA NA
## 11245 210.535 229.817
## 11246 210.535 229.817
## 11247 210.535 229.817
## 11248 210.535 229.817
## 11249 210.535 229.817
## 11250 210.535 229.817
## 11251 NA NA
## 11252 NA NA
## 11253 NA NA
## 11254 NA NA
## 11255 NA NA
## 11256 NA NA
## 11257 407.985 427.538
## 11258 407.985 427.538
## 11259 407.985 427.538
## 11260 407.985 427.538
## 11261 407.985 427.538
## 11262 407.985 427.538
## 11263 NA NA
## 11264 NA NA
## 11265 NA NA
## 11266 NA NA
## 11267 NA NA
## 11268 NA NA
## 11269 35.039 83.137
## 11270 35.039 83.137
## 11271 35.039 83.137
## 11272 35.039 83.137
## 11273 35.039 83.137
## 11274 35.039 83.137
## 11275 32.393 44.201
## 11276 32.393 44.201
## 11277 32.393 44.201
## 11278 32.393 44.201
## 11279 32.393 44.201
## 11280 32.393 44.201
## 11281 NA NA
## 11282 NA NA
## 11283 NA NA
## 11284 NA NA
## 11285 NA NA
## 11286 NA NA
## 11287 NA NA
## 11288 NA NA
## 11289 NA NA
## 11290 NA NA
## 11291 NA NA
## 11292 NA NA
## 11293 NA NA
## 11294 NA NA
## 11295 NA NA
## 11296 NA NA
## 11297 NA NA
## 11298 NA NA
## 11299 NA NA
## 11300 NA NA
## 11301 NA NA
## 11302 NA NA
## 11303 NA NA
## 11304 NA NA
## 11305 16.922 39.763
## 11306 16.922 39.763
## 11307 16.922 39.763
## 11308 16.922 39.763
## 11309 16.922 39.763
## 11310 16.922 39.763
## 11311 6.600 30.996
## 11312 6.600 30.996
## 11313 6.600 30.996
## 11314 6.600 30.996
## 11315 6.600 30.996
## 11316 6.600 30.996
## 11317 NA NA
## 11318 NA NA
## 11319 NA NA
## 11320 NA NA
## 11321 NA NA
## 11322 NA NA
## 11323 22.329 52.427
## 11324 22.329 52.427
## 11325 22.329 52.427
## 11326 22.329 52.427
## 11327 22.329 52.427
## 11328 22.329 52.427
## 11329 NA NA
## 11330 NA NA
## 11331 NA NA
## 11332 NA NA
## 11333 NA NA
## 11334 NA NA
## 11335 NA NA
## 11336 NA NA
## 11337 NA NA
## 11338 NA NA
## 11339 NA NA
## 11340 NA NA
## 11341 19.425 26.417
## 11342 19.425 26.417
## 11343 19.425 26.417
## 11344 19.425 26.417
## 11345 19.425 26.417
## 11346 19.425 26.417
## 11347 NA NA
## 11348 NA NA
## 11349 NA NA
## 11350 NA NA
## 11351 NA NA
## 11352 NA NA
## 11353 3.385 29.909
## 11354 3.385 29.909
## 11355 3.385 29.909
## 11356 3.385 29.909
## 11357 3.385 29.909
## 11358 3.385 29.909
## 11359 NA NA
## 11360 NA NA
## 11361 NA NA
## 11362 NA NA
## 11363 NA NA
## 11364 NA NA
## 11365 NA NA
## 11366 NA NA
## 11367 NA NA
## 11368 NA NA
## 11369 NA NA
## 11370 NA NA
## 11371 NA NA
## 11372 NA NA
## 11373 NA NA
## 11374 NA NA
## 11375 NA NA
## 11376 NA NA
## 11377 NA NA
## 11378 NA NA
## 11379 NA NA
## 11380 NA NA
## 11381 NA NA
## 11382 NA NA
## 11383 NA NA
## 11384 NA NA
## 11385 NA NA
## 11386 NA NA
## 11387 NA NA
## 11388 NA NA
## 11389 NA NA
## 11390 NA NA
## 11391 NA NA
## 11392 NA NA
## 11393 NA NA
## 11394 NA NA
## 11395 28.090 49.451
## 11396 28.090 49.451
## 11397 28.090 49.451
## 11398 28.090 49.451
## 11399 28.090 49.451
## 11400 28.090 49.451
## 11401 NA NA
## 11402 NA NA
## 11403 NA NA
## 11404 NA NA
## 11405 NA NA
## 11406 NA NA
## 11407 97.704 108.217
## 11408 97.704 108.217
## 11409 97.704 108.217
## 11410 97.704 108.217
## 11411 97.704 108.217
## 11412 97.704 108.217
## 11413 NA NA
## 11414 NA NA
## 11415 NA NA
## 11416 NA NA
## 11417 NA NA
## 11418 NA NA
## 11419 21.423 34.001
## 11420 21.423 34.001
## 11421 21.423 34.001
## 11422 21.423 34.001
## 11423 21.423 34.001
## 11424 21.423 34.001
## 11425 NA NA
## 11426 NA NA
## 11427 NA NA
## 11428 NA NA
## 11429 NA NA
## 11430 NA NA
## 11431 NA NA
## 11432 NA NA
## 11433 NA NA
## 11434 NA NA
## 11435 NA NA
## 11436 NA NA
## 11437 NA NA
## 11438 NA NA
## 11439 NA NA
## 11440 NA NA
## 11441 NA NA
## 11442 NA NA
## 11443 NA NA
## 11444 NA NA
## 11445 NA NA
## 11446 NA NA
## 11447 NA NA
## 11448 NA NA
## 11449 NA NA
## 11450 NA NA
## 11451 NA NA
## 11452 NA NA
## 11453 NA NA
## 11454 NA NA
## 11455 4.246 132.265
## 11456 4.246 132.265
## 11457 4.246 132.265
## 11458 4.246 132.265
## 11459 4.246 132.265
## 11460 4.246 132.265
## 11461 NA NA
## 11462 NA NA
## 11463 NA NA
## 11464 NA NA
## 11465 NA NA
## 11466 NA NA
## 11467 10.759 25.867
## 11468 10.759 25.867
## 11469 10.759 25.867
## 11470 10.759 25.867
## 11471 10.759 25.867
## 11472 10.759 25.867
## 11473 NA NA
## 11474 NA NA
## 11475 NA NA
## 11476 NA NA
## 11477 NA NA
## 11478 NA NA
## 11479 34.162 47.812
## 11480 34.162 47.812
## 11481 34.162 47.812
## 11482 34.162 47.812
## 11483 34.162 47.812
## 11484 34.162 47.812
## 11485 NA NA
## 11486 NA NA
## 11487 NA NA
## 11488 NA NA
## 11489 NA NA
## 11490 NA NA
## 11491 NA NA
## 11492 NA NA
## 11493 NA NA
## 11494 NA NA
## 11495 NA NA
## 11496 NA NA
## 11497 NA NA
## 11498 NA NA
## 11499 NA NA
## 11500 NA NA
## 11501 NA NA
## 11502 NA NA
## 11503 NA NA
## 11504 NA NA
## 11505 NA NA
## 11506 NA NA
## 11507 NA NA
## 11508 NA NA
## 11509 NA NA
## 11510 NA NA
## 11511 NA NA
## 11512 NA NA
## 11513 NA NA
## 11514 NA NA
## 11515 NA NA
## 11516 NA NA
## 11517 NA NA
## 11518 NA NA
## 11519 NA NA
## 11520 NA NA
## 11521 NA NA
## 11522 NA NA
## 11523 NA NA
## 11524 NA NA
## 11525 NA NA
## 11526 NA NA
## 11527 NA NA
## 11528 NA NA
## 11529 NA NA
## 11530 NA NA
## 11531 NA NA
## 11532 NA NA
## 11533 22.777 47.836
## 11534 22.777 47.836
## 11535 22.777 47.836
## 11536 22.777 47.836
## 11537 22.777 47.836
## 11538 22.777 47.836
## 11539 20.593 36.709
## 11540 20.593 36.709
## 11541 20.593 36.709
## 11542 20.593 36.709
## 11543 20.593 36.709
## 11544 20.593 36.709
## 11545 NA NA
## 11546 NA NA
## 11547 NA NA
## 11548 NA NA
## 11549 NA NA
## 11550 NA NA
## 11551 NA NA
## 11552 NA NA
## 11553 NA NA
## 11554 NA NA
## 11555 NA NA
## 11556 NA NA
## 11557 NA NA
## 11558 NA NA
## 11559 NA NA
## 11560 NA NA
## 11561 NA NA
## 11562 NA NA
## 11563 39.428 53.784
## 11564 39.428 53.784
## 11565 39.428 53.784
## 11566 39.428 53.784
## 11567 39.428 53.784
## 11568 39.428 53.784
## 11569 NA NA
## 11570 NA NA
## 11571 NA NA
## 11572 NA NA
## 11573 NA NA
## 11574 NA NA
## 11575 124.402 147.231
## 11576 124.402 147.231
## 11577 124.402 147.231
## 11578 124.402 147.231
## 11579 124.402 147.231
## 11580 124.402 147.231
## 11581 NA NA
## 11582 NA NA
## 11583 NA NA
## 11584 NA NA
## 11585 NA NA
## 11586 NA NA
## 11587 19.436 89.688
## 11588 19.436 89.688
## 11589 19.436 89.688
## 11590 19.436 89.688
## 11591 19.436 89.688
## 11592 19.436 89.688
## 11593 2.828 25.526
## 11594 2.828 25.526
## 11595 2.828 25.526
## 11596 2.828 25.526
## 11597 2.828 25.526
## 11598 2.828 25.526
## 11599 1886.490 1898.505
## 11600 1886.490 1898.505
## 11601 1886.490 1898.505
## 11602 1886.490 1898.505
## 11603 1886.490 1898.505
## 11604 1886.490 1898.505
## 11605 NA NA
## 11606 NA NA
## 11607 NA NA
## 11608 NA NA
## 11609 NA NA
## 11610 NA NA
## 11611 2.236 183.027
## 11612 2.236 183.027
## 11613 2.236 183.027
## 11614 2.236 183.027
## 11615 2.236 183.027
## 11616 2.236 183.027
## 11617 NA NA
## 11618 NA NA
## 11619 NA NA
## 11620 NA NA
## 11621 NA NA
## 11622 NA NA
## 11623 NA NA
## 11624 NA NA
## 11625 NA NA
## 11626 NA NA
## 11627 NA NA
## 11628 NA NA
## 11629 6.314 32.631
## 11630 6.314 32.631
## 11631 6.314 32.631
## 11632 6.314 32.631
## 11633 6.314 32.631
## 11634 6.314 32.631
## 11635 NA NA
## 11636 NA NA
## 11637 NA NA
## 11638 NA NA
## 11639 NA NA
## 11640 NA NA
## 11641 NA NA
## 11642 NA NA
## 11643 NA NA
## 11644 NA NA
## 11645 NA NA
## 11646 NA NA
## 11647 12.373 25.042
## 11648 12.373 25.042
## 11649 12.373 25.042
## 11650 12.373 25.042
## 11651 12.373 25.042
## 11652 12.373 25.042
## 11653 2.853 60.098
## 11654 2.853 60.098
## 11655 2.853 60.098
## 11656 2.853 60.098
## 11657 2.853 60.098
## 11658 2.853 60.098
## 11659 NA NA
## 11660 NA NA
## 11661 NA NA
## 11662 NA NA
## 11663 NA NA
## 11664 NA NA
## 11665 NA NA
## 11666 NA NA
## 11667 NA NA
## 11668 NA NA
## 11669 NA NA
## 11670 NA NA
## 11671 NA NA
## 11672 NA NA
## 11673 NA NA
## 11674 NA NA
## 11675 NA NA
## 11676 NA NA
## 11677 28.777 51.207
## 11678 28.777 51.207
## 11679 28.777 51.207
## 11680 28.777 51.207
## 11681 28.777 51.207
## 11682 28.777 51.207
## 11683 NA NA
## 11684 NA NA
## 11685 NA NA
## 11686 NA NA
## 11687 NA NA
## 11688 NA NA
## 11689 21.814 38.206
## 11690 21.814 38.206
## 11691 21.814 38.206
## 11692 21.814 38.206
## 11693 21.814 38.206
## 11694 21.814 38.206
## 11695 20.620 84.290
## 11696 20.620 84.290
## 11697 20.620 84.290
## 11698 20.620 84.290
## 11699 20.620 84.290
## 11700 20.620 84.290
## 11701 NA NA
## 11702 NA NA
## 11703 NA NA
## 11704 NA NA
## 11705 NA NA
## 11706 NA NA
## 11707 NA NA
## 11708 NA NA
## 11709 NA NA
## 11710 NA NA
## 11711 NA NA
## 11712 NA NA
## 11713 NA NA
## 11714 NA NA
## 11715 NA NA
## 11716 NA NA
## 11717 NA NA
## 11718 NA NA
## 11719 NA NA
## 11720 NA NA
## 11721 NA NA
## 11722 NA NA
## 11723 NA NA
## 11724 NA NA
## 11725 NA NA
## 11726 NA NA
## 11727 NA NA
## 11728 NA NA
## 11729 NA NA
## 11730 NA NA
## 11731 6.415 35.487
## 11732 6.415 35.487
## 11733 6.415 35.487
## 11734 6.415 35.487
## 11735 6.415 35.487
## 11736 6.415 35.487
## 11737 NA NA
## 11738 NA NA
## 11739 NA NA
## 11740 NA NA
## 11741 NA NA
## 11742 NA NA
## 11743 NA NA
## 11744 NA NA
## 11745 NA NA
## 11746 NA NA
## 11747 NA NA
## 11748 NA NA
## 11749 NA NA
## 11750 NA NA
## 11751 NA NA
## 11752 NA NA
## 11753 NA NA
## 11754 NA NA
## 11755 NA NA
## 11756 NA NA
## 11757 NA NA
## 11758 NA NA
## 11759 NA NA
## 11760 NA NA
## 11761 16.207 29.089
## 11762 16.207 29.089
## 11763 16.207 29.089
## 11764 16.207 29.089
## 11765 16.207 29.089
## 11766 16.207 29.089
## 11767 NA NA
## 11768 NA NA
## 11769 NA NA
## 11770 NA NA
## 11771 NA NA
## 11772 NA NA
## 11773 NA NA
## 11774 NA NA
## 11775 NA NA
## 11776 NA NA
## 11777 NA NA
## 11778 NA NA
## 11779 NA NA
## 11780 NA NA
## 11781 NA NA
## 11782 NA NA
## 11783 NA NA
## 11784 NA NA
## 11785 NA NA
## 11786 NA NA
## 11787 NA NA
## 11788 NA NA
## 11789 NA NA
## 11790 NA NA
## 11791 NA NA
## 11792 NA NA
## 11793 NA NA
## 11794 NA NA
## 11795 NA NA
## 11796 NA NA
## 11797 7.493 220.123
## 11798 7.493 220.123
## 11799 7.493 220.123
## 11800 7.493 220.123
## 11801 7.493 220.123
## 11802 7.493 220.123
## 11803 29.804 66.827
## 11804 29.804 66.827
## 11805 29.804 66.827
## 11806 29.804 66.827
## 11807 29.804 66.827
## 11808 29.804 66.827
## 11809 NA NA
## 11810 NA NA
## 11811 NA NA
## 11812 NA NA
## 11813 NA NA
## 11814 NA NA
## 11815 31.696 39.846
## 11816 31.696 39.846
## 11817 31.696 39.846
## 11818 31.696 39.846
## 11819 31.696 39.846
## 11820 31.696 39.846
## 11821 NA NA
## 11822 NA NA
## 11823 NA NA
## 11824 NA NA
## 11825 NA NA
## 11826 NA NA
## 11827 13.268 38.864
## 11828 13.268 38.864
## 11829 13.268 38.864
## 11830 13.268 38.864
## 11831 13.268 38.864
## 11832 13.268 38.864
## 11833 NA NA
## 11834 NA NA
## 11835 NA NA
## 11836 NA NA
## 11837 NA NA
## 11838 NA NA
## 11839 NA NA
## 11840 NA NA
## 11841 NA NA
## 11842 NA NA
## 11843 NA NA
## 11844 NA NA
## 11845 NA NA
## 11846 NA NA
## 11847 NA NA
## 11848 NA NA
## 11849 NA NA
## 11850 NA NA
## 11851 NA NA
## 11852 NA NA
## 11853 NA NA
## 11854 NA NA
## 11855 NA NA
## 11856 NA NA
## 11857 NA NA
## 11858 NA NA
## 11859 NA NA
## 11860 NA NA
## 11861 NA NA
## 11862 NA NA
## 11863 NA NA
## 11864 NA NA
## 11865 NA NA
## 11866 NA NA
## 11867 NA NA
## 11868 NA NA
## 11869 6.610 32.077
## 11870 6.610 32.077
## 11871 6.610 32.077
## 11872 6.610 32.077
## 11873 6.610 32.077
## 11874 6.610 32.077
## 11875 10.604 14.604
## 11876 10.604 14.604
## 11877 10.604 14.604
## 11878 10.604 14.604
## 11879 10.604 14.604
## 11880 10.604 14.604
## 11881 12.205 28.926
## 11882 12.205 28.926
## 11883 12.205 28.926
## 11884 12.205 28.926
## 11885 12.205 28.926
## 11886 12.205 28.926
## 11887 NA NA
## 11888 NA NA
## 11889 NA NA
## 11890 NA NA
## 11891 NA NA
## 11892 NA NA
## 11893 NA NA
## 11894 NA NA
## 11895 NA NA
## 11896 NA NA
## 11897 NA NA
## 11898 NA NA
## 11899 NA NA
## 11900 NA NA
## 11901 NA NA
## 11902 NA NA
## 11903 NA NA
## 11904 NA NA
## 11905 NA NA
## 11906 NA NA
## 11907 NA NA
## 11908 NA NA
## 11909 NA NA
## 11910 NA NA
## 11911 10.351 35.559
## 11912 10.351 35.559
## 11913 10.351 35.559
## 11914 10.351 35.559
## 11915 10.351 35.559
## 11916 10.351 35.559
## 11917 NA NA
## 11918 NA NA
## 11919 NA NA
## 11920 NA NA
## 11921 NA NA
## 11922 NA NA
## 11923 NA NA
## 11924 NA NA
## 11925 NA NA
## 11926 NA NA
## 11927 NA NA
## 11928 NA NA
## 11929 NA NA
## 11930 NA NA
## 11931 NA NA
## 11932 NA NA
## 11933 NA NA
## 11934 NA NA
## 11935 0.954 27.824
## 11936 0.954 27.824
## 11937 0.954 27.824
## 11938 0.954 27.824
## 11939 0.954 27.824
## 11940 0.954 27.824
## 11941 NA NA
## 11942 NA NA
## 11943 NA NA
## 11944 NA NA
## 11945 NA NA
## 11946 NA NA
## 11947 19.675 35.481
## 11948 19.675 35.481
## 11949 19.675 35.481
## 11950 19.675 35.481
## 11951 19.675 35.481
## 11952 19.675 35.481
## 11953 NA NA
## 11954 NA NA
## 11955 NA NA
## 11956 NA NA
## 11957 NA NA
## 11958 NA NA
## 11959 20.371 29.035
## 11960 20.371 29.035
## 11961 20.371 29.035
## 11962 20.371 29.035
## 11963 20.371 29.035
## 11964 20.371 29.035
## 11965 1.477 39.206
## 11966 1.477 39.206
## 11967 1.477 39.206
## 11968 1.477 39.206
## 11969 1.477 39.206
## 11970 1.477 39.206
## 11971 NA NA
## 11972 NA NA
## 11973 NA NA
## 11974 NA NA
## 11975 NA NA
## 11976 NA NA
## 11977 29.428 64.361
## 11978 29.428 64.361
## 11979 29.428 64.361
## 11980 29.428 64.361
## 11981 29.428 64.361
## 11982 29.428 64.361
## 11983 NA NA
## 11984 NA NA
## 11985 NA NA
## 11986 NA NA
## 11987 NA NA
## 11988 NA NA
## 11989 9.549 62.561
## 11990 9.549 62.561
## 11991 9.549 62.561
## 11992 9.549 62.561
## 11993 9.549 62.561
## 11994 9.549 62.561
## 11995 NA NA
## 11996 NA NA
## 11997 NA NA
## 11998 NA NA
## 11999 NA NA
## 12000 NA NA
## 12001 NA NA
## 12002 NA NA
## 12003 NA NA
## 12004 NA NA
## 12005 NA NA
## 12006 NA NA
## 12007 NA NA
## 12008 NA NA
## 12009 NA NA
## 12010 NA NA
## 12011 NA NA
## 12012 NA NA
## 12013 NA NA
## 12014 NA NA
## 12015 NA NA
## 12016 NA NA
## 12017 NA NA
## 12018 NA NA
## 12019 NA NA
## 12020 NA NA
## 12021 NA NA
## 12022 NA NA
## 12023 NA NA
## 12024 NA NA
## 12025 NA NA
## 12026 NA NA
## 12027 NA NA
## 12028 NA NA
## 12029 NA NA
## 12030 NA NA
## 12031 NA NA
## 12032 NA NA
## 12033 NA NA
## 12034 NA NA
## 12035 NA NA
## 12036 NA NA
## 12037 39.406 54.366
## 12038 39.406 54.366
## 12039 39.406 54.366
## 12040 39.406 54.366
## 12041 39.406 54.366
## 12042 39.406 54.366
## 12043 NA NA
## 12044 NA NA
## 12045 NA NA
## 12046 NA NA
## 12047 NA NA
## 12048 NA NA
## 12049 NA NA
## 12050 NA NA
## 12051 NA NA
## 12052 NA NA
## 12053 NA NA
## 12054 NA NA
## 12055 NA NA
## 12056 NA NA
## 12057 NA NA
## 12058 NA NA
## 12059 NA NA
## 12060 NA NA
## 12061 NA NA
## 12062 NA NA
## 12063 NA NA
## 12064 NA NA
## 12065 NA NA
## 12066 NA NA
## 12067 NA NA
## 12068 NA NA
## 12069 NA NA
## 12070 NA NA
## 12071 NA NA
## 12072 NA NA
## 12073 NA NA
## 12074 NA NA
## 12075 NA NA
## 12076 NA NA
## 12077 NA NA
## 12078 NA NA
## 12079 NA NA
## 12080 NA NA
## 12081 NA NA
## 12082 NA NA
## 12083 NA NA
## 12084 NA NA
## 12085 16.278 41.912
## 12086 16.278 41.912
## 12087 16.278 41.912
## 12088 16.278 41.912
## 12089 16.278 41.912
## 12090 16.278 41.912
## 12091 NA NA
## 12092 NA NA
## 12093 NA NA
## 12094 NA NA
## 12095 NA NA
## 12096 NA NA
## 12097 NA NA
## 12098 NA NA
## 12099 NA NA
## 12100 NA NA
## 12101 NA NA
## 12102 NA NA
## 12103 NA NA
## 12104 NA NA
## 12105 NA NA
## 12106 NA NA
## 12107 NA NA
## 12108 NA NA
## 12109 NA NA
## 12110 NA NA
## 12111 NA NA
## 12112 NA NA
## 12113 NA NA
## 12114 NA NA
## 12115 NA NA
## 12116 NA NA
## 12117 NA NA
## 12118 NA NA
## 12119 NA NA
## 12120 NA NA
## 12121 NA NA
## 12122 NA NA
## 12123 NA NA
## 12124 NA NA
## 12125 NA NA
## 12126 NA NA
## 12127 NA NA
## 12128 NA NA
## 12129 NA NA
## 12130 NA NA
## 12131 NA NA
## 12132 NA NA
## 12133 NA NA
## 12134 NA NA
## 12135 NA NA
## 12136 NA NA
## 12137 NA NA
## 12138 NA NA
## 12139 NA NA
## 12140 NA NA
## 12141 NA NA
## 12142 NA NA
## 12143 NA NA
## 12144 NA NA
## 12145 NA NA
## 12146 NA NA
## 12147 NA NA
## 12148 NA NA
## 12149 NA NA
## 12150 NA NA
## 12151 5.367 32.878
## 12152 5.367 32.878
## 12153 5.367 32.878
## 12154 5.367 32.878
## 12155 5.367 32.878
## 12156 5.367 32.878
## 12157 NA NA
## 12158 NA NA
## 12159 NA NA
## 12160 NA NA
## 12161 NA NA
## 12162 NA NA
## 12163 NA NA
## 12164 NA NA
## 12165 NA NA
## 12166 NA NA
## 12167 NA NA
## 12168 NA NA
## 12169 NA NA
## 12170 NA NA
## 12171 NA NA
## 12172 NA NA
## 12173 NA NA
## 12174 NA NA
## 12175 15.815 52.410
## 12176 15.815 52.410
## 12177 15.815 52.410
## 12178 15.815 52.410
## 12179 15.815 52.410
## 12180 15.815 52.410
## 12181 NA NA
## 12182 NA NA
## 12183 NA NA
## 12184 NA NA
## 12185 NA NA
## 12186 NA NA
## 12187 NA NA
## 12188 NA NA
## 12189 NA NA
## 12190 NA NA
## 12191 NA NA
## 12192 NA NA
## 12193 NA NA
## 12194 NA NA
## 12195 NA NA
## 12196 NA NA
## 12197 NA NA
## 12198 NA NA
## 12199 NA NA
## 12200 NA NA
## 12201 NA NA
## 12202 NA NA
## 12203 NA NA
## 12204 NA NA
## 12205 10.594 22.740
## 12206 10.594 22.740
## 12207 10.594 22.740
## 12208 10.594 22.740
## 12209 10.594 22.740
## 12210 10.594 22.740
## 12211 16.337 26.353
## 12212 16.337 26.353
## 12213 16.337 26.353
## 12214 16.337 26.353
## 12215 16.337 26.353
## 12216 16.337 26.353
## 12217 NA NA
## 12218 NA NA
## 12219 NA NA
## 12220 NA NA
## 12221 NA NA
## 12222 NA NA
## 12223 NA NA
## 12224 NA NA
## 12225 NA NA
## 12226 NA NA
## 12227 NA NA
## 12228 NA NA
## 12229 NA NA
## 12230 NA NA
## 12231 NA NA
## 12232 NA NA
## 12233 NA NA
## 12234 NA NA
## 12235 NA NA
## 12236 NA NA
## 12237 NA NA
## 12238 NA NA
## 12239 NA NA
## 12240 NA NA
## 12241 25.433 51.848
## 12242 25.433 51.848
## 12243 25.433 51.848
## 12244 25.433 51.848
## 12245 25.433 51.848
## 12246 25.433 51.848
## 12247 12.712 43.632
## 12248 12.712 43.632
## 12249 12.712 43.632
## 12250 12.712 43.632
## 12251 12.712 43.632
## 12252 12.712 43.632
## 12253 NA NA
## 12254 NA NA
## 12255 NA NA
## 12256 NA NA
## 12257 NA NA
## 12258 NA NA
## 12259 NA NA
## 12260 NA NA
## 12261 NA NA
## 12262 NA NA
## 12263 NA NA
## 12264 NA NA
## 12265 NA NA
## 12266 NA NA
## 12267 NA NA
## 12268 NA NA
## 12269 NA NA
## 12270 NA NA
## 12271 NA NA
## 12272 NA NA
## 12273 NA NA
## 12274 NA NA
## 12275 NA NA
## 12276 NA NA
## 12277 27.419 43.501
## 12278 27.419 43.501
## 12279 27.419 43.501
## 12280 27.419 43.501
## 12281 27.419 43.501
## 12282 27.419 43.501
## 12283 NA NA
## 12284 NA NA
## 12285 NA NA
## 12286 NA NA
## 12287 NA NA
## 12288 NA NA
## 12289 NA NA
## 12290 NA NA
## 12291 NA NA
## 12292 NA NA
## 12293 NA NA
## 12294 NA NA
## 12295 NA NA
## 12296 NA NA
## 12297 NA NA
## 12298 NA NA
## 12299 NA NA
## 12300 NA NA
## 12301 17.880 27.600
## 12302 17.880 27.600
## 12303 17.880 27.600
## 12304 17.880 27.600
## 12305 17.880 27.600
## 12306 17.880 27.600
## 12307 NA NA
## 12308 NA NA
## 12309 NA NA
## 12310 NA NA
## 12311 NA NA
## 12312 NA NA
## 12313 13.166 32.893
## 12314 13.166 32.893
## 12315 13.166 32.893
## 12316 13.166 32.893
## 12317 13.166 32.893
## 12318 13.166 32.893
## 12319 NA NA
## 12320 NA NA
## 12321 NA NA
## 12322 NA NA
## 12323 NA NA
## 12324 NA NA
## 12325 NA NA
## 12326 NA NA
## 12327 NA NA
## 12328 NA NA
## 12329 NA NA
## 12330 NA NA
## 12331 NA NA
## 12332 NA NA
## 12333 NA NA
## 12334 NA NA
## 12335 NA NA
## 12336 NA NA
## 12337 NA NA
## 12338 NA NA
## 12339 NA NA
## 12340 NA NA
## 12341 NA NA
## 12342 NA NA
## 12343 NA NA
## 12344 NA NA
## 12345 NA NA
## 12346 NA NA
## 12347 NA NA
## 12348 NA NA
## 12349 NA NA
## 12350 NA NA
## 12351 NA NA
## 12352 NA NA
## 12353 NA NA
## 12354 NA NA
## 12355 NA NA
## 12356 NA NA
## 12357 NA NA
## 12358 NA NA
## 12359 NA NA
## 12360 NA NA
## 12361 NA NA
## 12362 NA NA
## 12363 NA NA
## 12364 NA NA
## 12365 NA NA
## 12366 NA NA
## 12367 1.359 28.999
## 12368 1.359 28.999
## 12369 1.359 28.999
## 12370 1.359 28.999
## 12371 1.359 28.999
## 12372 1.359 28.999
## 12373 NA NA
## 12374 NA NA
## 12375 NA NA
## 12376 NA NA
## 12377 NA NA
## 12378 NA NA
## 12379 NA NA
## 12380 NA NA
## 12381 NA NA
## 12382 NA NA
## 12383 NA NA
## 12384 NA NA
## 12385 NA NA
## 12386 NA NA
## 12387 NA NA
## 12388 NA NA
## 12389 NA NA
## 12390 NA NA
## 12391 NA NA
## 12392 NA NA
## 12393 NA NA
## 12394 NA NA
## 12395 NA NA
## 12396 NA NA
## 12397 33.323 53.431
## 12398 33.323 53.431
## 12399 33.323 53.431
## 12400 33.323 53.431
## 12401 33.323 53.431
## 12402 33.323 53.431
## 12403 27.064 51.157
## 12404 27.064 51.157
## 12405 27.064 51.157
## 12406 27.064 51.157
## 12407 27.064 51.157
## 12408 27.064 51.157
## 12409 NA NA
## 12410 NA NA
## 12411 NA NA
## 12412 NA NA
## 12413 NA NA
## 12414 NA NA
## 12415 NA NA
## 12416 NA NA
## 12417 NA NA
## 12418 NA NA
## 12419 NA NA
## 12420 NA NA
## 12421 18.962 76.501
## 12422 18.962 76.501
## 12423 18.962 76.501
## 12424 18.962 76.501
## 12425 18.962 76.501
## 12426 18.962 76.501
## 12427 NA NA
## 12428 NA NA
## 12429 NA NA
## 12430 NA NA
## 12431 NA NA
## 12432 NA NA
## 12433 14.345 57.395
## 12434 14.345 57.395
## 12435 14.345 57.395
## 12436 14.345 57.395
## 12437 14.345 57.395
## 12438 14.345 57.395
## 12439 NA NA
## 12440 NA NA
## 12441 NA NA
## 12442 NA NA
## 12443 NA NA
## 12444 NA NA
## 12445 9.850 46.194
## 12446 9.850 46.194
## 12447 9.850 46.194
## 12448 9.850 46.194
## 12449 9.850 46.194
## 12450 9.850 46.194
## 12451 31.410 51.453
## 12452 31.410 51.453
## 12453 31.410 51.453
## 12454 31.410 51.453
## 12455 31.410 51.453
## 12456 31.410 51.453
## 12457 NA NA
## 12458 NA NA
## 12459 NA NA
## 12460 NA NA
## 12461 NA NA
## 12462 NA NA
## 12463 NA NA
## 12464 NA NA
## 12465 NA NA
## 12466 NA NA
## 12467 NA NA
## 12468 NA NA
## 12469 70.726 106.612
## 12470 70.726 106.612
## 12471 70.726 106.612
## 12472 70.726 106.612
## 12473 70.726 106.612
## 12474 70.726 106.612
## 12475 NA NA
## 12476 NA NA
## 12477 NA NA
## 12478 NA NA
## 12479 NA NA
## 12480 NA NA
## 12481 15.636 34.179
## 12482 15.636 34.179
## 12483 15.636 34.179
## 12484 15.636 34.179
## 12485 15.636 34.179
## 12486 15.636 34.179
## 12487 19.530 39.333
## 12488 19.530 39.333
## 12489 19.530 39.333
## 12490 19.530 39.333
## 12491 19.530 39.333
## 12492 19.530 39.333
## 12493 10.815 52.836
## 12494 10.815 52.836
## 12495 10.815 52.836
## 12496 10.815 52.836
## 12497 10.815 52.836
## 12498 10.815 52.836
## 12499 NA NA
## [ reached 'max' / getOption("max.print") -- omitted 19277 rows ]
Now we only have to use a case_when to signal that when the vignette number is x, the element n in the variable V[x]_[n]
df_V <- df_V %>%
mutate(V_Product = case_when(V_Number==1 ~ clean_V1_Product,
V_Number==2 ~ clean_V2_Product,
V_Number==3 ~ clean_V3_Product,
V_Number==4 ~ clean_V4_Product),
V_Location = case_when(V_Number==1 ~ clean_V1_Location,
V_Number==2 ~ clean_V2_Location,
V_Number==3 ~ clean_V3_Location,
V_Number==4 ~ clean_V4_Location),
V_Age = case_when(V_Number==1 ~ clean_V1_Age,
V_Number==2 ~ clean_V2_Age,
V_Number==3 ~ clean_V3_Age,
V_Number==4 ~ clean_V4_Age),
V_StoreType = case_when(V_Number==1 ~ clean_V1_StoreType,
V_Number==2 ~ clean_V2_StoreType,
V_Number==3 ~ clean_V3_StoreType,
V_Number==4 ~ clean_V4_StoreType),
V_Framing = case_when(V_Number==1 ~ clean_V1_Framing,
V_Number==2 ~ clean_V2_Framing,
V_Number==3 ~ clean_V3_Framing,
V_Number==4 ~ clean_V4_Framing),
V_Presentation = case_when(V_Number==1 ~ clean_V1_Presentation,
V_Number==2 ~ clean_V2_Presentation,
V_Number==3 ~ clean_V3_Presentation,
V_Number==4 ~ clean_V4_Presentation)
)
## Warning in `[<-.factor`(`*tmp*`, i, value = structure(c(1L, 1L, 1L, 1L, :
## invalid factor level, NA generated
We then repeat the same process to determine for each question the time people spend on the section.
df_V <- df_V %>%
mutate(V_FirstClick = case_when(V_Number==1 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V1.2_TIME_P1_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V1.1_W_TIME_P1_First.Click,
V_Racenamef == "I" ~ V1.1_I_TIME_P1_First.Click,
V_Racenamef == "B" ~ V1.1_B_TIME_P1_First.Click,
V_Racenamef == "C" ~ V1.1_C_TIME_P1_First.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V1.2_TIME_P2_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V1.1_W_TIME_P2_First.Click,
V_Racenamef == "I" ~ V1.1_I_TIME_P2_First.Click,
V_Racenamef == "B" ~ V1.1_B_TIME_P2_First.Click,
V_Racenamef == "C" ~ V1.1_C_TIME_P2_First.Click))),
V_Number==2 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V2.2_TIME_P1_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V2.1_W_TIME_P1_First.Click,
V_Racenamef == "I" ~ V2.1_I_TIME_P1_First.Click,
V_Racenamef == "B" ~ V2.1_B_TIME_P1_First.Click,
V_Racenamef == "C" ~ V2.1_C_TIME_P1_First.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V2.2_TIME_P2_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V2.1_W_TIME_P2_First.Click,
V_Racenamef == "I" ~ V2.1_I_TIME_P2_First.Click,
V_Racenamef == "B" ~ V2.1_B_TIME_P2_First.Click,
V_Racenamef == "C" ~ V2.1_C_TIME_P2_First.Click))),
V_Number==3 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V3.2_TIME_P1_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V3.1_W_TIME_P1_First.Click,
V_Racenamef == "I" ~ V3.1_I_TIME_P1_First.Click,
V_Racenamef == "B" ~ V3.1_B_TIME_P1_First.Click,
V_Racenamef == "C" ~ V3.1_C_TIME_P1_First.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V3.2_TIME_P2_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V3.1_W_TIME_P2_First.Click,
V_Racenamef == "I" ~ V3.1_I_TIME_P2_First.Click,
V_Racenamef == "B" ~ V3.1_B_TIME_P2_First.Click,
V_Racenamef == "C" ~ V3.1_C_TIME_P2_First.Click))),
V_Number==4 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V4.2_TIME_P1_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V4.1_W_TIME_P1_First.Click,
V_Racenamef == "I" ~ V4.1_I_TIME_P1_First.Click,
V_Racenamef == "B" ~ V4.1_B_TIME_P1_First.Click,
V_Racenamef == "C" ~ V4.1_C_TIME_P1_First.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V4.2_TIME_P2_First.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V4.1_W_TIME_P2_First.Click,
V_Racenamef == "I" ~ V4.1_I_TIME_P2_First.Click,
V_Racenamef == "B" ~ V4.1_B_TIME_P2_First.Click,
V_Racenamef == "C" ~ V4.1_C_TIME_P2_First.Click)))),
V_LastClick = case_when(V_Number==1 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V1.2_TIME_P1_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V1.1_W_TIME_P1_Last.Click,
V_Racenamef == "I" ~ V1.1_I_TIME_P1_Last.Click,
V_Racenamef == "B" ~ V1.1_B_TIME_P1_Last.Click,
V_Racenamef == "C" ~ V1.1_C_TIME_P1_Last.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V1.2_TIME_P2_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V1.1_W_TIME_P2_Last.Click,
V_Racenamef == "I" ~ V1.1_I_TIME_P2_Last.Click,
V_Racenamef == "B" ~ V1.1_B_TIME_P2_Last.Click,
V_Racenamef == "C" ~ V1.1_C_TIME_P2_Last.Click))),
V_Number==2 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V2.2_TIME_P1_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V2.1_W_TIME_P1_Last.Click,
V_Racenamef == "I" ~ V2.1_I_TIME_P1_Last.Click,
V_Racenamef == "B" ~ V2.1_B_TIME_P1_Last.Click,
V_Racenamef == "C" ~ V2.1_C_TIME_P1_Last.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V2.2_TIME_P2_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V2.1_W_TIME_P2_Last.Click,
V_Racenamef == "I" ~ V2.1_I_TIME_P2_Last.Click,
V_Racenamef == "B" ~ V2.1_B_TIME_P2_Last.Click,
V_Racenamef == "C" ~ V2.1_C_TIME_P2_Last.Click))),
V_Number==3 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V3.2_TIME_P1_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V3.1_W_TIME_P1_Last.Click,
V_Racenamef == "I" ~ V3.1_I_TIME_P1_Last.Click,
V_Racenamef == "B" ~ V3.1_B_TIME_P1_Last.Click,
V_Racenamef == "C" ~ V3.1_C_TIME_P1_Last.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V3.2_TIME_P2_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V3.1_W_TIME_P2_Last.Click,
V_Racenamef == "I" ~ V3.1_I_TIME_P2_Last.Click,
V_Racenamef == "B" ~ V3.1_B_TIME_P2_Last.Click,
V_Racenamef == "C" ~ V3.1_C_TIME_P2_Last.Click))),
V_Number==4 ~ case_when(str_detect(V_Question, "Other") ~ case_when(V_Update ~ V4.2_TIME_P1_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V4.1_W_TIME_P1_Last.Click,
V_Racenamef == "I" ~ V4.1_I_TIME_P1_Last.Click,
V_Racenamef == "B" ~ V4.1_B_TIME_P1_Last.Click,
V_Racenamef == "C" ~ V4.1_C_TIME_P1_Last.Click)),
str_detect(V_Question, "Self") ~ case_when(V_Update ~ V4.2_TIME_P2_Last.Click,
!(V_Update) ~ case_when(V_Racenamef == "W" ~ V4.1_W_TIME_P2_Last.Click,
V_Racenamef == "I" ~ V4.1_I_TIME_P2_Last.Click,
V_Racenamef == "B" ~ V4.1_B_TIME_P2_Last.Click,
V_Racenamef == "C" ~ V4.1_C_TIME_P2_Last.Click)))),
V_Timepersection = V_LastClick - V_FirstClick,
V_Timeperquestion = V_Timepersection / 3,
V_Timeperquestionqual = V_Timeperquestion %>% cut(c(0,1,2,3,5,10,815))
)
df_V$V_Timeperquestionqual %>% freq()
## n % val%
## (0,1] 1068 3.4 3.4
## (1,2] 7209 22.7 22.7
## (2,3] 7341 23.1 23.1
## (3,5] 8214 25.8 25.8
## (5,10] 6009 18.9 18.9
## (10,815] 1935 6.1 6.1
We join with the rest of the data
dff <- df %>%
inner_join(df_V, by="ID") %>%
filter(EXPGRP_TEXT != "Non-Chinese Asian" &
!(CONTINENT_BORN_TEXT_1 %in% c("4Tigers and Japan", "Africa", "Middle East",
"North America", "Oceania", "South America")) &
!(is.na(CONTINENT_BORN_TEXT_1)) &
!(SEX_TEXT %in% c("Other", "Transgender")) &
HH_INCOME_TEXT != "$500,000 or more")
dff$V_Location <- relevel(dff$V_Location %>% as.factor(), "nearby")
dff$V_Racenamef <- relevel(dff$V_Racenamef %>% as.factor(), "W")
dff$V_Product <- relevel(dff$V_Product %>% as.factor(), "hardwaresupplies")
dff$EXPGRP_TEXT <- relevel(dff$EXPGRP_TEXT %>% as.factor(), "White")
dff <- dff %>%
mutate(V_up = case_when(V_Update ~ 1,
!(V_Update) ~ 0),
V_presentation2 = case_when(V_Update ~ case_when(str_detect(V_Presentation, "Defensive") ~ 0,
str_detect(V_Presentation, "Prosocial") ~ 2),
!(V_Update) ~ 1),
V_presentation3 = case_when(V_Update ~ case_when(str_detect(V_Presentation, "Defensive") ~ "Defensive",
str_detect(V_Presentation, "Prosocial") ~ "Prosocial"),
!(V_Update) ~ "NONE") %>%
as.factor %>%
relevel("NONE"),
V_Number = V_Number %>% as.character() %>% as.numeric(),
V_JudgeSelf = ifelse(str_detect(V_Question, "JudgeSelf"), 1, 0),
V_Questionnb = case_when(str_detect(V_Question, "_1") ~ "CatchCovid",
str_detect(V_Question, "_2") ~ "TransmitCovid",
str_detect(V_Question, "_4") ~ "TransmitCovid",
str_detect(V_Question, "_3") ~ "MorallyWrong",
str_detect(V_Question, "_5") ~ "MorallyWrong"))
dff <- dff %>%
mutate(V_Racename_EXPGRP_Product_Presentation = paste0(V_Racenamef, '_',
EXPGRP_TEXT, '_',
V_Product, '_',
V_Presentation) %>%
as.factor %>%
relevel("W_White_hardwaresupplies_Defensive"))
dff$CONTINENT_BORN_TEXT_1 <- relevel(dff$CONTINENT_BORN_TEXT_1 %>% as.factor, "USA")
dff$DOB_AGE <- 2020-dff$DOB_YEAR
dff_2 <- dff %>%
dplyr::select(-matches("^clean_V|^V[1-4].[1-2]|^covmis_|^AMBI_MSR_[0-9]{1,3}|^AMBI_[0-9]{1,3}|^AMBI_W[0-9]|^FL_172"))
readr::write_csv(dff, file.path("./data/mjolnir_clean_v10_ReadyForVignetteAnalysis_1.csv.gz"))
save(dff, file = "./data/mjolnir_clean_v10_ReadyForVignetteAnalysis_1.rdata")
readr::write_csv(dff_2, file.path("./data/mjolnir_clean_v10_ReadyForVignetteAnalysis_2.csv.gz"))
save(dff_2, file = "./data/mjolnir_clean_v10_ReadyForVignetteAnalysis_2.rdata")
load("./data/mjolnir_clean_v10_ReadyForVignetteAnalysis_2.rdata")
dff <- dff_2
reg <- lm(vignette_result ~ V_Update, data = df_V %>%
dplyr::select(vignette_name, vignette_result, V_Number,V_Racename,V_Update,V_Question) %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(reg)
##
## Call:
## lm(formula = vignette_result ~ V_Update, data = df_V %>% dplyr::select(vignette_name,
## vignette_result, V_Number, V_Racename, V_Update, V_Question) %>%
## filter(V_Number == 1, V_Question == "JudgeOther_1"))
##
## Residuals:
## Min 1Q Median 3Q Max
## -35.258 -19.565 -2.565 17.435 67.435
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 35.2583 0.8743 40.328 <2e-16 ***
## V_UpdateTRUE -2.6934 1.2364 -2.178 0.0296 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.49 on 1322 degrees of freedom
## Multiple R-squared: 0.003577, Adjusted R-squared: 0.002823
## F-statistic: 4.745 on 1 and 1322 DF, p-value: 0.02956
reg <- lm(vignette_result ~ V_Update + V_Racenamef + V_Location + V_Age + V_Product + V_StoreType + V_Framing + EXPGRP_TEXT,
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(reg)
##
## Call:
## lm(formula = vignette_result ~ V_Update + V_Racenamef + V_Location +
## V_Age + V_Product + V_StoreType + V_Framing + EXPGRP_TEXT,
## data = dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1"))
##
## Residuals:
## Min 1Q Median 3Q Max
## -40.789 -18.530 -1.668 16.877 66.463
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 28.6063 5.5025 5.199 2.36e-07 ***
## V_UpdateTRUE -2.7813 1.2738 -2.183 0.02920 *
## V_RacenamefB -0.9971 1.8117 -0.550 0.58216
## V_RacenamefC -0.2764 1.8008 -0.154 0.87802
## V_RacenamefI 0.4669 1.8330 0.255 0.79897
## V_Locationanotherpartoftown -0.8813 1.5626 -0.564 0.57285
## V_Locationinthecity 3.1193 1.5938 1.957 0.05056 .
## V_Age 0.2280 0.1202 1.898 0.05796 .
## V_Productbabyformula -5.9615 1.8262 -3.264 0.00113 **
## V_Productcigarettes -0.3196 1.8298 -0.175 0.86136
## V_Producttoiletpaper -3.3920 1.8182 -1.866 0.06235 .
## V_StoreTypedepartmentstore -0.5906 1.5988 -0.369 0.71187
## V_StoreTypesupermarket -0.3520 1.5732 -0.224 0.82297
## V_FramingExplain -1.4652 1.7288 -0.848 0.39687
## V_FramingStrike up -4.3114 1.8530 -2.327 0.02015 *
## V_FramingWave 0.5074 1.7916 0.283 0.77705
## EXPGRP_TEXTChinese 1.9426 1.3764 1.411 0.15841
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.04 on 1181 degrees of freedom
## Multiple R-squared: 0.03223, Adjusted R-squared: 0.01911
## F-statistic: 2.458 on 16 and 1181 DF, p-value: 0.00112
reg <- lm(vignette_result ~ V_Update + V_Racenamef + V_Location + V_Age + V_Product + V_StoreType + V_Framing + EXPGRP_TEXT,
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(reg)
##
## Call:
## lm(formula = vignette_result ~ V_Update + V_Racenamef + V_Location +
## V_Age + V_Product + V_StoreType + V_Framing + EXPGRP_TEXT,
## data = dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1"))
##
## Residuals:
## Min 1Q Median 3Q Max
## -40.789 -18.530 -1.668 16.877 66.463
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 28.6063 5.5025 5.199 2.36e-07 ***
## V_UpdateTRUE -2.7813 1.2738 -2.183 0.02920 *
## V_RacenamefB -0.9971 1.8117 -0.550 0.58216
## V_RacenamefC -0.2764 1.8008 -0.154 0.87802
## V_RacenamefI 0.4669 1.8330 0.255 0.79897
## V_Locationanotherpartoftown -0.8813 1.5626 -0.564 0.57285
## V_Locationinthecity 3.1193 1.5938 1.957 0.05056 .
## V_Age 0.2280 0.1202 1.898 0.05796 .
## V_Productbabyformula -5.9615 1.8262 -3.264 0.00113 **
## V_Productcigarettes -0.3196 1.8298 -0.175 0.86136
## V_Producttoiletpaper -3.3920 1.8182 -1.866 0.06235 .
## V_StoreTypedepartmentstore -0.5906 1.5988 -0.369 0.71187
## V_StoreTypesupermarket -0.3520 1.5732 -0.224 0.82297
## V_FramingExplain -1.4652 1.7288 -0.848 0.39687
## V_FramingStrike up -4.3114 1.8530 -2.327 0.02015 *
## V_FramingWave 0.5074 1.7916 0.283 0.77705
## EXPGRP_TEXTChinese 1.9426 1.3764 1.411 0.15841
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.04 on 1181 degrees of freedom
## Multiple R-squared: 0.03223, Adjusted R-squared: 0.01911
## F-statistic: 2.458 on 16 and 1181 DF, p-value: 0.00112
reg <- lm(vignette_result ~ V_Update + V_Racenamef:EXPGRP_TEXT + V_Location + V_Age + V_Product + V_StoreType + V_Framing,
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(reg)
##
## Call:
## lm(formula = vignette_result ~ V_Update + V_Racenamef:EXPGRP_TEXT +
## V_Location + V_Age + V_Product + V_StoreType + V_Framing,
## data = dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1"))
##
## Residuals:
## Min 1Q Median 3Q Max
## -39.877 -18.749 -1.425 17.060 66.397
##
## Coefficients: (1 not defined because of singularities)
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 32.4090 5.8636 5.527 4e-08 ***
## V_UpdateTRUE -2.7813 1.2744 -2.183 0.02927 *
## V_Locationanotherpartoftown -0.7441 1.5701 -0.474 0.63565
## V_Locationinthecity 3.2266 1.5978 2.019 0.04367 *
## V_Age 0.2276 0.1202 1.893 0.05859 .
## V_Productbabyformula -5.8593 1.8346 -3.194 0.00144 **
## V_Productcigarettes -0.2630 1.8447 -0.143 0.88664
## V_Producttoiletpaper -3.3286 1.8241 -1.825 0.06829 .
## V_StoreTypedepartmentstore -0.6703 1.6037 -0.418 0.67604
## V_StoreTypesupermarket -0.3835 1.5776 -0.243 0.80796
## V_FramingExplain -1.5115 1.7304 -0.874 0.38256
## V_FramingStrike up -4.4478 1.8582 -2.394 0.01684 *
## V_FramingWave 0.5765 1.7945 0.321 0.74806
## V_RacenamefW:EXPGRP_TEXTWhite -4.4317 3.0532 -1.451 0.14691
## V_RacenamefB:EXPGRP_TEXTWhite -3.8378 3.0211 -1.270 0.20422
## V_RacenamefC:EXPGRP_TEXTWhite -4.0937 2.9966 -1.366 0.17216
## V_RacenamefI:EXPGRP_TEXTWhite -3.8971 2.9977 -1.300 0.19384
## V_RacenamefW:EXPGRP_TEXTChinese -1.0724 3.2790 -0.327 0.74369
## V_RacenamefB:EXPGRP_TEXTChinese -4.8941 3.3973 -1.441 0.14997
## V_RacenamefC:EXPGRP_TEXTChinese -2.2664 3.4648 -0.654 0.51316
## V_RacenamefI:EXPGRP_TEXTChinese NA NA NA NA
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.05 on 1178 degrees of freedom
## Multiple R-squared: 0.03383, Adjusted R-squared: 0.01824
## F-statistic: 2.171 on 19 and 1178 DF, p-value: 0.002544
reg <- lm(vignette_result ~ V_Location + V_Age + V_Racenamef * EXPGRP_TEXT * V_Product * V_Presentation + V_StoreType + V_Framing,
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1", V_Update == T))
summary(reg)
##
## Call:
## lm(formula = vignette_result ~ V_Location + V_Age + V_Racenamef *
## EXPGRP_TEXT * V_Product * V_Presentation + V_StoreType +
## V_Framing, data = dff %>% filter(V_Number == 1, V_Question ==
## "JudgeOther_1", V_Update == T))
##
## Residuals:
## Min 1Q Median 3Q Max
## -44.83 -17.66 -1.20 15.34 67.39
##
## Coefficients: (32 not defined because of singularities)
## Estimate
## (Intercept) 26.799458
## V_Locationanotherpartoftown -1.529315
## V_Locationinthecity 2.063398
## V_Age 0.210950
## V_RacenamefB 9.499944
## V_RacenamefC -2.745517
## V_RacenamefI 5.872861
## EXPGRP_TEXTChinese 4.642879
## V_Productbabyformula -4.112307
## V_Productcigarettes -8.575109
## V_Producttoiletpaper -4.421225
## V_PresentationProsocial -10.098582
## V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 9.635554
## V_StoreTypedepartmentstore -0.445240
## V_StoreTypesupermarket -0.618449
## V_FramingExplain 0.652042
## V_FramingStrike up -2.283133
## V_FramingWave 1.998213
## V_RacenamefB:EXPGRP_TEXTChinese -7.704324
## V_RacenamefC:EXPGRP_TEXTChinese -5.695370
## V_RacenamefI:EXPGRP_TEXTChinese -2.546409
## V_RacenamefB:V_Productbabyformula -14.087109
## V_RacenamefC:V_Productbabyformula -4.700873
## V_RacenamefI:V_Productbabyformula -11.050534
## V_RacenamefB:V_Productcigarettes -12.188909
## V_RacenamefC:V_Productcigarettes 11.472333
## V_RacenamefI:V_Productcigarettes -3.318670
## V_RacenamefB:V_Producttoiletpaper -9.073809
## V_RacenamefC:V_Producttoiletpaper 3.825695
## V_RacenamefI:V_Producttoiletpaper -17.882543
## EXPGRP_TEXTChinese:V_Productbabyformula -13.499247
## EXPGRP_TEXTChinese:V_Productcigarettes 20.594113
## EXPGRP_TEXTChinese:V_Producttoiletpaper -8.105061
## V_RacenamefB:V_PresentationProsocial -3.826640
## V_RacenamefC:V_PresentationProsocial 11.157681
## V_RacenamefI:V_PresentationProsocial 9.616985
## V_RacenamefB:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -9.031721
## V_RacenamefC:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -5.063657
## V_RacenamefI:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 5.480338
## EXPGRP_TEXTChinese:V_PresentationProsocial -0.003142
## EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -1.379156
## V_Productbabyformula:V_PresentationProsocial 4.612251
## V_Productcigarettes:V_PresentationProsocial 23.176931
## V_Producttoiletpaper:V_PresentationProsocial NA
## V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula 16.790306
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula 26.225308
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula 10.529974
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes -17.754057
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes 0.040409
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes -25.234821
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.731475
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper -6.912136
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper 18.611054
## V_RacenamefB:EXPGRP_TEXTChinese:V_PresentationProsocial 5.185114
## V_RacenamefC:EXPGRP_TEXTChinese:V_PresentationProsocial 2.302828
## V_RacenamefI:EXPGRP_TEXTChinese:V_PresentationProsocial -25.291612
## V_RacenamefB:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 14.577062
## V_RacenamefC:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 23.915467
## V_RacenamefI:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 1.602785
## V_RacenamefB:V_Productbabyformula:V_PresentationProsocial 16.845986
## V_RacenamefC:V_Productbabyformula:V_PresentationProsocial 5.506016
## V_RacenamefI:V_Productbabyformula:V_PresentationProsocial -2.963305
## V_RacenamefB:V_Productcigarettes:V_PresentationProsocial -8.285822
## V_RacenamefC:V_Productcigarettes:V_PresentationProsocial -33.130893
## V_RacenamefI:V_Productcigarettes:V_PresentationProsocial -12.094279
## V_RacenamefB:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 13.132732
## EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial -34.440101
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial -32.625663
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial -51.867548
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 18.466500
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 36.515513
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 31.023452
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 72.484826
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## Std. Error
## (Intercept) 10.073845
## V_Locationanotherpartoftown 2.362960
## V_Locationinthecity 2.432162
## V_Age 0.183325
## V_RacenamefB 9.144104
## V_RacenamefC 9.526614
## V_RacenamefI 10.383579
## EXPGRP_TEXTChinese 11.691585
## V_Productbabyformula 9.729809
## V_Productcigarettes 9.581599
## V_Producttoiletpaper 9.140344
## V_PresentationProsocial 10.094351
## V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 8.622343
## V_StoreTypedepartmentstore 2.444790
## V_StoreTypesupermarket 2.367119
## V_FramingExplain 2.618709
## V_FramingStrike up 2.794425
## V_FramingWave 2.704996
## V_RacenamefB:EXPGRP_TEXTChinese 15.996299
## V_RacenamefC:EXPGRP_TEXTChinese 15.577658
## V_RacenamefI:EXPGRP_TEXTChinese 16.636751
## V_RacenamefB:V_Productbabyformula 12.693342
## V_RacenamefC:V_Productbabyformula 13.175019
## V_RacenamefI:V_Productbabyformula 14.941844
## V_RacenamefB:V_Productcigarettes 12.806486
## V_RacenamefC:V_Productcigarettes 12.818887
## V_RacenamefI:V_Productcigarettes 14.323619
## V_RacenamefB:V_Producttoiletpaper 13.540967
## V_RacenamefC:V_Producttoiletpaper 12.448809
## V_RacenamefI:V_Producttoiletpaper 13.443859
## EXPGRP_TEXTChinese:V_Productbabyformula 16.223895
## EXPGRP_TEXTChinese:V_Productcigarettes 15.380106
## EXPGRP_TEXTChinese:V_Producttoiletpaper 14.882662
## V_RacenamefB:V_PresentationProsocial 13.358035
## V_RacenamefC:V_PresentationProsocial 13.720205
## V_RacenamefI:V_PresentationProsocial 13.609744
## V_RacenamefB:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 13.591122
## V_RacenamefC:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 12.545121
## V_RacenamefI:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 11.921618
## EXPGRP_TEXTChinese:V_PresentationProsocial 16.111162
## EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 13.311066
## V_Productbabyformula:V_PresentationProsocial 13.771562
## V_Productcigarettes:V_PresentationProsocial 14.321348
## V_Producttoiletpaper:V_PresentationProsocial NA
## V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula 21.760197
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula 21.403211
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula 24.039714
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes 21.761192
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes 22.445894
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes 26.109743
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper 24.052862
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper 21.000766
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper 21.808816
## V_RacenamefB:EXPGRP_TEXTChinese:V_PresentationProsocial 23.396088
## V_RacenamefC:EXPGRP_TEXTChinese:V_PresentationProsocial 21.644901
## V_RacenamefI:EXPGRP_TEXTChinese:V_PresentationProsocial 26.184071
## V_RacenamefB:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 23.343202
## V_RacenamefC:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 21.835479
## V_RacenamefI:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 24.138130
## V_RacenamefB:V_Productbabyformula:V_PresentationProsocial 18.540244
## V_RacenamefC:V_Productbabyformula:V_PresentationProsocial 19.157615
## V_RacenamefI:V_Productbabyformula:V_PresentationProsocial 19.368776
## V_RacenamefB:V_Productcigarettes:V_PresentationProsocial 19.253113
## V_RacenamefC:V_Productcigarettes:V_PresentationProsocial 18.751591
## V_RacenamefI:V_Productcigarettes:V_PresentationProsocial 19.550813
## V_RacenamefB:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 23.033083
## EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 22.055871
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 31.729128
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 37.106263
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 35.076490
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 31.804489
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 32.402029
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 36.583550
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## t value
## (Intercept) 2.660
## V_Locationanotherpartoftown -0.647
## V_Locationinthecity 0.848
## V_Age 1.151
## V_RacenamefB 1.039
## V_RacenamefC -0.288
## V_RacenamefI 0.566
## EXPGRP_TEXTChinese 0.397
## V_Productbabyformula -0.423
## V_Productcigarettes -0.895
## V_Producttoiletpaper -0.484
## V_PresentationProsocial -1.000
## V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 1.118
## V_StoreTypedepartmentstore -0.182
## V_StoreTypesupermarket -0.261
## V_FramingExplain 0.249
## V_FramingStrike up -0.817
## V_FramingWave 0.739
## V_RacenamefB:EXPGRP_TEXTChinese -0.482
## V_RacenamefC:EXPGRP_TEXTChinese -0.366
## V_RacenamefI:EXPGRP_TEXTChinese -0.153
## V_RacenamefB:V_Productbabyformula -1.110
## V_RacenamefC:V_Productbabyformula -0.357
## V_RacenamefI:V_Productbabyformula -0.740
## V_RacenamefB:V_Productcigarettes -0.952
## V_RacenamefC:V_Productcigarettes 0.895
## V_RacenamefI:V_Productcigarettes -0.232
## V_RacenamefB:V_Producttoiletpaper -0.670
## V_RacenamefC:V_Producttoiletpaper 0.307
## V_RacenamefI:V_Producttoiletpaper -1.330
## EXPGRP_TEXTChinese:V_Productbabyformula -0.832
## EXPGRP_TEXTChinese:V_Productcigarettes 1.339
## EXPGRP_TEXTChinese:V_Producttoiletpaper -0.545
## V_RacenamefB:V_PresentationProsocial -0.286
## V_RacenamefC:V_PresentationProsocial 0.813
## V_RacenamefI:V_PresentationProsocial 0.707
## V_RacenamefB:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -0.665
## V_RacenamefC:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -0.404
## V_RacenamefI:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.460
## EXPGRP_TEXTChinese:V_PresentationProsocial 0.000
## EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter -0.104
## V_Productbabyformula:V_PresentationProsocial 0.335
## V_Productcigarettes:V_PresentationProsocial 1.618
## V_Producttoiletpaper:V_PresentationProsocial NA
## V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula 0.772
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula 1.225
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula 0.438
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes -0.816
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes 0.002
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes -0.966
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.030
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper -0.329
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.853
## V_RacenamefB:EXPGRP_TEXTChinese:V_PresentationProsocial 0.222
## V_RacenamefC:EXPGRP_TEXTChinese:V_PresentationProsocial 0.106
## V_RacenamefI:EXPGRP_TEXTChinese:V_PresentationProsocial -0.966
## V_RacenamefB:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.624
## V_RacenamefC:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 1.095
## V_RacenamefI:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.066
## V_RacenamefB:V_Productbabyformula:V_PresentationProsocial 0.909
## V_RacenamefC:V_Productbabyformula:V_PresentationProsocial 0.287
## V_RacenamefI:V_Productbabyformula:V_PresentationProsocial -0.153
## V_RacenamefB:V_Productcigarettes:V_PresentationProsocial -0.430
## V_RacenamefC:V_Productcigarettes:V_PresentationProsocial -1.767
## V_RacenamefI:V_Productcigarettes:V_PresentationProsocial -0.619
## V_RacenamefB:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.570
## EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial -1.561
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial -1.028
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial -1.398
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.526
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 1.148
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 0.957
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 1.981
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## Pr(>|t|)
## (Intercept) 0.00804
## V_Locationanotherpartoftown 0.51778
## V_Locationinthecity 0.39661
## V_Age 0.25038
## V_RacenamefB 0.29932
## V_RacenamefC 0.77331
## V_RacenamefI 0.57191
## EXPGRP_TEXTChinese 0.69144
## V_Productbabyformula 0.67272
## V_Productcigarettes 0.37122
## V_Producttoiletpaper 0.62880
## V_PresentationProsocial 0.31757
## V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.26429
## V_StoreTypedepartmentstore 0.85556
## V_StoreTypesupermarket 0.79399
## V_FramingExplain 0.80346
## V_FramingStrike up 0.41428
## V_FramingWave 0.46041
## V_RacenamefB:EXPGRP_TEXTChinese 0.63027
## V_RacenamefC:EXPGRP_TEXTChinese 0.71480
## V_RacenamefI:EXPGRP_TEXTChinese 0.87841
## V_RacenamefB:V_Productbabyformula 0.26759
## V_RacenamefC:V_Productbabyformula 0.72138
## V_RacenamefI:V_Productbabyformula 0.45989
## V_RacenamefB:V_Productcigarettes 0.34165
## V_RacenamefC:V_Productcigarettes 0.37122
## V_RacenamefI:V_Productcigarettes 0.81687
## V_RacenamefB:V_Producttoiletpaper 0.50309
## V_RacenamefC:V_Producttoiletpaper 0.75873
## V_RacenamefI:V_Producttoiletpaper 0.18404
## EXPGRP_TEXTChinese:V_Productbabyformula 0.40575
## EXPGRP_TEXTChinese:V_Productcigarettes 0.18114
## EXPGRP_TEXTChinese:V_Producttoiletpaper 0.58626
## V_RacenamefB:V_PresentationProsocial 0.77463
## V_RacenamefC:V_PresentationProsocial 0.41645
## V_RacenamefI:V_PresentationProsocial 0.48011
## V_RacenamefB:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.50664
## V_RacenamefC:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.68664
## V_RacenamefI:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.64592
## EXPGRP_TEXTChinese:V_PresentationProsocial 0.99984
## EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.91752
## V_Productbabyformula:V_PresentationProsocial 0.73783
## V_Productcigarettes:V_PresentationProsocial 0.10619
## V_Producttoiletpaper:V_PresentationProsocial NA
## V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula 0.44069
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula 0.22101
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula 0.66155
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes 0.41495
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes 0.99856
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes 0.33424
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.97575
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.74218
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper 0.39384
## V_RacenamefB:EXPGRP_TEXTChinese:V_PresentationProsocial 0.82469
## V_RacenamefC:EXPGRP_TEXTChinese:V_PresentationProsocial 0.91531
## V_RacenamefI:EXPGRP_TEXTChinese:V_PresentationProsocial 0.33453
## V_RacenamefB:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.53259
## V_RacenamefC:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.27390
## V_RacenamefI:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter 0.94708
## V_RacenamefB:V_Productbabyformula:V_PresentationProsocial 0.36397
## V_RacenamefC:V_Productbabyformula:V_PresentationProsocial 0.77391
## V_RacenamefI:V_Productbabyformula:V_PresentationProsocial 0.87846
## V_RacenamefB:V_Productcigarettes:V_PresentationProsocial 0.66711
## V_RacenamefC:V_Productcigarettes:V_PresentationProsocial 0.07784
## V_RacenamefI:V_Productcigarettes:V_PresentationProsocial 0.53644
## V_RacenamefB:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.56881
## EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 0.11901
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.30430
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.16276
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial 0.59879
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 0.25144
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 0.33878
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial 0.04807
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter NA
##
## (Intercept) **
## V_Locationanotherpartoftown
## V_Locationinthecity
## V_Age
## V_RacenamefB
## V_RacenamefC
## V_RacenamefI
## EXPGRP_TEXTChinese
## V_Productbabyformula
## V_Productcigarettes
## V_Producttoiletpaper
## V_PresentationProsocial
## V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_StoreTypedepartmentstore
## V_StoreTypesupermarket
## V_FramingExplain
## V_FramingStrike up
## V_FramingWave
## V_RacenamefB:EXPGRP_TEXTChinese
## V_RacenamefC:EXPGRP_TEXTChinese
## V_RacenamefI:EXPGRP_TEXTChinese
## V_RacenamefB:V_Productbabyformula
## V_RacenamefC:V_Productbabyformula
## V_RacenamefI:V_Productbabyformula
## V_RacenamefB:V_Productcigarettes
## V_RacenamefC:V_Productcigarettes
## V_RacenamefI:V_Productcigarettes
## V_RacenamefB:V_Producttoiletpaper
## V_RacenamefC:V_Producttoiletpaper
## V_RacenamefI:V_Producttoiletpaper
## EXPGRP_TEXTChinese:V_Productbabyformula
## EXPGRP_TEXTChinese:V_Productcigarettes
## EXPGRP_TEXTChinese:V_Producttoiletpaper
## V_RacenamefB:V_PresentationProsocial
## V_RacenamefC:V_PresentationProsocial
## V_RacenamefI:V_PresentationProsocial
## V_RacenamefB:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## EXPGRP_TEXTChinese:V_PresentationProsocial
## EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_Productbabyformula:V_PresentationProsocial
## V_Productcigarettes:V_PresentationProsocial
## V_Producttoiletpaper:V_PresentationProsocial
## V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper
## V_RacenamefB:EXPGRP_TEXTChinese:V_PresentationProsocial
## V_RacenamefC:EXPGRP_TEXTChinese:V_PresentationProsocial
## V_RacenamefI:EXPGRP_TEXTChinese:V_PresentationProsocial
## V_RacenamefB:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:EXPGRP_TEXTChinese:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefC:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefI:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefB:V_Productcigarettes:V_PresentationProsocial
## V_RacenamefC:V_Productcigarettes:V_PresentationProsocial .
## V_RacenamefI:V_Productcigarettes:V_PresentationProsocial
## V_RacenamefB:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefC:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefI:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefB:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial
## EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial
## EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_PresentationProsocial
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_PresentationProsocial *
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_PresentationProsocial
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productbabyformula:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:EXPGRP_TEXTChinese:V_Productcigarettes:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefB:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefC:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## V_RacenamefI:EXPGRP_TEXTChinese:V_Producttoiletpaper:V_Presentationthey\u0081Ere donating the toilet paper to a local homeless shelter
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.45 on 527 degrees of freedom
## Multiple R-squared: 0.1172, Adjusted R-squared: -0.001743
## F-statistic: 0.9853 on 71 and 527 DF, p-value: 0.5147
dff %>%
filter(V_Question=="JudgeOther_1") %>%
mutate(vn = vignette_result^car::powerTransform(vignette_result+0.000000001)$lambda) %>%
.$vn %>%
shapiro.test()
##
## Shapiro-Wilk normality test
##
## data: .
## W = 0.93192, p-value < 2.2e-16
dff %>%
filter(V_Question=="JudgeOther_1") %>%
mutate(vn = vignette_result^car::powerTransform(vignette_result+0.000000001)$lambda) %>%
dplyr::select(vn) %>%
ggplot(aes(x=vn)) +
geom_histogram(binwidth=0.1,color="black", fill="white")
dff %>%
filter(V_Question=="JudgeOther_1") %>%
dplyr::select(vignette_result) %>%
ggplot(aes(x=vignette_result)) +
geom_histogram(binwidth=1,color="black", fill="white")
pb our data is really not normal.
library(lme4)
library(lmerTest)
library(emmeans)
basic.lm <- lm(vignette_result ~ V_up,
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(basic.lm)
##
## Call:
## lm(formula = vignette_result ~ V_up, data = dff %>% filter(V_Number ==
## 1, V_Question == "JudgeOther_1"))
##
## Residuals:
## Min 1Q Median 3Q Max
## -34.855 -19.855 -2.073 17.731 67.927
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 34.855 0.908 38.384 <2e-16 ***
## V_up -2.781 1.284 -2.166 0.0305 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 22.22 on 1196 degrees of freedom
## Multiple R-squared: 0.003907, Adjusted R-squared: 0.003074
## F-statistic: 4.691 on 1 and 1196 DF, p-value: 0.03052
dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1") %>%
ggplot(aes(x=V_up, y=vignette_result)) +
geom_point() +
geom_smooth(method = "lm")
## `geom_smooth()` using formula 'y ~ x'
plot(basic.lm, which = 1)
plot(basic.lm, which = 2)
V_Location + V_Age + V_Product + V_StoreType + V_Framing
dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1") %>%
ggplot(aes(x=EXPGRP_TEXT, y=vignette_result, fill=EXPGRP_TEXT)) +
ggdist::stat_halfeye(
adjust = 0.5,
justification=-.2,
.width = 0,
point_colour=NA
) +
geom_boxplot(
width=.12,
outlier.color = NA,
alpha=.5
) +
ggdist::stat_dots(
side="left",
justification=1.1,
binwidth=.25
)
boxplot(vignette_result ~ EXPGRP_TEXT,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ CONTINENT_BORN_TEXT_1,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
dff %>%
filter(V_Question=="JudgeOther_1") %>%
ggplot(aes(x=interaction(EXPGRP_TEXT,CONTINENT_BORN_TEXT_1), y=vignette_result, fill=interaction(EXPGRP_TEXT,CONTINENT_BORN_TEXT_1))) +
geom_boxplot()+
theme(axis.text.x = element_text(angle = 45, vjust=1, hjust=1))
boxplot(vignette_result ~ V_Product,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ V_Location,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ V_Age,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ V_Racenamef,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ V_StoreType,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ V_Framing,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
boxplot(vignette_result ~ ID,
data = dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"))
d_verif <- dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1") %>%
group_by(ID) %>%
summarise(sdres = sd(vignette_result),
timeres = mean(V_Timeperquestion)) %>%
mutate(dif = sdres %>% cut(c(0, 0.0001,1,5,10,50,100), include.lowest = T),
time = timeres %>% cut(c(0,1,2,3,5,10,815)))
table(d_verif$dif, d_verif$time) %>% lprop
##
## (5,10] Total
## (10,50] 100 100
## All 100 100
mixed.lmer <- lmer(vignette_result ~ V_up + (1|V_Product) + (1|V_Product:V_Presentation) + (1|ID),
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula:
## vignette_result ~ V_up + (1 | V_Product) + (1 | V_Product:V_Presentation) +
## (1 | ID)
## Data: dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1")
##
## REML criterion at convergence: 10279.6
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2960 -0.3514 -0.0081 0.3234 3.9881
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 376.602 19.406
## V_Product:V_Presentation (Intercept) 2.904 1.704
## V_Product (Intercept) 3.126 1.768
## Residual 112.382 10.601
## Number of obs: 1198, groups:
## ID, 599; V_Product:V_Presentation, 8; V_Product, 4
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 34.8814 1.4004 3.2996 24.91 7.16e-05 ***
## V_up -2.7813 0.6126 598.0000 -4.54 6.79e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_up -0.219
mixed.lmer2 <- lmer(vignette_result ~ V_Update + V_Product + V_Update:V_Product:V_presentation3 + (1|ID),
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
## fixed-effect model matrix is rank deficient so dropping 18 columns / coefficients
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula:
## vignette_result ~ V_up + (1 | V_Product) + (1 | V_Product:V_Presentation) +
## (1 | ID)
## Data: dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1")
##
## REML criterion at convergence: 10279.6
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2960 -0.3514 -0.0081 0.3234 3.9881
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 376.602 19.406
## V_Product:V_Presentation (Intercept) 2.904 1.704
## V_Product (Intercept) 3.126 1.768
## Residual 112.382 10.601
## Number of obs: 1198, groups:
## ID, 599; V_Product:V_Presentation, 8; V_Product, 4
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 34.8814 1.4004 3.2996 24.91 7.16e-05 ***
## V_up -2.7813 0.6126 598.0000 -4.54 6.79e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_up -0.219
plot(mixed.lmer)
qqnorm(resid(mixed.lmer))
qqline(resid(mixed.lmer))
dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1") %>%
ggplot(aes(x = V_up, y = vignette_result, colour = ID)) +
facet_grid( ~ V_Product) +
geom_point() +
theme_classic() +
geom_line(data = cbind(dff %>%
filter(V_Number==1, V_Question=="JudgeOther_1"),
pred = predict(mixed.lmer)), aes(y = pred)) +
theme(legend.position = "none")
emmeans(mixed.lmer2, ~ V_Update + V_Update:V_Product:V_presentation3)
## NOTE: A nesting structure was detected in the fitted model:
## V_presentation3 %in% (V_Update*V_Product)
## V_presentation3 V_Update V_Product emmean SE df lower.CL upper.CL
## NONE FALSE hardwaresupplies 36.0 1.83 719 32.4 39.6
## Defensive TRUE hardwaresupplies 37.8 2.15 1022 33.6 42.0
## Prosocial TRUE hardwaresupplies 33.4 2.15 1022 29.2 37.6
## NONE FALSE babyformula 31.9 1.81 719 28.4 35.5
## Defensive TRUE babyformula 29.0 2.11 1008 24.8 33.1
## Prosocial TRUE babyformula 27.2 2.16 1037 23.0 31.5
## NONE FALSE cigarettes 38.0 1.83 719 34.4 41.6
## Defensive TRUE cigarettes 31.3 2.16 1027 27.1 35.6
## Prosocial TRUE cigarettes 35.0 2.14 1018 30.8 39.2
## NONE FALSE toiletpaper 33.6 1.80 719 30.1 37.1
## Defensive TRUE toiletpaper 28.8 2.10 1011 24.7 32.9
##
## Degrees-of-freedom method: kenward-roger
## Confidence level used: 0.95
mixed.lmer <- lmer(vignette_result ~ V_presentation3 * V_Product + (1|ID),
data = dff %>% filter(V_Number==1, V_Question=="JudgeOther_1"))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
mixed.lmer %>% summary()
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: vignette_result ~ V_presentation3 * V_Product + (1 | ID)
## Data: dff %>% filter(V_Number == 1, V_Question == "JudgeOther_1")
##
## REML criterion at convergence: 9619.2
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2971 -0.3650 -0.0012 0.3242 3.9732
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 387.2 19.68
## Residual 106.9 10.34
## Number of obs: 1124, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df
## (Intercept) 35.9797 1.8272 717.4124
## V_presentation3Defensive 1.8408 1.6530 573.8183
## V_presentation3Prosocial -2.5841 1.6530 573.8183
## V_Productbabyformula -4.0464 2.5754 717.4124
## V_Productcigarettes 2.0068 2.5840 717.4124
## V_Producttoiletpaper -2.3784 2.5628 717.4124
## V_presentation3Defensive:V_Productbabyformula -4.8027 2.3089 572.5952
## V_presentation3Prosocial:V_Productbabyformula -2.1378 2.3526 575.0972
## V_presentation3Defensive:V_Productcigarettes -8.4879 2.3453 574.2468
## V_presentation3Prosocial:V_Productcigarettes -0.3995 2.3304 573.3961
## V_presentation3Defensive:V_Producttoiletpaper -6.6758 2.3015 572.8251
## t value Pr(>|t|)
## (Intercept) 19.691 < 2e-16 ***
## V_presentation3Defensive 1.114 0.265916
## V_presentation3Prosocial -1.563 0.118552
## V_Productbabyformula -1.571 0.116582
## V_Productcigarettes 0.777 0.437648
## V_Producttoiletpaper -0.928 0.353693
## V_presentation3Defensive:V_Productbabyformula -2.080 0.037961 *
## V_presentation3Prosocial:V_Productbabyformula -0.909 0.363889
## V_presentation3Defensive:V_Productcigarettes -3.619 0.000322 ***
## V_presentation3Prosocial:V_Productcigarettes -0.171 0.863951
## V_presentation3Defensive:V_Producttoiletpaper -2.901 0.003867 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) V_pr3D V_pr3P V_Prdctb V_Prdctc V_Prdctt
## V_prsnttn3D -0.239
## V_prsnttn3P -0.239 0.057
## V_Prdctbbyf -0.709 0.170 0.170
## V_Prdctcgrt -0.707 0.169 0.169 0.502
## V_Prdcttltp -0.713 0.170 0.170 0.506 0.504
## V_prsnttn3Dfnsv:V_Prdctb 0.171 -0.716 -0.041 -0.241 -0.121 -0.122
## V_prsnttn3Prscl:V_Prdctb 0.168 -0.040 -0.703 -0.237 -0.119 -0.120
## V_prsnttn3Dfnsv:V_Prdctc 0.169 -0.705 -0.040 -0.120 -0.238 -0.120
## V_prsnttn3Prscl:V_Prdctc 0.170 -0.041 -0.709 -0.120 -0.240 -0.121
## V_prsnttn3Dfnsv:V_Prdctt 0.172 -0.718 -0.041 -0.122 -0.121 -0.241
## V_prsnttn3Dfnsv:V_Prdctb V_prsnttn3Prscl:V_Prdctb
## V_prsnttn3D
## V_prsnttn3P
## V_Prdctbbyf
## V_Prdctcgrt
## V_Prdcttltp
## V_prsnttn3Dfnsv:V_Prdctb
## V_prsnttn3Prscl:V_Prdctb 0.057
## V_prsnttn3Dfnsv:V_Prdctc 0.505 0.028
## V_prsnttn3Prscl:V_Prdctc 0.029 0.498
## V_prsnttn3Dfnsv:V_Prdctt 0.514 0.029
## V_prsnttn3Dfnsv:V_Prdctc V_prsnttn3Prscl:V_Prdctc
## V_prsnttn3D
## V_prsnttn3P
## V_Prdctbbyf
## V_Prdctcgrt
## V_Prdcttltp
## V_prsnttn3Dfnsv:V_Prdctb
## V_prsnttn3Prscl:V_Prdctb
## V_prsnttn3Dfnsv:V_Prdctc
## V_prsnttn3Prscl:V_Prdctc 0.057
## V_prsnttn3Dfnsv:V_Prdctt 0.506 0.029
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
ls_means(mixed.lmer, ddf = c("Satterthwaite"))
## Least Squares Means table:
##
## Estimate Std. Error df
## V_presentation3NONE 34.87521 0.90832 717.4
## V_presentation3Defensive 31.72445 1.06515 1017.0
## V_presentation3Prosocial NA NA NA
## V_Producthardwaresupplies 35.73198 1.73712 593.4
## V_Productbabyformula 29.37209 1.72576 593.7
## V_Productcigarettes 34.77629 1.73715 593.5
## V_Producttoiletpaper NA NA NA
## V_presentation3NONE:V_Producthardwaresupplies 35.97973 1.82717 717.4
## V_presentation3Defensive:V_Producthardwaresupplies 37.82057 2.15098 1022.0
## V_presentation3Prosocial:V_Producthardwaresupplies 33.39565 2.15098 1022.0
## V_presentation3NONE:V_Productbabyformula 31.93333 1.81495 717.4
## V_presentation3Defensive:V_Productbabyformula 28.97147 2.11359 1007.5
## V_presentation3Prosocial:V_Productbabyformula 27.21146 2.16124 1036.2
## V_presentation3NONE:V_Productcigarettes 37.98649 1.82717 717.4
## V_presentation3Defensive:V_Productcigarettes 31.33947 2.15917 1026.9
## V_presentation3Prosocial:V_Productcigarettes 35.00292 2.14298 1017.2
## V_presentation3NONE:V_Producttoiletpaper 33.60131 1.79707 717.4
## V_presentation3Defensive:V_Producttoiletpaper 28.76631 2.09682 1010.2
## V_presentation3Prosocial:V_Producttoiletpaper NA NA NA
## t value lower upper
## V_presentation3NONE 38.395 33.09194 36.65849
## V_presentation3Defensive 29.784 29.63431 33.81460
## V_presentation3Prosocial NA NA NA
## V_Producthardwaresupplies 20.570 32.32033 39.14363
## V_Productbabyformula 17.020 25.98275 32.76143
## V_Productcigarettes 20.019 31.36458 38.18800
## V_Producttoiletpaper NA NA NA
## V_presentation3NONE:V_Producthardwaresupplies 19.692 32.39248 39.56698
## V_presentation3Defensive:V_Producthardwaresupplies 17.583 33.59972 42.04142
## V_presentation3Prosocial:V_Producthardwaresupplies 15.526 29.17480 37.61650
## V_presentation3NONE:V_Productbabyformula 17.595 28.37008 35.49658
## V_presentation3Defensive:V_Productbabyformula 13.707 24.82392 33.11902
## V_presentation3Prosocial:V_Productbabyformula 12.591 22.97056 31.45237
## V_presentation3NONE:V_Productcigarettes 20.790 34.39924 41.57373
## V_presentation3Defensive:V_Productcigarettes 14.515 27.10257 35.57636
## V_presentation3Prosocial:V_Productcigarettes 16.334 30.79774 39.20809
## V_presentation3NONE:V_Producttoiletpaper 18.698 30.07316 37.12945
## V_presentation3Defensive:V_Producttoiletpaper 13.719 24.65168 32.88094
## V_presentation3Prosocial:V_Producttoiletpaper NA NA NA
## Pr(>|t|)
## V_presentation3NONE < 2.2e-16 ***
## V_presentation3Defensive < 2.2e-16 ***
## V_presentation3Prosocial NA
## V_Producthardwaresupplies < 2.2e-16 ***
## V_Productbabyformula < 2.2e-16 ***
## V_Productcigarettes < 2.2e-16 ***
## V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies < 2.2e-16 ***
## V_presentation3Defensive:V_Producthardwaresupplies < 2.2e-16 ***
## V_presentation3Prosocial:V_Producthardwaresupplies < 2.2e-16 ***
## V_presentation3NONE:V_Productbabyformula < 2.2e-16 ***
## V_presentation3Defensive:V_Productbabyformula < 2.2e-16 ***
## V_presentation3Prosocial:V_Productbabyformula < 2.2e-16 ***
## V_presentation3NONE:V_Productcigarettes < 2.2e-16 ***
## V_presentation3Defensive:V_Productcigarettes < 2.2e-16 ***
## V_presentation3Prosocial:V_Productcigarettes < 2.2e-16 ***
## V_presentation3NONE:V_Producttoiletpaper < 2.2e-16 ***
## V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16 ***
## V_presentation3Prosocial:V_Producttoiletpaper NA
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Confidence level: 95%
## Degrees of freedom method: Satterthwaite
difflsmeans(mixed.lmer)
## Least Squares Means table:
##
## Estimate
## V_presentation3NONE - V_presentation3Defensive 3.15076
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 6.35989
## V_Producthardwaresupplies - V_Productcigarettes 0.95569
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -5.40420
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -1.84084
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 2.58408
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 4.04640
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 7.00826
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 8.76827
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -2.00676
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 4.64026
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.97681
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 2.37842
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 7.21342
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 4.42492
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 5.88724
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 8.84910
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 10.60911
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -0.16592
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 6.48110
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 2.81765
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 4.21926
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 9.05426
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 1.46231
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 4.42418
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 6.18419
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -4.59084
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 2.05618
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -1.60727
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -0.20566
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 4.62934
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 2.96186
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 4.72187
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -6.05315
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 0.59386
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -3.06958
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -1.66797
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 3.16703
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 1.76001
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -9.01502
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -2.36800
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -6.03145
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -4.62984
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.20516
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -10.77502
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -4.12801
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -7.79145
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -6.38985
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -1.55485
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 6.64702
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 2.98357
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 4.38518
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 9.22018
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes -3.66345
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -2.26184
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.57316
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 1.40161
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 6.23661
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 4.83500
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## Std. Error
## V_presentation3NONE - V_presentation3Defensive 0.81636
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 2.44864
## V_Producthardwaresupplies - V_Productcigarettes 2.45668
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes 2.44866
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 1.65305
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 1.65305
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 2.57538
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 2.79389
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 2.83011
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 2.58401
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 2.82853
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 2.81619
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 2.56282
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 2.78123
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 2.26995
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 2.81439
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 3.01563
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 3.04921
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 2.82229
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 3.04775
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 3.03630
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 2.80289
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 3.00390
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 2.81439
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 3.01563
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 3.04921
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 2.82229
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 3.04775
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 3.03630
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 2.80289
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 3.00390
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 1.61195
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 1.67393
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 2.57538
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 2.82065
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 2.80828
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 2.55411
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 2.77321
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 2.25658
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 2.79389
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 3.02147
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 3.00993
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 2.77430
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 2.97724
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 2.83011
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 3.05499
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 3.04357
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 2.81077
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 3.01125
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 1.66369
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 1.64263
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 2.56282
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.78123
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 2.27016
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 2.80918
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 3.00977
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 2.79676
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.99817
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 1.60138
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## df
## V_presentation3NONE - V_presentation3Defensive 572.9
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 593.6
## V_Producthardwaresupplies - V_Productcigarettes 593.4
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes 593.6
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 573.8
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 573.8
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 717.4
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 888.4
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 912.8
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 717.4
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 905.5
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 897.3
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 717.4
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 889.1
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 644.3
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 902.4
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1015.0
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1029.3
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 901.4
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1024.5
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1019.6
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 903.9
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1016.3
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 902.4
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1015.0
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1029.3
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 901.4
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1024.5
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1019.6
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 903.9
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1016.3
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 571.3
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 576.3
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 717.4
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 906.6
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 898.3
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 717.4
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 890.1
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 644.3
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 888.4
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1017.6
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 1012.5
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 890.9
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 1008.9
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 912.8
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1031.6
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 1027.0
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 915.5
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 1023.9
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 574.7
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 573.0
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 717.4
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 889.1
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 644.3
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 908.1
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 1018.9
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 899.8
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 1013.8
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 571.8
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## t value
## V_presentation3NONE - V_presentation3Defensive 3.8595
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 2.5973
## V_Producthardwaresupplies - V_Productcigarettes 0.3890
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -2.2070
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -1.1136
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 1.5632
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 1.5712
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 2.5084
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 3.0982
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -0.7766
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1.6405
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.3469
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.9281
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 2.5936
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 1.9493
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 2.0918
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 2.9344
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 3.4793
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -0.0588
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 2.1265
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.9280
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 1.5053
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 3.0142
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.5196
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1.4671
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 2.0281
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -1.6266
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.6747
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -0.5294
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -0.0734
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1.5411
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 1.8374
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 2.8208
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -2.3504
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 0.2105
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -1.0930
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -0.6531
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 1.1420
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 0.7799
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -3.2267
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -0.7837
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -2.0039
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -1.6688
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.0689
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -3.8073
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -1.3512
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -2.5600
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -2.2733
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -0.5163
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 3.9953
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 1.8163
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 1.7111
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 3.3151
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes -1.6137
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -0.8052
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 0.8549
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.5012
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.0801
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 3.0193
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## lower
## V_presentation3NONE - V_presentation3Defensive 1.54733
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 1.55084
## V_Producthardwaresupplies - V_Productcigarettes -3.86915
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -10.21330
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -5.08760
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies -0.66268
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -1.00980
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1.52486
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 3.21399
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -7.07989
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -0.91098
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -4.55028
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -2.65309
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1.75489
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies -0.03248
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.36373
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 2.93152
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 4.62572
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -5.70493
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.50056
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -3.14046
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -1.28167
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 3.15971
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -4.06119
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -1.49340
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 0.20080
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -10.12985
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -3.92436
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -7.56538
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -5.70659
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -1.26521
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula -0.20420
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 1.43412
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -11.10935
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -4.94190
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -8.58113
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -6.68241
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -2.27577
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula -2.67112
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -14.49842
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -8.29703
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -11.93786
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -10.07476
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -5.63713
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -16.32930
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -10.12272
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -13.76379
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -11.90614
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -7.46377
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 3.37936
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes -0.24273
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -0.64633
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 3.76164
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes -8.12126
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -7.77508
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -3.33289
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -4.08731
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 0.35327
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 1.68970
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## upper
## V_presentation3NONE - V_presentation3Defensive 4.75419
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 11.16895
## V_Producthardwaresupplies - V_Productcigarettes 5.78053
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -0.59511
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 1.40593
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 5.83085
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 9.10259
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 12.49166
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 14.32254
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 3.06637
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 10.19150
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 6.50391
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 7.40994
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 12.67196
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 8.88232
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 11.41074
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 14.76668
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 16.59249
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 5.37310
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 12.46164
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 8.77576
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 9.72019
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 14.94881
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 6.98582
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 10.34175
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 12.16757
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.94818
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 8.03672
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 4.35084
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 5.29527
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 10.52389
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 6.12793
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 8.00962
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -0.99696
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 6.12963
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 2.44197
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 3.34646
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 8.60983
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 6.19114
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -3.53162
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 3.56103
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -0.12504
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 0.81509
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 6.04745
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -5.22075
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1.86671
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -1.81912
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -0.87355
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 4.35408
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 9.91467
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 6.20987
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 9.41669
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 14.67872
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 0.79436
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 3.25140
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 8.47921
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 6.89053
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 12.11995
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 7.98030
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## Pr(>|t|)
## V_presentation3NONE - V_presentation3Defensive 0.0001265
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 0.0096285
## V_Producthardwaresupplies - V_Productcigarettes 0.6974027
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes 0.0276958
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 0.2659161
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 0.1185518
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.1165815
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 0.0123044
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 0.0020065
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.4376480
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.1012444
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.7287810
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.3536933
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 0.0096536
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 0.0516878
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.0367323
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 0.0034170
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 0.0005238
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.9531338
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.0336984
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.3536330
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.1325898
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 0.0026408
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.6034803
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 0.1426632
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 0.0428046
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.1041633
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.5000471
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 0.5966769
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.9415245
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 0.1236011
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 0.0666633
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 0.0049551
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 0.0190238
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 0.8332923
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 0.2746658
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 0.5139311
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.2537588
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 0.4357089
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 0.0012982
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 0.4333850
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 0.0453520
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 0.0955022
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.9450745
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 0.0001499
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 0.1769173
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 0.0106103
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 0.0232363
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.6057247
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 7.3e-05
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 0.0698405
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.0874988
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 0.0009530
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 0.1070737
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.4209381
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 0.3927869
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.6163842
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 0.0377638
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 0.0026468
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
##
## V_presentation3NONE - V_presentation3Defensive ***
## V_presentation3NONE - V_presentation3Prosocial
## V_presentation3Defensive - V_presentation3Prosocial
## V_Producthardwaresupplies - V_Productbabyformula **
## V_Producthardwaresupplies - V_Productcigarettes
## V_Producthardwaresupplies - V_Producttoiletpaper
## V_Productbabyformula - V_Productcigarettes *
## V_Productbabyformula - V_Producttoiletpaper
## V_Productcigarettes - V_Producttoiletpaper
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula *
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula **
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper **
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies .
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula *
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula **
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes *
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper **
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula *
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula .
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula **
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes *
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes **
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes *
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper .
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes *
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper *
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes .
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper .
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper *
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper **
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Confidence level: 95%
## Degrees of freedom method: Satterthwaite
mixed.lmer2 <- lmer(vignette_result ~ V_up + V_Product + V_Number + V_JudgeSelf + V_Questionnb + V_up:V_Product:V_presentation3 + (1|ID),
data = dff)
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
summary(mixed.lmer2)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: vignette_result ~ V_up + V_Product + V_Number + V_JudgeSelf +
## V_Questionnb + V_up:V_Product:V_presentation3 + (1 | ID)
## Data: dff
##
## REML criterion at convergence: 234827.2
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.3837 -0.5393 -0.0714 0.4716 5.1299
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 324.1 18.00
## Residual 324.6 18.02
## Number of obs: 26976, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error
## (Intercept) 2.873e+01 8.536e-01
## V_up -3.726e+00 5.344e-01
## V_Productbabyformula -2.315e+00 4.250e-01
## V_Productcigarettes 8.136e+00 4.250e-01
## V_Producttoiletpaper 5.076e+00 4.250e-01
## V_Number 5.072e-01 9.856e-02
## V_JudgeSelf -9.776e-01 2.194e-01
## V_QuestionnbMorallyWrong -4.105e+00 2.687e-01
## V_QuestionnbTransmitCovid -7.498e-01 2.687e-01
## V_up:V_Producthardwaresupplies:V_presentation3Defensive 8.577e+00 7.492e-01
## V_up:V_Productbabyformula:V_presentation3Defensive 6.514e+00 7.500e-01
## V_up:V_Productcigarettes:V_presentation3Defensive 2.374e+00 6.466e-01
## V_up:V_Producttoiletpaper:V_presentation3Defensive 3.971e+00 7.479e-01
## V_up:V_Producthardwaresupplies:V_presentation3Prosocial -1.275e+00 7.616e-01
## V_up:V_Productbabyformula:V_presentation3Prosocial 4.274e-01 7.608e-01
## df t value
## (Intercept) 1.035e+03 33.657
## V_up 2.643e+04 -6.973
## V_Productbabyformula 2.636e+04 -5.447
## V_Productcigarettes 2.636e+04 19.141
## V_Producttoiletpaper 2.636e+04 11.942
## V_Number 2.637e+04 5.146
## V_JudgeSelf 2.636e+04 -4.456
## V_QuestionnbMorallyWrong 2.636e+04 -15.276
## V_QuestionnbTransmitCovid 2.636e+04 -2.790
## V_up:V_Producthardwaresupplies:V_presentation3Defensive 2.641e+04 11.449
## V_up:V_Productbabyformula:V_presentation3Defensive 2.641e+04 8.686
## V_up:V_Productcigarettes:V_presentation3Defensive 2.654e+04 3.671
## V_up:V_Producttoiletpaper:V_presentation3Defensive 2.641e+04 5.310
## V_up:V_Producthardwaresupplies:V_presentation3Prosocial 2.645e+04 -1.674
## V_up:V_Productbabyformula:V_presentation3Prosocial 2.646e+04 0.562
## Pr(>|t|)
## (Intercept) < 2e-16 ***
## V_up 3.17e-12 ***
## V_Productbabyformula 5.17e-08 ***
## V_Productcigarettes < 2e-16 ***
## V_Producttoiletpaper < 2e-16 ***
## V_Number 2.68e-07 ***
## V_JudgeSelf 8.39e-06 ***
## V_QuestionnbMorallyWrong < 2e-16 ***
## V_QuestionnbTransmitCovid 0.005269 **
## V_up:V_Producthardwaresupplies:V_presentation3Defensive < 2e-16 ***
## V_up:V_Productbabyformula:V_presentation3Defensive < 2e-16 ***
## V_up:V_Productcigarettes:V_presentation3Defensive 0.000242 ***
## V_up:V_Producttoiletpaper:V_presentation3Defensive 1.11e-07 ***
## V_up:V_Producthardwaresupplies:V_presentation3Prosocial 0.094105 .
## V_up:V_Productbabyformula:V_presentation3Prosocial 0.574268
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation matrix not shown by default, as p = 15 > 12.
## Use print(x, correlation=TRUE) or
## vcov(x) if you need it
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
dff_q <- dff %>%
dplyr::select(-matches("vignette_name|V_Question$|^X$")) %>%
dplyr::select(-matches(".y$")) %>%
tidyr::spread(V_Questionnb, vignette_result)
lm(MorallyWrong ~ CatchCovid,data = dff_q) %>% summary()
##
## Call:
## lm(formula = MorallyWrong ~ CatchCovid, data = dff_q)
##
## Residuals:
## Min 1Q Median 3Q Max
## -61.909 -17.757 -9.004 15.985 90.035
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 9.96513 0.49369 20.18 <2e-16 ***
## CatchCovid 0.51944 0.01265 41.05 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 27.97 on 9582 degrees of freedom
## Multiple R-squared: 0.1496, Adjusted R-squared: 0.1495
## F-statistic: 1685 on 1 and 9582 DF, p-value: < 2.2e-16
lm(TransmitCovid ~ CatchCovid,data = dff_q) %>% summary()
##
## Call:
## lm(formula = TransmitCovid ~ CatchCovid, data = dff_q)
##
## Residuals:
## Min 1Q Median 3Q Max
## -92.787 -2.217 -0.144 2.498 87.820
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 2.217180 0.203874 10.88 <2e-16 ***
## CatchCovid 0.905702 0.005225 173.33 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 11.55 on 9582 degrees of freedom
## Multiple R-squared: 0.7582, Adjusted R-squared: 0.7582
## F-statistic: 3.004e+04 on 1 and 9582 DF, p-value: < 2.2e-16
ggplot(dff_q,aes(CatchCovid, MorallyWrong)) +
geom_point(color="grey") +
geom_smooth(method='lm') +
ggpubr::stat_regline_equation(label.y = 100, aes(label = ..eq.label..)) +
ggpubr::stat_regline_equation(label.y = 95, aes(label = ..rr.label..))
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(TransmitCovid, MorallyWrong)) +
geom_point(color="grey") +
geom_smooth(method='lm')+
ggpubr::stat_regline_equation(label.y = 100, aes(label = ..eq.label..)) +
ggpubr::stat_regline_equation(label.y = 95, aes(label = ..rr.label..))
## `geom_smooth()` using formula 'y ~ x'
formula <- y ~ x
dff_q %>%
mutate(V_Number=V_Number%>% as.factor()) %>%
ggplot(aes(CatchCovid, TransmitCovid, color=V_Number)) +
geom_point(alpha=.3, cex=.1) +
geom_smooth(method='lm')+
ggpubr::stat_regline_equation(aes(label = ..eq.label..))
## `geom_smooth()` using formula 'y ~ x'
mixed.lmer2 <- lmer(TransmitCovid ~ CatchCovid * V_Number + (1|ID),
data = dff_q)
summary(mixed.lmer2)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: TransmitCovid ~ CatchCovid * V_Number + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 70427.6
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -9.5097 -0.2478 -0.0108 0.2491 8.5941
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 77.67 8.813
## Residual 75.98 8.717
## Number of obs: 9584, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 9.031e+00 5.663e-01 2.336e+03 15.948 <2e-16 ***
## CatchCovid 6.960e-01 1.190e-02 9.569e+03 58.492 <2e-16 ***
## V_Number -1.969e-01 1.394e-01 8.939e+03 -1.412 0.158
## CatchCovid:V_Number 4.423e-03 3.603e-03 8.956e+03 1.228 0.220
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) CtchCv V_Nmbr
## CatchCovid -0.669
## V_Number -0.622 0.631
## CtchCvd:V_N 0.513 -0.768 -0.821
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=CONTINENT_BORN_TEXT_1)) +
geom_point(alpha=.3, cex=.1) +
geom_smooth(method='lm') +
ggpubr::stat_regline_equation(aes(label = ..eq.label..))
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=EXPGRP_TEXT)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=DOB_AGE_BRACKET)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=EDUCATION_2_TEXT)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=covqual_class_2)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
mutate(CovidSkepticism_ = CovidSkepticism %>% cut(c(-1,20,40, 60 ,80))),aes(x=CatchCovid, y=MorallyWrong, color=CovidSkepticism_)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
gather(BIG5_name,
BIG5_res,
dff_q %>% colnames() %>% str_detect("^AMBI_BIG5_") %>% which()) %>%
mutate(BIG5_res_ = BIG5_res %>% cut(c(-4,-1,1,4))),
aes(x=CatchCovid, y=MorallyWrong, color=BIG5_res_)) +
facet_wrap(~BIG5_name, ncol = 2) +
geom_point(size=0.1) +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
mutate(V_JudgeSelf_=V_JudgeSelf %>% as.factor),
aes(x=CatchCovid, y=MorallyWrong, color=V_JudgeSelf_)) +
facet_wrap(~EXPGRP_TEXT) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
mutate(V_up_=V_up %>% as.factor),
aes(x=CatchCovid, y=MorallyWrong, color=V_up_)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
mutate(V_up_=V_up %>% as.factor),
aes(x=CatchCovid, y=MorallyWrong, color=V_presentation3)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=V_Racenamef)) +
facet_wrap(~EXPGRP_TEXT) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=V_Product)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q,aes(x=CatchCovid, y=MorallyWrong, color=V_presentation3)) +
facet_wrap(~ V_Product) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
ggplot(dff_q %>%
mutate(V_Number_=V_Number %>% as.factor()),
aes(x=CatchCovid, y=MorallyWrong, color=V_Number_)) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
mixed.lmer <- lmer(MorallyWrong ~ CONTINENT_BORN_TEXT_1 + CatchCovid + (1|ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ CONTINENT_BORN_TEXT_1 + CatchCovid + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 87959.1
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.5563 -0.5022 -0.0985 0.3976 4.0928
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 286.2 16.92
## Residual 490.2 22.14
## Number of obs: 9584, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df
## (Intercept) 8.328e+00 1.102e+00 9.435e+02
## CONTINENT_BORN_TEXT_1Central Eastern Europe 5.700e+00 2.247e+00 5.950e+02
## CONTINENT_BORN_TEXT_1Developping Asia 1.571e+00 2.482e+00 5.951e+02
## CONTINENT_BORN_TEXT_1Western Europe 6.858e+00 1.996e+00 5.950e+02
## CatchCovid 5.065e-01 1.836e-02 5.915e+03
## t value Pr(>|t|)
## (Intercept) 7.555 9.91e-14 ***
## CONTINENT_BORN_TEXT_1Central Eastern Europe 2.537 0.011431 *
## CONTINENT_BORN_TEXT_1Developping Asia 0.633 0.526979
## CONTINENT_BORN_TEXT_1Western Europe 3.436 0.000632 ***
## CatchCovid 27.589 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) CONTEE CONTIA CONTIE
## CONTINENTEE -0.349
## CONTINENT_A -0.329 0.157
## CONTINENT_E -0.393 0.196 0.177
## CatchCovid -0.527 -0.010 0.015 -0.012
mixed.lmer <- lmer(MorallyWrong ~ CatchCovid + CONTINENT_BORN_TEXT_1 + EDUCATION_2_TEXT + DOB_AGE + EXPGRP_TEXT + (1|ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula:
## MorallyWrong ~ CatchCovid + CONTINENT_BORN_TEXT_1 + EDUCATION_2_TEXT +
## DOB_AGE + EXPGRP_TEXT + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 87936.5
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.5449 -0.4987 -0.1000 0.4035 4.0948
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 279.4 16.71
## Residual 490.2 22.14
## Number of obs: 9584, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df
## (Intercept) 15.07688 2.96775 632.89587
## CatchCovid 0.50144 0.01837 5907.14524
## CONTINENT_BORN_TEXT_1Central Eastern Europe 5.26480 2.49116 590.94579
## CONTINENT_BORN_TEXT_1Developping Asia -1.29043 2.78837 591.91878
## CONTINENT_BORN_TEXT_1Western Europe 7.21144 2.13056 591.18239
## EDUCATION_2_TEXTGraduate degree 0.20092 2.06370 590.94451
## EDUCATION_2_TEXTNo college degree -1.07777 1.67601 591.60331
## DOB_AGE -0.23119 0.07083 592.59376
## EXPGRP_TEXTChinese 2.40523 2.03328 592.07158
## t value Pr(>|t|)
## (Intercept) 5.080 4.97e-07 ***
## CatchCovid 27.299 < 2e-16 ***
## CONTINENT_BORN_TEXT_1Central Eastern Europe 2.113 0.03499 *
## CONTINENT_BORN_TEXT_1Developping Asia -0.463 0.64368
## CONTINENT_BORN_TEXT_1Western Europe 3.385 0.00076 ***
## EDUCATION_2_TEXTGraduate degree 0.097 0.92247
## EDUCATION_2_TEXTNo college degree -0.643 0.52044
## DOB_AGE -3.264 0.00116 **
## EXPGRP_TEXTChinese 1.183 0.23731
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) CtchCv CONTEE CONTIA CONTIE EDUCAd EDUCcd DOB_AG
## CatchCovid -0.212
## CONTINENTEE -0.360 -0.003
## CONTINENT_A 0.024 0.033 -0.020
## CONTINENT_E -0.352 -0.017 0.320 -0.004
## EDUCATION_d -0.163 -0.003 -0.026 -0.166 0.001
## EDUCATIONcd -0.383 -0.027 -0.182 0.023 -0.053 0.377
## DOB_AGE -0.859 0.043 0.269 -0.019 0.191 -0.058 0.161
## EXPGRP_TEXT -0.516 -0.036 0.354 -0.415 0.359 -0.005 0.039 0.362
mixed.lmer <- lmer(MorallyWrong ~ CatchCovid + CovidSkepticism + (1|ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ CatchCovid + CovidSkepticism + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 87988.8
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.5698 -0.5035 -0.1011 0.4030 4.1032
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 293.3 17.13
## Residual 490.2 22.14
## Number of obs: 9584, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.053e+01 1.424e+00 8.478e+02 7.398 3.34e-13 ***
## CatchCovid 5.073e-01 1.845e-02 6.108e+03 27.494 < 2e-16 ***
## CovidSkepticism -8.996e-03 5.070e-02 6.013e+02 -0.177 0.859
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) CtchCv
## CatchCovid -0.463
## CovdSkptcsm -0.751 0.070
mixed.lmer <- lmer(MorallyWrong ~ AMBI_BIG5_Neuroticism + AMBI_BIG5_Extraversion + AMBI_BIG5_Openness + AMBI_BIG5_Agreeableness + AMBI_BIG5_Conscientiousness + CatchCovid + (1|ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ AMBI_BIG5_Neuroticism + AMBI_BIG5_Extraversion +
## AMBI_BIG5_Openness + AMBI_BIG5_Agreeableness + AMBI_BIG5_Conscientiousness +
## CatchCovid + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 87963.7
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.5354 -0.5053 -0.1036 0.4040 4.1076
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 288.1 16.97
## Residual 490.2 22.14
## Number of obs: 9584, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 10.58700 0.93770 1191.11511 11.290 <2e-16
## AMBI_BIG5_Neuroticism 1.83385 0.95719 602.40255 1.916 0.0559
## AMBI_BIG5_Extraversion 0.90863 0.85389 593.73528 1.064 0.2877
## AMBI_BIG5_Openness -0.85710 0.81931 592.97240 -1.046 0.2959
## AMBI_BIG5_Agreeableness -1.46525 0.91590 593.19522 -1.600 0.1102
## AMBI_BIG5_Conscientiousness 0.27204 0.88921 593.03181 0.306 0.7598
## CatchCovid 0.50222 0.01848 6144.46603 27.173 <2e-16
##
## (Intercept) ***
## AMBI_BIG5_Neuroticism .
## AMBI_BIG5_Extraversion
## AMBI_BIG5_Openness
## AMBI_BIG5_Agreeableness
## AMBI_BIG5_Conscientiousness
## CatchCovid ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) AMBI_BIG5_N AMBI_BIG5_E AMBI_BIG5_O AMBI_BIG5_A AMBI_BIG5_C
## AMBI_BIG5_N 0.064
## AMBI_BIG5_E 0.018 0.255
## AMBI_BIG5_O -0.004 -0.218 -0.270
## AMBI_BIG5_A -0.015 0.378 -0.039 -0.296
## AMBI_BIG5_C 0.019 0.328 -0.167 -0.082 -0.156
## CatchCovid -0.628 -0.102 -0.030 0.006 -0.017 -0.010
mixed.lmer <- lmer(MorallyWrong ~ V_Racenamef + V_Age + V_JudgeSelf + V_Location + V_Framing + V_Timeperquestion + CatchCovid*V_presentation3*V_Product*V_Number + (1|ID),
data = dff_q )
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_Racenamef + V_Age + V_JudgeSelf + V_Location +
## V_Framing + V_Timeperquestion + CatchCovid * V_presentation3 *
## V_Product * V_Number + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 80455.6
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.1471 -0.5986 -0.0866 0.4789 4.2273
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 328.8 18.13
## Residual 376.0 19.39
## Number of obs: 8992, groups: ID, 599
##
## Fixed effects:
## Estimate
## (Intercept) 2.091e+00
## V_RacenamefB -1.237e+00
## V_RacenamefC -2.234e+00
## V_RacenamefI -7.548e-01
## V_Age -6.994e-03
## V_JudgeSelf 4.025e+00
## V_Locationanotherpartoftown 1.127e+00
## V_Locationinthecity 3.305e-01
## V_FramingExplain 1.151e+00
## V_FramingStrike up 2.729e+00
## V_FramingWave 1.153e+00
## V_Timeperquestion -4.741e-03
## CatchCovid 5.422e-01
## V_presentation3Defensive 1.380e+00
## V_presentation3Prosocial 2.807e+00
## V_Productbabyformula -6.421e-01
## V_Productcigarettes -1.727e+00
## V_Producttoiletpaper 1.758e+01
## V_Number 9.314e-01
## CatchCovid:V_presentation3Defensive 2.053e-01
## CatchCovid:V_presentation3Prosocial -3.917e-01
## CatchCovid:V_Productbabyformula -4.844e-02
## CatchCovid:V_Productcigarettes 7.997e-02
## CatchCovid:V_Producttoiletpaper -1.807e-01
## V_presentation3Defensive:V_Productbabyformula 8.162e+00
## V_presentation3Prosocial:V_Productbabyformula -8.227e+00
## V_presentation3Defensive:V_Productcigarettes 5.037e+00
## V_presentation3Prosocial:V_Productcigarettes -5.348e+00
## V_presentation3Defensive:V_Producttoiletpaper 8.654e-01
## CatchCovid:V_Number -5.363e-03
## V_presentation3Defensive:V_Number 3.401e+00
## V_presentation3Prosocial:V_Number -3.275e+00
## V_Productbabyformula:V_Number 5.050e-01
## V_Productcigarettes:V_Number 4.722e+00
## V_Producttoiletpaper:V_Number -9.459e-01
## CatchCovid:V_presentation3Defensive:V_Productbabyformula -3.747e-01
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 3.498e-01
## CatchCovid:V_presentation3Defensive:V_Productcigarettes -3.401e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 3.533e-01
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper -2.501e-01
## CatchCovid:V_presentation3Defensive:V_Number -4.928e-02
## CatchCovid:V_presentation3Prosocial:V_Number 6.896e-02
## CatchCovid:V_Productbabyformula:V_Number -5.664e-02
## CatchCovid:V_Productcigarettes:V_Number -3.446e-02
## CatchCovid:V_Producttoiletpaper:V_Number 4.243e-02
## V_presentation3Defensive:V_Productbabyformula:V_Number -2.500e+00
## V_presentation3Prosocial:V_Productbabyformula:V_Number 3.674e+00
## V_presentation3Defensive:V_Productcigarettes:V_Number -6.583e+00
## V_presentation3Prosocial:V_Productcigarettes:V_Number 3.250e+00
## V_presentation3Defensive:V_Producttoiletpaper:V_Number -3.206e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 8.031e-02
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number -7.419e-02
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 1.233e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number -7.573e-02
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 6.627e-02
## Std. Error
## (Intercept) 3.381e+00
## V_RacenamefB 5.853e-01
## V_RacenamefC 5.847e-01
## V_RacenamefI 5.847e-01
## V_Age 4.360e-02
## V_JudgeSelf 4.127e-01
## V_Locationanotherpartoftown 5.866e-01
## V_Locationinthecity 5.816e-01
## V_FramingExplain 6.603e-01
## V_FramingStrike up 6.688e-01
## V_FramingWave 6.726e-01
## V_Timeperquestion 1.895e-02
## CatchCovid 7.096e-02
## V_presentation3Defensive 4.606e+00
## V_presentation3Prosocial 4.233e+00
## V_Productbabyformula 3.786e+00
## V_Productcigarettes 3.924e+00
## V_Producttoiletpaper 3.725e+00
## V_Number 9.889e-01
## CatchCovid:V_presentation3Defensive 1.121e-01
## CatchCovid:V_presentation3Prosocial 1.103e-01
## CatchCovid:V_Productbabyformula 9.931e-02
## CatchCovid:V_Productcigarettes 9.530e-02
## CatchCovid:V_Producttoiletpaper 9.603e-02
## V_presentation3Defensive:V_Productbabyformula 6.109e+00
## V_presentation3Prosocial:V_Productbabyformula 5.892e+00
## V_presentation3Defensive:V_Productcigarettes 6.326e+00
## V_presentation3Prosocial:V_Productcigarettes 5.994e+00
## V_presentation3Defensive:V_Producttoiletpaper 6.056e+00
## CatchCovid:V_Number 2.571e-02
## V_presentation3Defensive:V_Number 1.684e+00
## V_presentation3Prosocial:V_Number 1.522e+00
## V_Productbabyformula:V_Number 1.373e+00
## V_Productcigarettes:V_Number 1.444e+00
## V_Producttoiletpaper:V_Number 1.360e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 1.606e-01
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 1.597e-01
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 1.536e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 1.512e-01
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 1.554e-01
## CatchCovid:V_presentation3Defensive:V_Number 4.184e-02
## CatchCovid:V_presentation3Prosocial:V_Number 4.119e-02
## CatchCovid:V_Productbabyformula:V_Number 3.633e-02
## CatchCovid:V_Productcigarettes:V_Number 3.511e-02
## CatchCovid:V_Producttoiletpaper:V_Number 3.538e-02
## V_presentation3Defensive:V_Productbabyformula:V_Number 2.203e+00
## V_presentation3Prosocial:V_Productbabyformula:V_Number 2.100e+00
## V_presentation3Defensive:V_Productcigarettes:V_Number 2.338e+00
## V_presentation3Prosocial:V_Productcigarettes:V_Number 2.180e+00
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 2.199e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 5.820e-02
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 5.808e-02
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 5.664e-02
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 5.521e-02
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 5.666e-02
## df
## (Intercept) 8.935e+03
## V_RacenamefB 8.353e+03
## V_RacenamefC 8.351e+03
## V_RacenamefI 8.351e+03
## V_Age 8.677e+03
## V_JudgeSelf 8.382e+03
## V_Locationanotherpartoftown 8.700e+03
## V_Locationinthecity 8.704e+03
## V_FramingExplain 8.692e+03
## V_FramingStrike up 8.694e+03
## V_FramingWave 8.699e+03
## V_Timeperquestion 8.455e+03
## CatchCovid 8.683e+03
## V_presentation3Defensive 8.416e+03
## V_presentation3Prosocial 8.399e+03
## V_Productbabyformula 8.600e+03
## V_Productcigarettes 8.585e+03
## V_Producttoiletpaper 8.561e+03
## V_Number 8.570e+03
## CatchCovid:V_presentation3Defensive 8.413e+03
## CatchCovid:V_presentation3Prosocial 8.401e+03
## CatchCovid:V_Productbabyformula 8.563e+03
## CatchCovid:V_Productcigarettes 8.571e+03
## CatchCovid:V_Producttoiletpaper 8.552e+03
## V_presentation3Defensive:V_Productbabyformula 8.395e+03
## V_presentation3Prosocial:V_Productbabyformula 8.392e+03
## V_presentation3Defensive:V_Productcigarettes 8.394e+03
## V_presentation3Prosocial:V_Productcigarettes 8.386e+03
## V_presentation3Defensive:V_Producttoiletpaper 8.396e+03
## CatchCovid:V_Number 8.556e+03
## V_presentation3Defensive:V_Number 8.419e+03
## V_presentation3Prosocial:V_Number 8.399e+03
## V_Productbabyformula:V_Number 8.639e+03
## V_Productcigarettes:V_Number 8.615e+03
## V_Producttoiletpaper:V_Number 8.595e+03
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 8.399e+03
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 8.395e+03
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 8.399e+03
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 8.396e+03
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 8.402e+03
## CatchCovid:V_presentation3Defensive:V_Number 8.414e+03
## CatchCovid:V_presentation3Prosocial:V_Number 8.404e+03
## CatchCovid:V_Productbabyformula:V_Number 8.595e+03
## CatchCovid:V_Productcigarettes:V_Number 8.606e+03
## CatchCovid:V_Producttoiletpaper:V_Number 8.590e+03
## V_presentation3Defensive:V_Productbabyformula:V_Number 8.386e+03
## V_presentation3Prosocial:V_Productbabyformula:V_Number 8.383e+03
## V_presentation3Defensive:V_Productcigarettes:V_Number 8.389e+03
## V_presentation3Prosocial:V_Productcigarettes:V_Number 8.383e+03
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 8.388e+03
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 8.392e+03
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 8.392e+03
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 8.391e+03
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 8.388e+03
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 8.391e+03
## t value
## (Intercept) 0.619
## V_RacenamefB -2.114
## V_RacenamefC -3.821
## V_RacenamefI -1.291
## V_Age -0.160
## V_JudgeSelf 9.752
## V_Locationanotherpartoftown 1.921
## V_Locationinthecity 0.568
## V_FramingExplain 1.743
## V_FramingStrike up 4.080
## V_FramingWave 1.714
## V_Timeperquestion -0.250
## CatchCovid 7.641
## V_presentation3Defensive 0.300
## V_presentation3Prosocial 0.663
## V_Productbabyformula -0.170
## V_Productcigarettes -0.440
## V_Producttoiletpaper 4.720
## V_Number 0.942
## CatchCovid:V_presentation3Defensive 1.831
## CatchCovid:V_presentation3Prosocial -3.551
## CatchCovid:V_Productbabyformula -0.488
## CatchCovid:V_Productcigarettes 0.839
## CatchCovid:V_Producttoiletpaper -1.881
## V_presentation3Defensive:V_Productbabyformula 1.336
## V_presentation3Prosocial:V_Productbabyformula -1.396
## V_presentation3Defensive:V_Productcigarettes 0.796
## V_presentation3Prosocial:V_Productcigarettes -0.892
## V_presentation3Defensive:V_Producttoiletpaper 0.143
## CatchCovid:V_Number -0.209
## V_presentation3Defensive:V_Number 2.020
## V_presentation3Prosocial:V_Number -2.152
## V_Productbabyformula:V_Number 0.368
## V_Productcigarettes:V_Number 3.269
## V_Producttoiletpaper:V_Number -0.695
## CatchCovid:V_presentation3Defensive:V_Productbabyformula -2.333
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 2.190
## CatchCovid:V_presentation3Defensive:V_Productcigarettes -2.215
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 2.336
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper -1.610
## CatchCovid:V_presentation3Defensive:V_Number -1.178
## CatchCovid:V_presentation3Prosocial:V_Number 1.674
## CatchCovid:V_Productbabyformula:V_Number -1.559
## CatchCovid:V_Productcigarettes:V_Number -0.982
## CatchCovid:V_Producttoiletpaper:V_Number 1.199
## V_presentation3Defensive:V_Productbabyformula:V_Number -1.135
## V_presentation3Prosocial:V_Productbabyformula:V_Number 1.749
## V_presentation3Defensive:V_Productcigarettes:V_Number -2.816
## V_presentation3Prosocial:V_Productcigarettes:V_Number 1.491
## V_presentation3Defensive:V_Producttoiletpaper:V_Number -1.458
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 1.380
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number -1.277
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 2.176
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number -1.371
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 1.169
## Pr(>|t|)
## (Intercept) 0.536243
## V_RacenamefB 0.034534 *
## V_RacenamefC 0.000134 ***
## V_RacenamefI 0.196809
## V_Age 0.872560
## V_JudgeSelf < 2e-16 ***
## V_Locationanotherpartoftown 0.054716 .
## V_Locationinthecity 0.569865
## V_FramingExplain 0.081376 .
## V_FramingStrike up 4.55e-05 ***
## V_FramingWave 0.086533 .
## V_Timeperquestion 0.802419
## CatchCovid 2.38e-14 ***
## V_presentation3Defensive 0.764493
## V_presentation3Prosocial 0.507367
## V_Productbabyformula 0.865339
## V_Productcigarettes 0.659810
## V_Producttoiletpaper 2.39e-06 ***
## V_Number 0.346313
## CatchCovid:V_presentation3Defensive 0.067093 .
## CatchCovid:V_presentation3Prosocial 0.000386 ***
## CatchCovid:V_Productbabyformula 0.625723
## CatchCovid:V_Productcigarettes 0.401427
## CatchCovid:V_Producttoiletpaper 0.059946 .
## V_presentation3Defensive:V_Productbabyformula 0.181507
## V_presentation3Prosocial:V_Productbabyformula 0.162635
## V_presentation3Defensive:V_Productcigarettes 0.425917
## V_presentation3Prosocial:V_Productcigarettes 0.372251
## V_presentation3Defensive:V_Producttoiletpaper 0.886369
## CatchCovid:V_Number 0.834778
## V_presentation3Defensive:V_Number 0.043458 *
## V_presentation3Prosocial:V_Number 0.031454 *
## V_Productbabyformula:V_Number 0.713001
## V_Productcigarettes:V_Number 0.001084 **
## V_Producttoiletpaper:V_Number 0.486917
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 0.019696 *
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 0.028540 *
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 0.026810 *
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 0.019527 *
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 0.107515
## CatchCovid:V_presentation3Defensive:V_Number 0.238950
## CatchCovid:V_presentation3Prosocial:V_Number 0.094123 .
## CatchCovid:V_Productbabyformula:V_Number 0.118998
## CatchCovid:V_Productcigarettes:V_Number 0.326285
## CatchCovid:V_Producttoiletpaper:V_Number 0.230435
## V_presentation3Defensive:V_Productbabyformula:V_Number 0.256494
## V_presentation3Prosocial:V_Productbabyformula:V_Number 0.080319 .
## V_presentation3Defensive:V_Productcigarettes:V_Number 0.004879 **
## V_presentation3Prosocial:V_Productcigarettes:V_Number 0.135994
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 0.144879
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 0.167678
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 0.201496
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 0.029572 *
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 0.170261
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 0.242238
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation matrix not shown by default, as p = 55 > 12.
## Use print(x, correlation=TRUE) or
## vcov(x) if you need it
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
mixed.lmer <- lmer(MorallyWrong ~ CovidSkepticism + CONTINENT_BORN_TEXT_1 + EDUCATION_2_TEXT + DOB_AGE + EXPGRP_TEXT*V_Racenamef + AMBI_BIG5_Neuroticism + AMBI_BIG5_Extraversion + AMBI_BIG5_Openness + AMBI_BIG5_Agreeableness + AMBI_BIG5_Conscientiousness + V_Age + V_JudgeSelf + V_Location + V_Framing + V_Timeperquestion + CatchCovid*V_presentation3*V_Product*V_Number + (1|ID),
data = dff_q )
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula:
## MorallyWrong ~ CovidSkepticism + CONTINENT_BORN_TEXT_1 + EDUCATION_2_TEXT +
## DOB_AGE + EXPGRP_TEXT * V_Racenamef + AMBI_BIG5_Neuroticism +
## AMBI_BIG5_Extraversion + AMBI_BIG5_Openness + AMBI_BIG5_Agreeableness +
## AMBI_BIG5_Conscientiousness + V_Age + V_JudgeSelf + V_Location +
## V_Framing + V_Timeperquestion + CatchCovid * V_presentation3 *
## V_Product * V_Number + (1 | ID)
## Data: dff_q
##
## REML criterion at convergence: 80383.4
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.1148 -0.6004 -0.0868 0.4772 4.2514
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 310.9 17.63
## Residual 376.0 19.39
## Number of obs: 8992, groups: ID, 599
##
## Fixed effects:
## Estimate
## (Intercept) 8.805e+00
## CovidSkepticism -8.468e-02
## CONTINENT_BORN_TEXT_1Central Eastern Europe 6.156e+00
## CONTINENT_BORN_TEXT_1Developping Asia -9.781e-01
## CONTINENT_BORN_TEXT_1Western Europe 7.350e+00
## EDUCATION_2_TEXTGraduate degree -8.083e-01
## EDUCATION_2_TEXTNo college degree -1.377e+00
## DOB_AGE -2.311e-01
## EXPGRP_TEXTChinese 2.433e+00
## V_RacenamefB -1.001e+00
## V_RacenamefC -1.914e+00
## V_RacenamefI -4.379e-01
## AMBI_BIG5_Neuroticism 1.697e+00
## AMBI_BIG5_Extraversion 3.559e-01
## AMBI_BIG5_Openness -1.115e+00
## AMBI_BIG5_Agreeableness -4.879e-01
## AMBI_BIG5_Conscientiousness 8.139e-01
## V_Age -4.250e-03
## V_JudgeSelf 4.001e+00
## V_Locationanotherpartoftown 1.172e+00
## V_Locationinthecity 3.265e-01
## V_FramingExplain 1.116e+00
## V_FramingStrike up 2.729e+00
## V_FramingWave 1.132e+00
## V_Timeperquestion -4.384e-03
## CatchCovid 5.313e-01
## V_presentation3Defensive 1.514e+00
## V_presentation3Prosocial 2.657e+00
## V_Productbabyformula -7.342e-01
## V_Productcigarettes -1.941e+00
## V_Producttoiletpaper 1.757e+01
## V_Number 9.170e-01
## EXPGRP_TEXTChinese:V_RacenamefB -7.173e-01
## EXPGRP_TEXTChinese:V_RacenamefC -9.845e-01
## EXPGRP_TEXTChinese:V_RacenamefI -9.729e-01
## CatchCovid:V_presentation3Defensive 2.038e-01
## CatchCovid:V_presentation3Prosocial -3.893e-01
## CatchCovid:V_Productbabyformula -4.542e-02
## CatchCovid:V_Productcigarettes 8.406e-02
## CatchCovid:V_Producttoiletpaper -1.822e-01
## V_presentation3Defensive:V_Productbabyformula 8.063e+00
## V_presentation3Prosocial:V_Productbabyformula -8.151e+00
## V_presentation3Defensive:V_Productcigarettes 5.082e+00
## V_presentation3Prosocial:V_Productcigarettes -5.372e+00
## V_presentation3Defensive:V_Producttoiletpaper 8.152e-01
## CatchCovid:V_Number -5.307e-03
## V_presentation3Defensive:V_Number 3.364e+00
## V_presentation3Prosocial:V_Number -3.244e+00
## V_Productbabyformula:V_Number 5.188e-01
## V_Productcigarettes:V_Number 4.786e+00
## V_Producttoiletpaper:V_Number -9.512e-01
## CatchCovid:V_presentation3Defensive:V_Productbabyformula -3.730e-01
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 3.471e-01
## CatchCovid:V_presentation3Defensive:V_Productcigarettes -3.438e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 3.542e-01
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper -2.489e-01
## CatchCovid:V_presentation3Defensive:V_Number -4.890e-02
## CatchCovid:V_presentation3Prosocial:V_Number 6.860e-02
## CatchCovid:V_Productbabyformula:V_Number -5.718e-02
## CatchCovid:V_Productcigarettes:V_Number -3.488e-02
## CatchCovid:V_Producttoiletpaper:V_Number 4.345e-02
## V_presentation3Defensive:V_Productbabyformula:V_Number -2.479e+00
## V_presentation3Prosocial:V_Productbabyformula:V_Number 3.669e+00
## V_presentation3Defensive:V_Productcigarettes:V_Number -6.606e+00
## V_presentation3Prosocial:V_Productcigarettes:V_Number 3.285e+00
## V_presentation3Defensive:V_Producttoiletpaper:V_Number -3.209e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 7.976e-02
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number -7.367e-02
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 1.244e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number -7.685e-02
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 6.624e-02
## Std. Error
## (Intercept) 4.715e+00
## CovidSkepticism 5.792e-02
## CONTINENT_BORN_TEXT_1Central Eastern Europe 2.719e+00
## CONTINENT_BORN_TEXT_1Developping Asia 2.926e+00
## CONTINENT_BORN_TEXT_1Western Europe 2.246e+00
## EDUCATION_2_TEXTGraduate degree 2.170e+00
## EDUCATION_2_TEXTNo college degree 1.779e+00
## DOB_AGE 7.812e-02
## EXPGRP_TEXTChinese 2.350e+00
## V_RacenamefB 7.113e-01
## V_RacenamefC 7.126e-01
## V_RacenamefI 7.124e-01
## AMBI_BIG5_Neuroticism 1.016e+00
## AMBI_BIG5_Extraversion 9.123e-01
## AMBI_BIG5_Openness 8.846e-01
## AMBI_BIG5_Agreeableness 9.996e-01
## AMBI_BIG5_Conscientiousness 9.556e-01
## V_Age 4.360e-02
## V_JudgeSelf 4.128e-01
## V_Locationanotherpartoftown 5.870e-01
## V_Locationinthecity 5.818e-01
## V_FramingExplain 6.603e-01
## V_FramingStrike up 6.694e-01
## V_FramingWave 6.730e-01
## V_Timeperquestion 1.895e-02
## CatchCovid 7.098e-02
## V_presentation3Defensive 4.606e+00
## V_presentation3Prosocial 4.233e+00
## V_Productbabyformula 3.788e+00
## V_Productcigarettes 3.926e+00
## V_Producttoiletpaper 3.725e+00
## V_Number 9.893e-01
## EXPGRP_TEXTChinese:V_RacenamefB 1.247e+00
## EXPGRP_TEXTChinese:V_RacenamefC 1.248e+00
## EXPGRP_TEXTChinese:V_RacenamefI 1.249e+00
## CatchCovid:V_presentation3Defensive 1.121e-01
## CatchCovid:V_presentation3Prosocial 1.103e-01
## CatchCovid:V_Productbabyformula 9.932e-02
## CatchCovid:V_Productcigarettes 9.532e-02
## CatchCovid:V_Producttoiletpaper 9.603e-02
## V_presentation3Defensive:V_Productbabyformula 6.109e+00
## V_presentation3Prosocial:V_Productbabyformula 5.893e+00
## V_presentation3Defensive:V_Productcigarettes 6.327e+00
## V_presentation3Prosocial:V_Productcigarettes 5.994e+00
## V_presentation3Defensive:V_Producttoiletpaper 6.057e+00
## CatchCovid:V_Number 2.572e-02
## V_presentation3Defensive:V_Number 1.684e+00
## V_presentation3Prosocial:V_Number 1.522e+00
## V_Productbabyformula:V_Number 1.374e+00
## V_Productcigarettes:V_Number 1.445e+00
## V_Producttoiletpaper:V_Number 1.360e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 1.607e-01
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 1.597e-01
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 1.536e-01
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 1.513e-01
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 1.554e-01
## CatchCovid:V_presentation3Defensive:V_Number 4.184e-02
## CatchCovid:V_presentation3Prosocial:V_Number 4.119e-02
## CatchCovid:V_Productbabyformula:V_Number 3.633e-02
## CatchCovid:V_Productcigarettes:V_Number 3.512e-02
## CatchCovid:V_Producttoiletpaper:V_Number 3.538e-02
## V_presentation3Defensive:V_Productbabyformula:V_Number 2.204e+00
## V_presentation3Prosocial:V_Productbabyformula:V_Number 2.101e+00
## V_presentation3Defensive:V_Productcigarettes:V_Number 2.338e+00
## V_presentation3Prosocial:V_Productcigarettes:V_Number 2.180e+00
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 2.199e+00
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 5.822e-02
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 5.808e-02
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 5.665e-02
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 5.522e-02
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 5.668e-02
## df
## (Intercept) 2.018e+03
## CovidSkepticism 5.868e+02
## CONTINENT_BORN_TEXT_1Central Eastern Europe 5.828e+02
## CONTINENT_BORN_TEXT_1Developping Asia 5.833e+02
## CONTINENT_BORN_TEXT_1Western Europe 5.822e+02
## EDUCATION_2_TEXTGraduate degree 5.828e+02
## EDUCATION_2_TEXTNo college degree 5.825e+02
## DOB_AGE 5.834e+02
## EXPGRP_TEXTChinese 7.294e+02
## V_RacenamefB 8.350e+03
## V_RacenamefC 8.350e+03
## V_RacenamefI 8.350e+03
## AMBI_BIG5_Neuroticism 5.892e+02
## AMBI_BIG5_Extraversion 5.832e+02
## AMBI_BIG5_Openness 5.836e+02
## AMBI_BIG5_Agreeableness 5.824e+02
## AMBI_BIG5_Conscientiousness 5.831e+02
## V_Age 8.679e+03
## V_JudgeSelf 8.380e+03
## V_Locationanotherpartoftown 8.705e+03
## V_Locationinthecity 8.712e+03
## V_FramingExplain 8.698e+03
## V_FramingStrike up 8.700e+03
## V_FramingWave 8.703e+03
## V_Timeperquestion 8.453e+03
## CatchCovid 8.676e+03
## V_presentation3Defensive 8.417e+03
## V_presentation3Prosocial 8.399e+03
## V_Productbabyformula 8.601e+03
## V_Productcigarettes 8.590e+03
## V_Producttoiletpaper 8.564e+03
## V_Number 8.573e+03
## EXPGRP_TEXTChinese:V_RacenamefB 8.350e+03
## EXPGRP_TEXTChinese:V_RacenamefC 8.350e+03
## EXPGRP_TEXTChinese:V_RacenamefI 8.350e+03
## CatchCovid:V_presentation3Defensive 8.414e+03
## CatchCovid:V_presentation3Prosocial 8.401e+03
## CatchCovid:V_Productbabyformula 8.565e+03
## CatchCovid:V_Productcigarettes 8.572e+03
## CatchCovid:V_Producttoiletpaper 8.554e+03
## V_presentation3Defensive:V_Productbabyformula 8.395e+03
## V_presentation3Prosocial:V_Productbabyformula 8.393e+03
## V_presentation3Defensive:V_Productcigarettes 8.394e+03
## V_presentation3Prosocial:V_Productcigarettes 8.386e+03
## V_presentation3Defensive:V_Producttoiletpaper 8.396e+03
## CatchCovid:V_Number 8.558e+03
## V_presentation3Defensive:V_Number 8.421e+03
## V_presentation3Prosocial:V_Number 8.399e+03
## V_Productbabyformula:V_Number 8.640e+03
## V_Productcigarettes:V_Number 8.620e+03
## V_Producttoiletpaper:V_Number 8.598e+03
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 8.399e+03
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 8.396e+03
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 8.400e+03
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 8.397e+03
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 8.402e+03
## CatchCovid:V_presentation3Defensive:V_Number 8.414e+03
## CatchCovid:V_presentation3Prosocial:V_Number 8.405e+03
## CatchCovid:V_Productbabyformula:V_Number 8.596e+03
## CatchCovid:V_Productcigarettes:V_Number 8.607e+03
## CatchCovid:V_Producttoiletpaper:V_Number 8.593e+03
## V_presentation3Defensive:V_Productbabyformula:V_Number 8.386e+03
## V_presentation3Prosocial:V_Productbabyformula:V_Number 8.384e+03
## V_presentation3Defensive:V_Productcigarettes:V_Number 8.389e+03
## V_presentation3Prosocial:V_Productcigarettes:V_Number 8.383e+03
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 8.388e+03
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 8.391e+03
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 8.392e+03
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 8.391e+03
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 8.389e+03
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 8.392e+03
## t value
## (Intercept) 1.867
## CovidSkepticism -1.462
## CONTINENT_BORN_TEXT_1Central Eastern Europe 2.264
## CONTINENT_BORN_TEXT_1Developping Asia -0.334
## CONTINENT_BORN_TEXT_1Western Europe 3.273
## EDUCATION_2_TEXTGraduate degree -0.373
## EDUCATION_2_TEXTNo college degree -0.774
## DOB_AGE -2.958
## EXPGRP_TEXTChinese 1.035
## V_RacenamefB -1.407
## V_RacenamefC -2.686
## V_RacenamefI -0.615
## AMBI_BIG5_Neuroticism 1.670
## AMBI_BIG5_Extraversion 0.390
## AMBI_BIG5_Openness -1.260
## AMBI_BIG5_Agreeableness -0.488
## AMBI_BIG5_Conscientiousness 0.852
## V_Age -0.097
## V_JudgeSelf 9.694
## V_Locationanotherpartoftown 1.997
## V_Locationinthecity 0.561
## V_FramingExplain 1.691
## V_FramingStrike up 4.076
## V_FramingWave 1.682
## V_Timeperquestion -0.231
## CatchCovid 7.485
## V_presentation3Defensive 0.329
## V_presentation3Prosocial 0.628
## V_Productbabyformula -0.194
## V_Productcigarettes -0.494
## V_Producttoiletpaper 4.716
## V_Number 0.927
## EXPGRP_TEXTChinese:V_RacenamefB -0.575
## EXPGRP_TEXTChinese:V_RacenamefC -0.789
## EXPGRP_TEXTChinese:V_RacenamefI -0.779
## CatchCovid:V_presentation3Defensive 1.818
## CatchCovid:V_presentation3Prosocial -3.529
## CatchCovid:V_Productbabyformula -0.457
## CatchCovid:V_Productcigarettes 0.882
## CatchCovid:V_Producttoiletpaper -1.898
## V_presentation3Defensive:V_Productbabyformula 1.320
## V_presentation3Prosocial:V_Productbabyformula -1.383
## V_presentation3Defensive:V_Productcigarettes 0.803
## V_presentation3Prosocial:V_Productcigarettes -0.896
## V_presentation3Defensive:V_Producttoiletpaper 0.135
## CatchCovid:V_Number -0.206
## V_presentation3Defensive:V_Number 1.997
## V_presentation3Prosocial:V_Number -2.131
## V_Productbabyformula:V_Number 0.378
## V_Productcigarettes:V_Number 3.312
## V_Producttoiletpaper:V_Number -0.699
## CatchCovid:V_presentation3Defensive:V_Productbabyformula -2.322
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 2.173
## CatchCovid:V_presentation3Defensive:V_Productcigarettes -2.238
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 2.342
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper -1.601
## CatchCovid:V_presentation3Defensive:V_Number -1.169
## CatchCovid:V_presentation3Prosocial:V_Number 1.665
## CatchCovid:V_Productbabyformula:V_Number -1.574
## CatchCovid:V_Productcigarettes:V_Number -0.993
## CatchCovid:V_Producttoiletpaper:V_Number 1.228
## V_presentation3Defensive:V_Productbabyformula:V_Number -1.125
## V_presentation3Prosocial:V_Productbabyformula:V_Number 1.746
## V_presentation3Defensive:V_Productcigarettes:V_Number -2.825
## V_presentation3Prosocial:V_Productcigarettes:V_Number 1.507
## V_presentation3Defensive:V_Producttoiletpaper:V_Number -1.459
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 1.370
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number -1.268
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 2.196
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number -1.392
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 1.169
## Pr(>|t|)
## (Intercept) 0.061995 .
## CovidSkepticism 0.144248
## CONTINENT_BORN_TEXT_1Central Eastern Europe 0.023936 *
## CONTINENT_BORN_TEXT_1Developping Asia 0.738275
## CONTINENT_BORN_TEXT_1Western Europe 0.001128 **
## EDUCATION_2_TEXTGraduate degree 0.709626
## EDUCATION_2_TEXTNo college degree 0.439195
## DOB_AGE 0.003218 **
## EXPGRP_TEXTChinese 0.300805
## V_RacenamefB 0.159573
## V_RacenamefC 0.007245 **
## V_RacenamefI 0.538766
## AMBI_BIG5_Neuroticism 0.095536 .
## AMBI_BIG5_Extraversion 0.696551
## AMBI_BIG5_Openness 0.208066
## AMBI_BIG5_Agreeableness 0.625710
## AMBI_BIG5_Conscientiousness 0.394728
## V_Age 0.922341
## V_JudgeSelf < 2e-16 ***
## V_Locationanotherpartoftown 0.045879 *
## V_Locationinthecity 0.574610
## V_FramingExplain 0.090919 .
## V_FramingStrike up 4.61e-05 ***
## V_FramingWave 0.092525 .
## V_Timeperquestion 0.817035
## CatchCovid 7.88e-14 ***
## V_presentation3Defensive 0.742458
## V_presentation3Prosocial 0.530303
## V_Productbabyformula 0.846322
## V_Productcigarettes 0.621074
## V_Producttoiletpaper 2.44e-06 ***
## V_Number 0.354005
## EXPGRP_TEXTChinese:V_RacenamefB 0.565014
## EXPGRP_TEXTChinese:V_RacenamefC 0.430385
## EXPGRP_TEXTChinese:V_RacenamefI 0.436130
## CatchCovid:V_presentation3Defensive 0.069112 .
## CatchCovid:V_presentation3Prosocial 0.000420 ***
## CatchCovid:V_Productbabyformula 0.647466
## CatchCovid:V_Productcigarettes 0.377875
## CatchCovid:V_Producttoiletpaper 0.057764 .
## V_presentation3Defensive:V_Productbabyformula 0.186933
## V_presentation3Prosocial:V_Productbabyformula 0.166641
## V_presentation3Defensive:V_Productcigarettes 0.421888
## V_presentation3Prosocial:V_Productcigarettes 0.370179
## V_presentation3Defensive:V_Producttoiletpaper 0.892946
## CatchCovid:V_Number 0.836516
## V_presentation3Defensive:V_Number 0.045813 *
## V_presentation3Prosocial:V_Number 0.033097 *
## V_Productbabyformula:V_Number 0.705722
## V_Productcigarettes:V_Number 0.000931 ***
## V_Producttoiletpaper:V_Number 0.484450
## CatchCovid:V_presentation3Defensive:V_Productbabyformula 0.020276 *
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula 0.029802 *
## CatchCovid:V_presentation3Defensive:V_Productcigarettes 0.025245 *
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes 0.019214 *
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper 0.109351
## CatchCovid:V_presentation3Defensive:V_Number 0.242533
## CatchCovid:V_presentation3Prosocial:V_Number 0.095887 .
## CatchCovid:V_Productbabyformula:V_Number 0.115565
## CatchCovid:V_Productcigarettes:V_Number 0.320640
## CatchCovid:V_Producttoiletpaper:V_Number 0.219404
## V_presentation3Defensive:V_Productbabyformula:V_Number 0.260646
## V_presentation3Prosocial:V_Productbabyformula:V_Number 0.080778 .
## V_presentation3Defensive:V_Productcigarettes:V_Number 0.004736 **
## V_presentation3Prosocial:V_Productcigarettes:V_Number 0.131930
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 0.144486
## CatchCovid:V_presentation3Defensive:V_Productbabyformula:V_Number 0.170714
## CatchCovid:V_presentation3Prosocial:V_Productbabyformula:V_Number 0.204713
## CatchCovid:V_presentation3Defensive:V_Productcigarettes:V_Number 0.028091 *
## CatchCovid:V_presentation3Prosocial:V_Productcigarettes:V_Number 0.164059
## CatchCovid:V_presentation3Defensive:V_Producttoiletpaper:V_Number 0.242589
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation matrix not shown by default, as p = 71 > 12.
## Use print(x, correlation=TRUE) or
## vcov(x) if you need it
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
difflsmeans(mixed.lmer)
## Least Squares Means table:
##
## Estimate
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe -6.155853
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 0.978145
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe -7.349575
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 7.133998
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe -1.193721
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe -8.327720
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese -1.764247
## V_RacenamefW - V_RacenamefB 1.359196
## V_RacenamefW - V_RacenamefC 2.406186
## V_RacenamefW - V_RacenamefI 0.924367
## V_RacenamefB - V_RacenamefC 1.046990
## V_RacenamefB - V_RacenamefI -0.434828
## V_RacenamefC - V_RacenamefI -1.481818
## V_Locationnearby - V_Locationanotherpartoftown -1.172177
## V_Locationnearby - V_Locationinthecity -0.326535
## V_Locationanotherpartoftown - V_Locationinthecity 0.845643
## V_FramingAnticipating - V_FramingExplain -1.116329
## V_FramingAnticipating - V_FramingStrike up -2.728723
## V_FramingAnticipating - V_FramingWave -1.132309
## V_FramingExplain - V_FramingStrike up -1.612393
## V_FramingExplain - V_FramingWave -0.015980
## V_FramingStrike up - V_FramingWave 1.596414
## V_presentation3NONE - V_presentation3Defensive -6.019396
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 4.556655
## V_Producthardwaresupplies - V_Productcigarettes -8.432174
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -12.988829
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW -2.432921
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 1.000538
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB -0.715067
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 1.913942
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 0.465509
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 0.437922
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI -1.022108
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 3.433458
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 1.717854
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 4.346862
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 2.898430
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 2.870842
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 1.410813
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB -1.715604
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 0.913404
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC -0.535029
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI -0.562616
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -2.022645
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 2.629009
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 1.180576
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 1.152989
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -0.307041
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC -1.448433
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -1.476020
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -2.936050
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -0.027587
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -1.487617
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI -1.460030
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -12.508463
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 12.353946
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 5.407115
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -3.466975
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 11.575309
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -9.930980
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -9.965665
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -5.554393
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -12.858383
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -15.518731
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 24.862408
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 17.915577
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 9.041488
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 24.083772
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 2.577483
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 2.542798
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 6.954069
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -0.349920
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -3.010269
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -6.946831
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -15.820921
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula -0.778636
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -22.284926
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -22.319610
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -17.908339
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -25.212328
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -27.872677
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula -8.874090
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 6.168195
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -15.338095
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -15.372779
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -10.961508
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -18.265497
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -20.925846
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 15.042284
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -6.464005
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -6.498690
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -2.087418
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -9.391408
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -12.051756
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -21.506289
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -21.540974
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -17.129702
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -24.433692
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -27.094041
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes -0.034684
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 4.376587
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -2.927403
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -5.587751
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 4.411271
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -2.892718
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -5.553067
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -7.303990
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -9.964338
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper -2.660349
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## Std. Error
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe 2.718924
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 2.925965
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe 2.245652
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 4.067874
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe 2.895484
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe 3.724137
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese 2.221024
## V_RacenamefW - V_RacenamefB 0.625033
## V_RacenamefW - V_RacenamefC 0.623680
## V_RacenamefW - V_RacenamefI 0.623959
## V_RacenamefB - V_RacenamefC 0.622727
## V_RacenamefB - V_RacenamefI 0.623573
## V_RacenamefC - V_RacenamefI 0.624645
## V_Locationnearby - V_Locationanotherpartoftown 0.587029
## V_Locationnearby - V_Locationinthecity 0.581752
## V_Locationanotherpartoftown - V_Locationinthecity 0.579974
## V_FramingAnticipating - V_FramingExplain 0.660255
## V_FramingAnticipating - V_FramingStrike up 0.669386
## V_FramingAnticipating - V_FramingWave 0.673028
## V_FramingExplain - V_FramingStrike up 0.665404
## V_FramingExplain - V_FramingWave 0.665540
## V_FramingStrike up - V_FramingWave 0.682286
## V_presentation3NONE - V_presentation3Defensive 0.490386
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 0.596986
## V_Producthardwaresupplies - V_Productcigarettes 0.603686
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes 0.605981
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW 2.349641
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 0.711299
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 2.348984
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 0.712556
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 2.349410
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 0.712409
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 2.347461
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 2.350138
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 1.025842
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 2.349694
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 1.024463
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 2.349036
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 1.025393
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB 2.348551
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 0.710725
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 2.349227
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 0.711223
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 2.347246
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 2.348789
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 1.023412
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 2.348830
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 1.023741
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC 2.349751
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 0.712985
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 2.348108
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 2.348684
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 1.026240
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI 2.347208
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 0.998825
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 1.005323
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.796418
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1.006872
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1.001078
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.811052
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1.011013
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1.001455
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.795067
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 0.994038
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 1.213022
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 0.999287
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1.186126
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1.155383
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 1.010411
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1.189863
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1.154893
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.998246
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1.175740
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 1.006461
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 1.166624
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1.187291
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 1.020078
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 1.171169
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1.189178
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 1.005792
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 1.155375
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 1.006135
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 0.999973
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 0.811990
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1.011111
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 1.002126
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 0.795172
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 0.994248
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 1.214380
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 1.019810
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1.198570
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 1.161605
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 1.006259
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 1.182085
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 1.016458
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 1.166185
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 1.186119
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 1.000405
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 1.151828
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 1.014962
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 1.006989
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.807209
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 1.005490
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 1.214837
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 1.008437
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 1.183829
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.999203
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 1.152645
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 0.991924
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## df
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe 582.8
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 583.3
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe 582.2
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 583.1
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe 582.3
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe 582.9
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese 583.0
## V_RacenamefW - V_RacenamefB 8354.5
## V_RacenamefW - V_RacenamefC 8350.1
## V_RacenamefW - V_RacenamefI 8349.6
## V_RacenamefB - V_RacenamefC 8351.8
## V_RacenamefB - V_RacenamefI 8350.8
## V_RacenamefC - V_RacenamefI 8350.7
## V_Locationnearby - V_Locationanotherpartoftown 8705.4
## V_Locationnearby - V_Locationinthecity 8711.7
## V_Locationanotherpartoftown - V_Locationinthecity 8702.7
## V_FramingAnticipating - V_FramingExplain 8698.0
## V_FramingAnticipating - V_FramingStrike up 8700.2
## V_FramingAnticipating - V_FramingWave 8702.6
## V_FramingExplain - V_FramingStrike up 8690.9
## V_FramingExplain - V_FramingWave 8678.0
## V_FramingStrike up - V_FramingWave 8707.1
## V_presentation3NONE - V_presentation3Defensive 8337.9
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 8343.0
## V_Producthardwaresupplies - V_Productcigarettes 8404.0
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes 8441.5
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW 729.4
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 8349.6
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 728.6
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 8349.8
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 729.0
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 8349.9
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 726.7
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 729.9
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 8353.8
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 729.4
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 8350.5
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 728.6
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 8349.8
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB 728.0
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 8349.1
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 728.7
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 8349.3
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 726.4
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 728.3
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 8352.7
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 728.4
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 8349.6
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC 729.4
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 8352.1
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 727.4
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 728.1
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 8350.1
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI 726.4
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies 8406.2
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 8407.1
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 8336.7
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 8409.9
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 8415.1
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 8395.9
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 8426.9
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 8416.8
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 8337.6
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 8399.7
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 8521.3
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 8407.9
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 8469.9
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 8414.0
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 8437.4
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 8479.7
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 8411.2
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 8406.8
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 8461.4
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 8407.6
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 8408.8
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 8471.4
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 8454.6
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 8429.2
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 8480.0
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 8412.3
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 8404.8
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula 8408.7
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 8410.3
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 8410.4
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 8433.9
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 8421.9
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 8340.5
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 8399.9
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 8525.6
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 8458.5
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 8494.6
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 8417.2
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 8414.2
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 8464.2
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 8478.1
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 8440.8
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 8493.3
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper 8420.9
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper 8410.2
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 8409.2
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 8413.3
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 8377.0
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 8433.3
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 8522.2
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 8419.2
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 8470.0
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 8411.0
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 8414.2
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 8399.3
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## t value
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe -2.2641
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 0.3343
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe -3.2728
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 1.7537
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe -0.4123
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe -2.2361
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese -0.7943
## V_RacenamefW - V_RacenamefB 2.1746
## V_RacenamefW - V_RacenamefC 3.8580
## V_RacenamefW - V_RacenamefI 1.4815
## V_RacenamefB - V_RacenamefC 1.6813
## V_RacenamefB - V_RacenamefI -0.6973
## V_RacenamefC - V_RacenamefI -2.3723
## V_Locationnearby - V_Locationanotherpartoftown -1.9968
## V_Locationnearby - V_Locationinthecity -0.5613
## V_Locationanotherpartoftown - V_Locationinthecity 1.4581
## V_FramingAnticipating - V_FramingExplain -1.6908
## V_FramingAnticipating - V_FramingStrike up -4.0765
## V_FramingAnticipating - V_FramingWave -1.6824
## V_FramingExplain - V_FramingStrike up -2.4232
## V_FramingExplain - V_FramingWave -0.0240
## V_FramingStrike up - V_FramingWave 2.3398
## V_presentation3NONE - V_presentation3Defensive -12.2748
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 7.6328
## V_Producthardwaresupplies - V_Productcigarettes -13.9678
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -21.4344
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW -1.0354
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 1.4066
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB -0.3044
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 2.6860
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 0.1981
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 0.6147
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI -0.4354
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 1.4610
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 1.6746
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 1.8500
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 2.8292
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 1.2221
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 1.3759
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB -0.7305
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 1.2852
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC -0.2277
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI -0.7911
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -0.8617
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 1.1193
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 1.1536
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 0.4909
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -0.2999
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC -0.6164
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -2.0702
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -1.2504
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -0.0117
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -1.4496
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI -0.6220
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -12.5232
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 12.2885
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 6.7893
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -3.4433
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 11.5628
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -12.2446
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -9.8571
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -5.5463
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -16.1727
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -15.6118
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 20.4963
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 17.9284
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 7.6227
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 20.8448
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 2.5509
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 2.1371
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 6.0214
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -0.3505
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -2.5603
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -6.9022
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -13.5613
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula -0.6558
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -21.8463
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -19.0575
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -15.0594
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -25.0671
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -24.1244
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula -8.8200
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 6.1684
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -18.8895
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -15.2039
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -10.9383
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -22.9705
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -21.0469
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 12.3868
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -6.3384
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -5.4220
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -1.7970
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -9.3330
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -10.1953
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -21.1581
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -18.4713
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -14.4418
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -24.4238
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -23.5226
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes -0.0342
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 4.3462
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -3.6266
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -5.5572
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 3.6312
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -2.8685
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -4.6908
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -7.3098
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -8.6448
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper -2.6820
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## lower
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe -11.495937
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia -4.768565
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe -11.760141
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia -0.855474
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe -6.880586
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe -15.642082
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese -6.126431
## V_RacenamefW - V_RacenamefB 0.133976
## V_RacenamefW - V_RacenamefC 1.183619
## V_RacenamefW - V_RacenamefI -0.298747
## V_RacenamefB - V_RacenamefC -0.173710
## V_RacenamefB - V_RacenamefI -1.657187
## V_RacenamefC - V_RacenamefI -2.706278
## V_Locationnearby - V_Locationanotherpartoftown -2.322894
## V_Locationnearby - V_Locationinthecity -1.466905
## V_Locationanotherpartoftown - V_Locationinthecity -0.291244
## V_FramingAnticipating - V_FramingExplain -2.410585
## V_FramingAnticipating - V_FramingStrike up -4.040878
## V_FramingAnticipating - V_FramingWave -2.451602
## V_FramingExplain - V_FramingStrike up -2.916742
## V_FramingExplain - V_FramingWave -1.320597
## V_FramingStrike up - V_FramingWave 0.258971
## V_presentation3NONE - V_presentation3Defensive -6.980675
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 3.386415
## V_Producthardwaresupplies - V_Productcigarettes -9.615547
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -14.176700
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW -7.045787
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB -0.393785
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB -5.326651
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 0.517155
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC -4.146907
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI -0.958577
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI -5.630722
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB -1.180377
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB -0.293051
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC -0.266107
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 0.890228
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI -1.740844
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI -0.599212
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB -6.326345
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC -0.479793
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC -5.147088
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI -1.956790
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -6.630842
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC -1.982196
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC -0.825566
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI -3.458296
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI -2.313828
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC -6.061515
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -2.873648
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -7.545928
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -4.638587
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI -3.499302
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI -6.068152
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -14.466405
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 10.383265
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 3.845938
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -5.440693
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 9.612950
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -11.520841
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -11.947498
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -7.517490
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -14.416911
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -17.467291
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 22.484591
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 15.956729
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 6.716392
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 21.818937
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.596828
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.210377
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 4.690196
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -2.306728
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -5.315006
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -8.919742
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -18.107791
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula -3.106017
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -24.284528
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -24.615389
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -20.239418
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -27.183929
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -30.137496
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula -10.846361
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 4.208002
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -16.929795
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -17.354804
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -12.925921
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -19.824231
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -22.874816
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 12.661806
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -8.463082
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -8.848178
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -4.364450
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -11.363923
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -14.368932
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -23.498796
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -23.826981
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -19.454784
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -26.394731
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -29.351907
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes -2.024259
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 2.402641
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -4.509733
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -7.558757
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 2.029896
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -4.869503
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -7.873661
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -9.262674
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -12.223805
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper -4.604764
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## upper
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe -0.815770
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 6.724855
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe -2.939009
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 15.123470
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe 4.493143
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe -1.013358
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese 2.597937
## V_RacenamefW - V_RacenamefB 2.584415
## V_RacenamefW - V_RacenamefC 3.628753
## V_RacenamefW - V_RacenamefI 2.147482
## V_RacenamefB - V_RacenamefC 2.267690
## V_RacenamefB - V_RacenamefI 0.787530
## V_RacenamefC - V_RacenamefI -0.257359
## V_Locationnearby - V_Locationanotherpartoftown -0.021461
## V_Locationnearby - V_Locationinthecity 0.813836
## V_Locationanotherpartoftown - V_Locationinthecity 1.982529
## V_FramingAnticipating - V_FramingExplain 0.177926
## V_FramingAnticipating - V_FramingStrike up -1.416567
## V_FramingAnticipating - V_FramingWave 0.186984
## V_FramingExplain - V_FramingStrike up -0.308044
## V_FramingExplain - V_FramingWave 1.288638
## V_FramingStrike up - V_FramingWave 2.933856
## V_presentation3NONE - V_presentation3Defensive -5.058117
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 5.726896
## V_Producthardwaresupplies - V_Productcigarettes -7.248800
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes -11.800958
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW 2.179946
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 2.394860
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 3.896518
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 3.310729
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 5.077925
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 1.834420
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 3.586507
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 8.047294
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 3.728758
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 8.959832
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 4.906632
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 7.482528
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 3.420838
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB 2.895136
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 2.306601
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 4.077031
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 0.831559
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 2.585552
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 7.240214
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 3.186718
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 5.764273
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 1.699746
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC 3.164649
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI -0.078392
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 1.673828
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 4.583412
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 0.524068
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI 3.148093
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies -10.550520
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 14.324626
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 6.968291
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -1.493257
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 13.537669
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -8.341119
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -7.983831
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -3.591296
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -11.299855
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -13.570171
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies 27.240225
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 19.874425
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 11.366584
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 26.348607
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 4.558137
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 4.875220
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 9.217943
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 1.606888
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -0.705531
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula -4.973920
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula -13.534050
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 1.548744
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes -20.285324
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes -20.023831
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes -15.577260
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper -23.240728
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper -25.607858
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula -6.901818
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 8.128387
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -13.746395
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -13.390755
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -8.997095
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -16.706763
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -18.976876
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 17.422762
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -4.464928
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -4.149202
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 0.189614
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -7.418892
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -9.734581
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes -19.513783
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes -19.254966
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes -14.804621
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper -22.472653
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper -24.836174
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 1.954890
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 6.350533
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -1.345073
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -3.616745
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 6.792647
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -0.915933
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -3.232473
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper -5.345305
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper -7.704871
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper -0.715933
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## Pr(>|t|)
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe 0.0239361
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia 0.7382747
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe 0.0011279
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia 0.0800003
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe 0.6802932
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe 0.0257197
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese 0.4273212
## V_RacenamefW - V_RacenamefB 0.0296882
## V_RacenamefW - V_RacenamefC 0.0001152
## V_RacenamefW - V_RacenamefI 0.1385231
## V_RacenamefB - V_RacenamefC 0.0927424
## V_RacenamefB - V_RacenamefI 0.4856237
## V_RacenamefC - V_RacenamefI 0.0177024
## V_Locationnearby - V_Locationanotherpartoftown 0.0458786
## V_Locationnearby - V_Locationinthecity 0.5746104
## V_Locationanotherpartoftown - V_Locationinthecity 0.1448574
## V_FramingAnticipating - V_FramingExplain 0.0909194
## V_FramingAnticipating - V_FramingStrike up 4.613e-05
## V_FramingAnticipating - V_FramingWave 0.0925250
## V_FramingExplain - V_FramingStrike up 0.0154056
## V_FramingExplain - V_FramingWave 0.9808452
## V_FramingStrike up - V_FramingWave 0.0193165
## V_presentation3NONE - V_presentation3Defensive < 2.2e-16
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## V_Producthardwaresupplies - V_Productbabyformula 2.551e-14
## V_Producthardwaresupplies - V_Productcigarettes < 2.2e-16
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Productbabyformula - V_Productcigarettes < 2.2e-16
## V_Productbabyformula - V_Producttoiletpaper NA
## V_Productcigarettes - V_Producttoiletpaper NA
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW 0.3008050
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 0.1595730
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 0.7608984
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 0.0072451
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 0.8429918
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 0.5387660
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 0.6633942
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB 0.1444566
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB 0.0940542
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC 0.0647222
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC 0.0046773
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI 0.2220512
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI 0.1688972
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB 0.4653228
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 0.1987675
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 0.8199071
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 0.4289352
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 0.3891316
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC 0.2633795
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC 0.2487102
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI 0.6236607
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI 0.7642453
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC 0.5378099
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 0.0384645
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 0.2115594
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI 0.9906316
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI 0.1472132
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI 0.5341186
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 1.204e-11
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 0.0005774
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 3.006e-08
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies < 2.2e-16
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula < 2.2e-16
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula 2.753e-14
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula < 2.2e-16
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes 0.0107613
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes 0.0326224
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes 1.802e-09
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper 0.7259461
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper 0.0104748
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula 5.490e-12
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula 0.5119647
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula 7.219e-10
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula < 2.2e-16
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes 2.440e-10
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes 6.054e-08
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes 0.0723696
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper < 2.2e-16
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes < 2.2e-16
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper < 2.2e-16
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes 0.9727399
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 1.401e-05
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.0002889
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.824e-08
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes 0.0002838
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 0.0041343
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper 2.764e-06
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper 2.920e-13
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper < 2.2e-16
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper 0.0073325
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper NA
##
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Central Eastern Europe *
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Developping Asia
## CONTINENT_BORN_TEXT_1USA - CONTINENT_BORN_TEXT_1Western Europe **
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Developping Asia .
## CONTINENT_BORN_TEXT_1Central Eastern Europe - CONTINENT_BORN_TEXT_1Western Europe
## CONTINENT_BORN_TEXT_1Developping Asia - CONTINENT_BORN_TEXT_1Western Europe *
## EXPGRP_TEXTWhite - EXPGRP_TEXTChinese
## V_RacenamefW - V_RacenamefB *
## V_RacenamefW - V_RacenamefC ***
## V_RacenamefW - V_RacenamefI
## V_RacenamefB - V_RacenamefC .
## V_RacenamefB - V_RacenamefI
## V_RacenamefC - V_RacenamefI *
## V_Locationnearby - V_Locationanotherpartoftown *
## V_Locationnearby - V_Locationinthecity
## V_Locationanotherpartoftown - V_Locationinthecity
## V_FramingAnticipating - V_FramingExplain .
## V_FramingAnticipating - V_FramingStrike up ***
## V_FramingAnticipating - V_FramingWave .
## V_FramingExplain - V_FramingStrike up *
## V_FramingExplain - V_FramingWave
## V_FramingStrike up - V_FramingWave *
## V_presentation3NONE - V_presentation3Defensive ***
## V_presentation3NONE - V_presentation3Prosocial
## V_presentation3Defensive - V_presentation3Prosocial
## V_Producthardwaresupplies - V_Productbabyformula ***
## V_Producthardwaresupplies - V_Productcigarettes ***
## V_Producthardwaresupplies - V_Producttoiletpaper
## V_Productbabyformula - V_Productcigarettes ***
## V_Productbabyformula - V_Producttoiletpaper
## V_Productcigarettes - V_Producttoiletpaper
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefW
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC **
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI
## EXPGRP_TEXTWhite:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefB
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefB .
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefC .
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefC **
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTWhite:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefW - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefB
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI
## EXPGRP_TEXTWhite:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefC
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefC
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTWhite:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefB - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefC
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI *
## EXPGRP_TEXTWhite:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTWhite:V_RacenamefI
## EXPGRP_TEXTChinese:V_RacenamefC - EXPGRP_TEXTChinese:V_RacenamefI
## EXPGRP_TEXTWhite:V_RacenamefI - EXPGRP_TEXTChinese:V_RacenamefI
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producthardwaresupplies ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3NONE:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producthardwaresupplies ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes *
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes *
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper *
## V_presentation3Defensive:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productbabyformula ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productbabyformula ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productbabyformula
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Producthardwaresupplies - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productbabyformula ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3NONE:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productbabyformula ***
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes .
## V_presentation3Defensive:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3Defensive:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Productcigarettes ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Productcigarettes ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Productbabyformula - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Productcigarettes
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3NONE:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3NONE:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3NONE:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Productcigarettes ***
## V_presentation3Defensive:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper **
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3Defensive:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3NONE:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Defensive:V_Producttoiletpaper ***
## V_presentation3Prosocial:V_Productcigarettes - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Defensive:V_Producttoiletpaper **
## V_presentation3NONE:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper
## V_presentation3Defensive:V_Producttoiletpaper - V_presentation3Prosocial:V_Producttoiletpaper
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Confidence level: 95%
## Degrees of freedom method: Satterthwaite
write.csv(dff_q, file="./data/mjolnir_databaseforModel.csv")
readr::write_csv(dff_q, file.path("./data/mjolnir_databaseforModel.csv.gz"))
save(dff_q, file=file.path("./data/mjolnir_databaseforModel.rdata.gz"))
dff_q <- read.csv("./data/mjolnir_databaseforModel.csv")
mixed.lmer <- lmer(MorallyWrong ~ V_presentation3 + (1|V_JudgeSelf/ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_presentation3 + (1 | V_JudgeSelf/ID)
## Data: dff_q
##
## REML criterion at convergence: 83580.3
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9387 -0.5273 -0.1735 0.4346 4.2989
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID:V_JudgeSelf (Intercept) 420.890 20.516
## V_JudgeSelf (Intercept) 3.405 1.845
## Residual 487.685 22.084
## Number of obs: 8992, groups: ID:V_JudgeSelf, 1198; V_JudgeSelf, 2
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 34.1995 1.5025 1.1464 22.76 0.0183 *
## V_presentation3NONE -5.9689 0.5526 7790.1821 -10.80 <2e-16 ***
## V_presentation3Prosocial -17.2562 0.6922 7817.2504 -24.93 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) V_3NON
## V_prsn3NONE -0.245
## V_prsnttn3P -0.196 0.532
dff_q <- dff_q %>%
mutate(vnMorallyWrong = MorallyWrong^car::powerTransform(MorallyWrong+0.000000001)$lambda)
dff_q %>%
dplyr::select(vnMorallyWrong) %>%
ggplot(aes(x=vnMorallyWrong)) +
geom_histogram(binwidth=0.05,color="black", fill="white")
dff_q %>%
dplyr::select(MorallyWrong) %>%
ggplot(aes(x=MorallyWrong)) +
geom_histogram(binwidth=1,color="black", fill="white")
dff_q$MorallyWrong %>% cut(c(0,10,50,100), include.lowest = T) %>% freq
## n % val%
## [0,10] 4603 48.0 48.0
## (10,50] 2925 30.5 30.5
## (50,100] 2056 21.5 21.5
dff_q <- dff_q %>%
mutate(RaceContResp=case_when(EXPGRP_TEXT=="Chinese" ~ "Chinese",
EXPGRP_TEXT=="White" & dff_q$CONTINENT_BORN_TEXT_1 == "USA"~ "WhiteAmerican",
EXPGRP_TEXT=="White" & dff_q$CONTINENT_BORN_TEXT_1 != "USA" ~ "NonAmWhite") %>%
as.factor())
dff_q <- dff_q %>%
mutate(EXPGRP_TEXT= ifelse(str_detect(RaceContResp, "White"), "White", "Chinese") %>%
as.factor())
dff_q$EXPGRP_TEXT %>% freq
## n % val%
## Chinese 3120 32.6 32.6
## White 6464 67.4 67.4
dff_q <- dff_q %>%
mutate(V_Racenamef = case_when(V_Racename_EXPGRP_Product_Presentation %>% str_detect("^W_") ~ "White",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^B_") ~ "Black",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^C_") ~ "Chinese",
V_Racename_EXPGRP_Product_Presentation%>% str_detect("^I_") ~ "Indian")) %>%
dplyr::select(-vnMorallyWrong)
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "babyformula")
dff_q$V_Racenamef <- relevel(dff_q$V_Racenamef %>% as.factor, "White")
dff_q$V_Location <- dff_q$V_Location %>% as.factor()
dff_q$V_StoreType <- dff_q$V_StoreType %>% as.factor()
dff_q$V_Framing <- dff_q$V_Framing %>% as.factor()
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a")
## Warning: To compile a LaTeX document with this table, the following commands must be placed in the document preamble:
##
## \usepackage{booktabs}
## \usepackage{siunitx}
## \newcolumntype{d}{S[input-symbols = ()]}
##
## To disable `siunitx` and prevent `modelsummary` from wrapping numeric entries in `\num{}`, call:
##
## options("modelsummary_format_numeric_latex" = "plain")
## This warning appears once per session.
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-2")
dff_q$V_ProductMor <- ifelse(dff_q$V_Product %in% c("babyformula", "hardwaresupplies"), "MorallyCondonable", "MorallyQuestionable")
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-3")
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette)
k <- c()
for (i in colnames(dff_q2)) {
if(is.na(dff_q2[2,i])|is.na(dff_q2[1,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q2[2,i] != dff_q2[1,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "V_Racename"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_Timeperquestionqual"
## [1] "CatchCovid_other"
## [1] "CatchCovid_self"
## [1] "MorallyWrong_other"
## [1] "MorallyWrong_self"
## [1] "TransmitCovid_other"
## [1] "TransmitCovid_self"
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
dplyr::select(-k[1:(length(k)-6)]) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette) %>%
mutate(MWOther_Self = MorallyWrong_other-MorallyWrong_self,
CCOther_Self = CatchCovid_other-CatchCovid_self,
TCOther_Self = TransmitCovid_other-TransmitCovid_self)
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-2")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-3")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + V_Age+ V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType+ (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + V_Product*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-2")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-3")
mixed.lmers <- list(
"Other~Self" = lmer(MorallyWrong_other ~ MorallyWrong_self + (1|ID),
data = dff_q2),
"AllProd" = lmer(MorallyWrong_other ~ MorallyWrong_self + V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"AllProdCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2level" = lmer(MorallyWrong_other ~ MorallyWrong_self + V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2levelCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2c")
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3)) {
if(is.na(dff_q3[1,i])|is.na(dff_q3[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3[1,i] != dff_q3[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3$V_Presentation <- relevel(dff_q3$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-2")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + V_Presentation*V_ProductMor*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-3")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3_self)) {
if(is.na(dff_q3_self[1,i])|is.na(dff_q3_self[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3_self[1,i] != dff_q3_self[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3_self$V_Presentation <- relevel(dff_q3_self$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"CC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC A path" = lmer(TCPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"TC C path" = lmer(MWPre_Post ~ V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self))
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 16 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3b")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a")
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + RaceContResp*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-2")
dff_q$V_ProductMor <- ifelse(dff_q$V_Product %in% c("babyformula", "hardwaresupplies"), "MorallyCondonable", "MorallyQuestionable")
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + RaceContResp*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-3")
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette)
k <- c()
for (i in colnames(dff_q2)) {
if(is.na(dff_q2[2,i])|is.na(dff_q2[1,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q2[2,i] != dff_q2[1,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "V_Racename"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_Timeperquestionqual"
## [1] "CatchCovid_other"
## [1] "CatchCovid_self"
## [1] "MorallyWrong_other"
## [1] "MorallyWrong_self"
## [1] "TransmitCovid_other"
## [1] "TransmitCovid_self"
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
dplyr::select(-k[1:(length(k)-6)]) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette) %>%
mutate(MWOther_Self = MorallyWrong_other-MorallyWrong_self,
CCOther_Self = CatchCovid_other-CatchCovid_self,
TCOther_Self = TransmitCovid_other-TransmitCovid_self)
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-2")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + RaceContResp*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + RaceContResp*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-3")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age+ V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType+ (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + RaceContResp*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ RaceContResp*CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-2")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-3")
mixed.lmers <- list(
"Other~Self" = lmer(MorallyWrong_other ~ MorallyWrong_self + (1|ID),
data = dff_q2),
"AllProd" = lmer(MorallyWrong_other ~ MorallyWrong_self + RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"AllProdCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * RaceContResp*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2level" = lmer(MorallyWrong_other ~ MorallyWrong_self + RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2levelCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * RaceContResp*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2c")
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3)) {
if(is.na(dff_q3[1,i])|is.na(dff_q3[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3[1,i] != dff_q3[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3$V_Presentation <- relevel(dff_q3$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-2")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ RaceContResp*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ RaceContResp*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_ProductMor*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 12 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-3")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3_self)) {
if(is.na(dff_q3_self[1,i])|is.na(dff_q3_self[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3_self[1,i] != dff_q3_self[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3_self$V_Presentation <- relevel(dff_q3_self$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"CC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC A path" = lmer(TCPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"TC C path" = lmer(MWPre_Post ~ RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + RaceContResp*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self))
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 48 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3b")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
dff_q <- dff_q %>%
mutate(V_Racenamef = case_when(V_Racename_EXPGRP_Product_Presentation %>% str_detect("^W_") ~ "White",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^B_") ~ "Black",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^C_") ~ "Chinese",
V_Racename_EXPGRP_Product_Presentation%>% str_detect("^I_") ~ "Indian"))
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "babyformula")
dff_q$V_Racenamef <- relevel(dff_q$V_Racenamef %>% as.factor, "White")
dff_q$V_Location <- dff_q$V_Location %>% as.factor()
dff_q$V_StoreType <- dff_q$V_StoreType %>% as.factor()
dff_q$V_Framing <- dff_q$V_Framing %>% as.factor()
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a")
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ EXPGRP_TEXT*MorallyWrong + V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-2")
dff_q$V_ProductMor <- ifelse(dff_q$V_Product %in% c("babyformula", "hardwaresupplies"), "MorallyCondonable", "MorallyQuestionable")
mixed.lmers <- list(
"CC A path" = lmer(CatchCovid ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC B path" = lmer(CatchCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC C' path" = lmer(CatchCovid ~ MorallyWrong + EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC A path" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC B path" = lmer(TransmitCovid ~ MorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C path" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC C' path" = lmer(TransmitCovid ~ MorallyWrong + EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H1a-3")
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette)
k <- c()
for (i in colnames(dff_q2)) {
if(is.na(dff_q2[2,i])|is.na(dff_q2[1,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q2[2,i] != dff_q2[1,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "V_Racename"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_Timeperquestionqual"
## [1] "CatchCovid_other"
## [1] "CatchCovid_self"
## [1] "MorallyWrong_other"
## [1] "MorallyWrong_self"
## [1] "TransmitCovid_other"
## [1] "TransmitCovid_self"
dff_q2 <- dff_q %>%
mutate(V_JudgeSelf = ifelse(V_JudgeSelf==1, "self", "other")) %>%
dplyr::select(-k[1:(length(k)-6)]) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Self, Question, V_JudgeSelf) %>%
spread(Question_Self, Vignette) %>%
mutate(MWOther_Self = MorallyWrong_other-MorallyWrong_self,
CCOther_Self = CatchCovid_other-CatchCovid_self,
TCOther_Self = TransmitCovid_other-TransmitCovid_self)
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-2")
mixed.lmers <- list(
"CC A path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC B path" = lmer(CCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"CC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age+ (1|ID),
data = dff_q2),
"CC C' path" = lmer(CCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC A path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC B path" = lmer(TCOther_Self ~ MWOther_Self + (1|ID),
data = dff_q2),
"TC C path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2),
"TC C' path" = lmer(TCOther_Self ~ MWOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + V_Age + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2a-3")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age+ V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType+ (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-2")
mixed.lmers <- list(
"MW A path" = lmer(MWOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW B1 path" = lmer(MWOther_Self ~ CCOther_Self + (1|ID),
data = dff_q2),
"MW B2 path" = lmer(MWOther_Self ~ TCOther_Self + (1|ID),
data = dff_q2),
"MW B3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self+ (1|ID),
data = dff_q2),
"MW B4 path" = lmer(MWOther_Self ~ EXPGRP_TEXT*CCOther_Self*TCOther_Self + (1|ID),
data = dff_q2),
"MW C1 path" = lmer(CCOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C2 path" = lmer(TCOther_Self ~ EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'1 path" = lmer(MWOther_Self ~ CCOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'2 path" = lmer(MWOther_Self ~ TCOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'3 path" = lmer(MWOther_Self ~ CCOther_Self + TCOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"MW C'4 path" = lmer(MWOther_Self ~ CCOther_Self*TCOther_Self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2b-3")
mixed.lmers <- list(
"Other~Self" = lmer(MorallyWrong_other ~ MorallyWrong_self + (1|ID),
data = dff_q2),
"AllProd" = lmer(MorallyWrong_other ~ MorallyWrong_self + EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"AllProdCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * EXPGRP_TEXT*V_Product*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2level" = lmer(MorallyWrong_other ~ MorallyWrong_self + EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2),
"Prod2levelCross" = lmer(MorallyWrong_other ~ MorallyWrong_self * EXPGRP_TEXT*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q2))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H2c")
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3)) {
if(is.na(dff_q3[1,i])|is.na(dff_q3[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3[1,i] != dff_q3[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3 <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3$V_Presentation <- relevel(dff_q3$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-2")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"CC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC A path" = lmer(TCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3),
"TC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef + (1|ID),
data = dff_q3),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_ProductMor*V_Racenamef +(1|ID),
data = dff_q3))
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),title = "Model H3a-3")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette)
k <- c()
for (i in colnames(dff_q3_self)) {
if(is.na(dff_q3_self[1,i])|is.na(dff_q3_self[5,i])){
print(i)
k <- c(k,i)
}else{
if(dff_q3_self[1,i] != dff_q3_self[5,i]){
print(i)
k <- c(k,i)
}
}
}
## [1] "X"
## [1] "RecipientLastName"
## [1] "RecipientFirstName"
## [1] "RecipientEmail"
## [1] "ExternalReference"
## [1] "CHIN_SPECIFIC"
## [1] "NONASIA_SPECIFIC"
## [1] "NONASIA_SPECIFIC_19_TEXT"
## [1] "NonWNonA_Specific"
## [1] "NonWNonA_Specific_7_TEXT"
## [1] "NonWNonA_Specific_14_TEXT"
## [1] "COVSCRN02_P"
## [1] "COVSCRN03"
## [1] "COVSCRN04"
## [1] "COVSCRN04_1_TEXT"
## [1] "COVSCRN05"
## [1] "COVSCRN05_1_TEXT"
## [1] "COVSCRN02_N"
## [1] "DEB3_1"
## [1] "DEB3_2"
## [1] "DEB3_3"
## [1] "DEB3_4"
## [1] "DEB3_6"
## [1] "DEB3_7"
## [1] "DEB3_8"
## [1] "DEB3_10"
## [1] "DEB3_11"
## [1] "DEB3_12"
## [1] "Q_BallotBoxStuffing"
## [1] "Q_RelevantIDDuplicate"
## [1] "Q_RelevantIDDuplicateScore"
## [1] "Q_RelevantIDFraudScore"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Parent.Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topics"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label"
## [1] "OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score"
## [1] "CHIN_SPECIFIC_TEXT"
## [1] "IDD"
## [1] "V_Racename"
## [1] "V_Update"
## [1] "V_FirstClick"
## [1] "V_LastClick"
## [1] "V_Timepersection"
## [1] "V_Timeperquestion"
## [1] "V_presentation2"
## [1] "V_presentation3"
## [1] "CatchCovid_Post"
## [1] "CatchCovid_Pre"
## [1] "MorallyWrong_Post"
## [1] "MorallyWrong_Pre"
## [1] "TransmitCovid_Post"
## [1] "TransmitCovid_Pre"
dff_q3_self <- dff_q %>%
filter(V_JudgeSelf==0) %>%
dplyr::select(-k[1:(length(k)-6)], -V_Timeperquestionqual) %>%
mutate(V_up=ifelse(V_up==1, "Post", "Pre")) %>%
gather(Question, Vignette, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
unite(Question_Update, Question, V_up) %>%
spread(Question_Update, Vignette) %>%
mutate(CCPre_Post=CatchCovid_Pre-CatchCovid_Post,
TCPre_Post=TransmitCovid_Pre-TransmitCovid_Post,
MWPre_Post=MorallyWrong_Pre-MorallyWrong_Post)
dff_q3_self$V_Presentation <- relevel(dff_q3_self$V_Presentation %>% as.factor, "Prosocial")
mixed.lmers <- list(
"CC A path" = lmer(CCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC B path" = lmer(CCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"CC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"CC C' path" = lmer(CCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC A path" = lmer(TCPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC B path" = lmer(TCPre_Post ~ MWPre_Post + (1|ID),
data = dff_q3_self),
"TC C path" = lmer(MWPre_Post ~ EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self),
"TC C' path" = lmer(TCPre_Post ~ MWPre_Post + EXPGRP_TEXT*V_Presentation*V_Product*V_Racenamef + V_Age + V_Location + V_StoreType + (1|ID),
data = dff_q3_self))
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
## boundary (singular) fit: see help('isSingular')
## fixed-effect model matrix is rank deficient so dropping 32 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", notes = c("Estimate [95ConfInterval]", "t, [std.error]","p.value, [df.error]"),
title = "Model H3b")
## Random effect variances not available. Returned R2 does not account for random effects.
## Random effect variances not available. Returned R2 does not account for random effects.
difflmeansmodelcomp <- function(listlmermodels){
l_r <- map(listlmermodels, difflsmeans)
l_r <- map(names(l_r), function(x){
df_r2 <- l_r[[x]] %>%
mutate(p = `Pr(>|t|)`,
star = case_when(p < 0.001 ~ "***",
p < 0.01 ~ "**",
p < 0.05 ~ "*",
p < 0.1 ~ ".",
TRUE ~ ""),
res = paste0(round(Estimate,2), star),
comparison = rownames(l_r[[x]])) %>%
dplyr::select(comparison, res) %>%
as_tibble()
colnames(df_r2) <- c("comparison", x)
return(df_r2)
})
df_r <- purrr::reduce(l_r, full_join) %>% as.data.frame()
rownames(df_r) <- df_r$comparison
df_r <- df_r %>% dplyr::select(-comparison)
return(df_r)
}
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "hardwaresupplies")
dff_q$V_Location <- dff_q$V_Location %>% as.factor()
dff_q$V_StoreType <- dff_q$V_StoreType %>% as.factor()
dff_q$V_Framing <- dff_q$V_Framing %>% as.factor()
mixed.lmers <- list(
"MW Number" = lmer(MorallyWrong ~ V_Number + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"MW Age" = lmer(MorallyWrong ~ V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"MW Location" = lmer(MorallyWrong ~ V_Location + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"MW Store Type" = lmer(MorallyWrong ~ V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"MW Framing" = lmer(MorallyWrong ~ V_Framing + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC Number" = lmer(CatchCovid ~ V_Number + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC Age" = lmer(CatchCovid ~ V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC Location" = lmer(CatchCovid ~ V_Location + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC Store Type" = lmer(CatchCovid ~ V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CC Framing" = lmer(CatchCovid ~ V_Framing + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC Number" = lmer(TransmitCovid ~ V_Number + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC Age" = lmer(TransmitCovid ~ V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC Location" = lmer(TransmitCovid ~ V_Location + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC Store Type" = lmer(TransmitCovid ~ V_StoreType + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TC Framing" = lmer(TransmitCovid ~ V_Framing + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", title = "Model 1, Product without update")
get_estimates(mixed.lmers[[1]])
## term estimate std.error conf.level conf.low conf.high
## 1 (Intercept) 23.120200 1.3754075 0.95 20.4230864 25.817314
## 2 V_Number 1.451753 0.4045519 0.95 0.6584444 2.245061
## 3 SD (Intercept ID) 19.947513 NA 0.95 NA NA
## 4 SD (Observations) 22.139745 NA 0.95 NA NA
## statistic df.error p.value effect group
## 1 16.809709 2392 5.039532e-60 fixed
## 2 3.588546 2392 3.392081e-04 fixed
## 3 NA NA NA random ID
## 4 NA NA NA random Residual
mixed.lmers[["MW Number"]] %>% summary()
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_Number + (1 | ID)
## Data: dff_q %>% filter(V_JudgeSelf == 0, V_up == 0)
##
## REML criterion at convergence: 22504.7
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.7761 -0.4527 -0.2122 0.4121 3.4673
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 397.9 19.95
## Residual 490.2 22.14
## Number of obs: 2396, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 23.1202 1.3754 1939.7088 16.810 < 2e-16 ***
## V_Number 1.4518 0.4046 1796.0000 3.589 0.000341 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_Number -0.735
mixed.lmers[["MW Number"]] %>% confint()
## Computing profile confidence intervals ...
## 2.5 % 97.5 %
## .sig01 18.4880153 21.474131
## .sigma 21.4292145 22.877402
## (Intercept) 20.4245577 25.815843
## V_Number 0.6586426 2.244863
mixed.lmers[["CC Number"]] %>% summary()
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: CatchCovid ~ V_Number + (1 | ID)
## Data: dff_q %>% filter(V_JudgeSelf == 0, V_up == 0)
##
## REML criterion at convergence: 20091.2
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.7286 -0.3358 -0.0694 0.2350 4.9007
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 376.8 19.41
## Residual 138.3 11.76
## Number of obs: 2396, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 35.5125 0.9876 1139.0874 35.959 < 2e-16 ***
## V_Number -0.7122 0.2149 1796.0001 -3.315 0.000936 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_Number -0.544
mixed.lmers[["CC Number"]] %>% confint()
## Computing profile confidence intervals ...
## 2.5 % 97.5 %
## .sig01 18.245066 20.6506991
## .sigma 11.381450 12.1506093
## (Intercept) 33.576548 37.4484941
## V_Number -1.133422 -0.2909515
mixed.lmers[["TC Number"]] %>% summary()
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: TransmitCovid ~ V_Number + (1 | ID)
## Data: dff_q %>% filter(V_JudgeSelf == 0, V_up == 0)
##
## REML criterion at convergence: 20071.8
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.1185 -0.3212 -0.0481 0.2241 4.7599
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 416.7 20.41
## Residual 132.8 11.52
## Number of obs: 2396, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 35.2279 1.0140 1072.0089 34.742 < 2e-16 ***
## V_Number -0.8157 0.2105 1796.0000 -3.874 0.000111 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_Number -0.519
mixed.lmers[["TC Number"]] %>% confint()
## Computing profile confidence intervals ...
## 2.5 % 97.5 %
## .sig01 19.200609 21.7016726
## .sigma 11.152882 11.9065945
## (Intercept) 33.240109 37.2156501
## V_Number -1.228469 -0.4029168
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:09 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlllllllllllllll}
## \hline
## & MW Number & MW Age & MW Location & MW Store Type & MW Framing & CC Number & CC Age & CC Location & CC Store Type & CC Framing & TC Number & TC Age & TC Location & TC Store Type & TC Framing \\
## \hline
## V\_Locationanotherpartoftown - V\_Locationinthecity & & & -0.16 & & & & & -0.49 & & & & & -0.28 & & \\
## V\_Locationanotherpartoftown - V\_Locationnearby & & & 1.26 & & & & & 0.32 & & & & & 0.55 & & \\
## V\_Locationinthecity - V\_Locationnearby & & & 1.42 & & & & & 0.82 & & & & & 0.83 & & \\
## V\_StoreTypeconveniencestore - V\_StoreTypedepartmentstore & & & & -1.13 & & & & & -1.1 & & & & & 0.05 & \\
## V\_StoreTypeconveniencestore - V\_StoreTypesupermarket & & & & -2.12. & & & & & -1.57* & & & & & -1.1. & \\
## V\_StoreTypedepartmentstore - V\_StoreTypesupermarket & & & & -0.98 & & & & & -0.47 & & & & & -1.14. & \\
## V\_FramingAnticipating - V\_FramingExplain & & & & & -1.97 & & & & & -0.24 & & & & & 1.09 \\
## V\_FramingAnticipating - V\_FramingStrike up & & & & & -2.77. & & & & & 0.76 & & & & & 1.36. \\
## V\_FramingAnticipating - V\_FramingWave & & & & & -0.48 & & & & & 0.03 & & & & & 1.58* \\
## V\_FramingExplain - V\_FramingStrike up & & & & & -0.8 & & & & & 1 & & & & & 0.27 \\
## V\_FramingExplain - V\_FramingWave & & & & & 1.5 & & & & & 0.27 & & & & & 0.48 \\
## V\_FramingStrike up - V\_FramingWave & & & & & 2.3 & & & & & -0.73 & & & & & 0.21 \\
## \hline
## \end{tabular}
## \end{table}
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "hardwaresupplies")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1, Product without update")
map(mixed.lmers, function(x){car::leveneTest(residuals(x) ~ dff_q %>% filter(V_JudgeSelf==0, V_up==0) %>% .$V_Product)})
## $MorallyWrong
## Levene's Test for Homogeneity of Variance (center = median)
## Df F value Pr(>F)
## group 3 23.197 8.46e-15 ***
## 2392
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## $CatchCovid
## Levene's Test for Homogeneity of Variance (center = median)
## Df F value Pr(>F)
## group 3 14.749 1.623e-09 ***
## 2392
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## $TransmitCovid
## Levene's Test for Homogeneity of Variance (center = median)
## Df F value Pr(>F)
## group 3 6.1296 0.0003774 ***
## 2392
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_Product")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:10 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## hardwaresupplies - babyformula & 6.08*** & 0.94 & 0.43 \\
## hardwaresupplies - cigarettes & -11.72*** & -6.48*** & -5.3*** \\
## hardwaresupplies - toiletpaper & -11.73*** & -0.79 & -1.3* \\
## babyformula - cigarettes & -17.79*** & -7.42*** & -5.72*** \\
## babyformula - toiletpaper & -17.8*** & -1.73** & -1.73** \\
## cigarettes - toiletpaper & -0.01 & 5.69*** & 3.99*** \\
## \hline
## \end{tabular}
## \end{table}
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = case_when(V_Product=="hardwaresupplies"~1,
V_Product=="babyformula"~2,
V_Product=="cigarettes"~3,
V_Product=="toiletpaper"~4),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=x)) +
geom_point(aes(x=xj, color = V_Product), size = .1) +
geom_half_boxplot(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("hardwaresupplies", "babyformula", "cigarettes", "toiletpaper")) +
xlab("Product")+
facet_wrap(~Question, nrow=1)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model01_product.pdf", width = 10, height = 10)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers.self <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)))
modelsummary(mixed.lmers.self, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.2, Product without update - self")
dff.means <- difflmeansmodelcomp(mixed.lmers.self)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_Product")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:13 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## hardwaresupplies - babyformula & 5.07*** & 0.77 & 0.54 \\
## hardwaresupplies - cigarettes & -14.09*** & -6.16*** & -4.94*** \\
## hardwaresupplies - toiletpaper & -14.89*** & -0.91 & -0.8 \\
## babyformula - cigarettes & -19.16*** & -6.93*** & -5.48*** \\
## babyformula - toiletpaper & -19.95*** & -1.68** & -1.35* \\
## cigarettes - toiletpaper & -0.8 & 5.25*** & 4.13*** \\
## \hline
## \end{tabular}
## \end{table}
grph <- dff_q %>%
filter(V_JudgeSelf==1, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = case_when(V_Product=="hardwaresupplies"~1,
V_Product=="babyformula"~2,
V_Product=="cigarettes"~3,
V_Product=="toiletpaper"~4),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=x)) +
geom_point(aes(x=xj, color = V_Product), size = .1) +
geom_half_boxplot(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("hardwaresupplies", "babyformula", "cigarettes", "toiletpaper")) +
xlab("Product")+
facet_wrap(~Question, nrow=2)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model01.2_product.pdf", width = 10, height = 10)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers.self <- list(
"selfMorallyWrong" = lmer(MorallyWrong ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)),
"selfCatchCovid" = lmer(CatchCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)),
"selfTransmitCovid" = lmer(TransmitCovid ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1, V_up==0)))
modelsummary(c(mixed.lmers, mixed.lmers.self), fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.2, Product without update - self")
comp <- c(mixed.lmers, mixed.lmers.self)
dff.means <- difflmeansmodelcomp(comp)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_Product")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:15 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllllll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid & selfMorallyWrong & selfCatchCovid & selfTransmitCovid \\
## \hline
## hardwaresupplies - babyformula & 6.08*** & 0.94 & 0.43 & 5.07*** & 0.77 & 0.54 \\
## hardwaresupplies - cigarettes & -11.72*** & -6.48*** & -5.3*** & -14.09*** & -6.16*** & -4.94*** \\
## hardwaresupplies - toiletpaper & -11.73*** & -0.79 & -1.3* & -14.89*** & -0.91 & -0.8 \\
## babyformula - cigarettes & -17.79*** & -7.42*** & -5.72*** & -19.16*** & -6.93*** & -5.48*** \\
## babyformula - toiletpaper & -17.8*** & -1.73** & -1.73** & -19.95*** & -1.68** & -1.35* \\
## cigarettes - toiletpaper & -0.01 & 5.69*** & 3.99*** & -0.8 & 5.25*** & 4.13*** \\
## \hline
## \end{tabular}
## \end{table}
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(c(mixed.lmers), fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Race crossed with product")
comp <- c(mixed.lmers)
dff.means <- difflmeansmodelcomp(comp)
## Joining, by = "comparison"
## Joining, by = "comparison"
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "EXPGRP_TEXT[A-z]{1,}") %>%
str_remove("EXPGRP_TEXT"),
p2V_Name=str_extract(p2, "EXPGRP_TEXT[A-z]{1,}") %>%
str_remove("EXPGRP_TEXT"),
p1V_Up=str_extract(p1, "V_Product[A-z]{1,}") %>%
str_remove("V_Product"),
p2V_Up=str_extract(p2, "V_Product[A-z]{1,}") %>%
str_remove("V_Product")) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|p1V_Up==p2V_Up&p1V_Name!=p2V_Name) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name)
rownames(dff.means.comp) <-str_remove_all(rownames(dff.means.comp), "V_Product|EXPGRP_TEXT")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:17 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## EXPGRP\_TEXTChinese - EXPGRP\_TEXTWhite & 2.52 & 2.73 & 1.85 \\
## V\_Producthardwaresupplies - V\_Productbabyformula & 5.78*** & 1.02 & 0.7 \\
## V\_Producthardwaresupplies - V\_Productcigarettes & -12.94*** & -7.18*** & -5.57*** \\
## V\_Producthardwaresupplies - V\_Producttoiletpaper & -12.27*** & -0.93 & -1.3. \\
## V\_Productbabyformula - V\_Productcigarettes & -18.72*** & -8.21*** & -6.27*** \\
## V\_Productbabyformula - V\_Producttoiletpaper & -18.05*** & -1.96** & -2** \\
## V\_Productcigarettes - V\_Producttoiletpaper & 0.67 & 6.25*** & 4.27*** \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Producthardwaresupplies & -0.44 & 1.63 & 1.86 \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Productbabyformula & 4.93* & 1.25 & 1.49 \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Productbabyformula & 6.19* & 2.43 & 1.78 \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Productcigarettes & -16.45*** & -9.19*** & -6.35*** \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Productcigarettes & -9.87*** & -3.54. & -2.92 \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & -13.82*** & -1.35 & -1.28 \\
## EXPGRP\_TEXTChinese:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & -11.16*** & 1.11 & 0.55 \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Productbabyformula & 5.36* & -0.38 & -0.37 \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Productbabyformula & 6.63*** & 0.79 & -0.08 \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Productcigarettes & -16.01*** & -10.83*** & -8.22*** \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Productcigarettes & -9.43*** & -5.17*** & -4.78*** \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & -13.38*** & -2.98 & -3.15 \\
## EXPGRP\_TEXTWhite:V\_Producthardwaresupplies - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & -10.72*** & -0.52 & -1.31. \\
## EXPGRP\_TEXTChinese:V\_Productbabyformula - EXPGRP\_TEXTWhite:V\_Productbabyformula & 1.26 & 1.18 & 0.29 \\
## EXPGRP\_TEXTChinese:V\_Productbabyformula - EXPGRP\_TEXTChinese:V\_Productcigarettes & -21.38*** & -10.45*** & -7.85*** \\
## EXPGRP\_TEXTChinese:V\_Productbabyformula - EXPGRP\_TEXTWhite:V\_Productcigarettes & -14.8*** & -4.79* & -4.41* \\
## EXPGRP\_TEXTChinese:V\_Productbabyformula - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & -18.74*** & -2.6* & -2.77* \\
## EXPGRP\_TEXTChinese:V\_Productbabyformula - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & -16.09*** & -0.14 & -0.94 \\
## EXPGRP\_TEXTWhite:V\_Productbabyformula - EXPGRP\_TEXTChinese:V\_Productcigarettes & -22.64*** & -11.62*** & -8.13*** \\
## EXPGRP\_TEXTWhite:V\_Productbabyformula - EXPGRP\_TEXTWhite:V\_Productcigarettes & -16.06*** & -5.97*** & -4.7*** \\
## EXPGRP\_TEXTWhite:V\_Productbabyformula - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & -20.01*** & -3.78. & -3.06 \\
## EXPGRP\_TEXTWhite:V\_Productbabyformula - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & -17.35*** & -1.31. & -1.23 \\
## EXPGRP\_TEXTChinese:V\_Productcigarettes - EXPGRP\_TEXTWhite:V\_Productcigarettes & 6.58** & 5.66** & 3.43. \\
## EXPGRP\_TEXTChinese:V\_Productcigarettes - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & 2.64 & 7.85*** & 5.07*** \\
## EXPGRP\_TEXTChinese:V\_Productcigarettes - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & 5.29* & 10.31*** & 6.9*** \\
## EXPGRP\_TEXTWhite:V\_Productcigarettes - EXPGRP\_TEXTChinese:V\_Producttoiletpaper & -3.95 & 2.19 & 1.64 \\
## EXPGRP\_TEXTWhite:V\_Productcigarettes - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & -1.29 & 4.65*** & 3.47*** \\
## EXPGRP\_TEXTChinese:V\_Producttoiletpaper - EXPGRP\_TEXTWhite:V\_Producttoiletpaper & 2.66 & 2.46 & 1.83 \\
## \hline
## \end{tabular}
## \end{table}
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:17 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## Chinese - White & 2.52 & 2.73 & 1.85 \\
## hardwaresupplies - babyformula & 5.78*** & 1.02 & 0.7 \\
## hardwaresupplies - cigarettes & -12.94*** & -7.18*** & -5.57*** \\
## hardwaresupplies - toiletpaper & -12.27*** & -0.93 & -1.3. \\
## babyformula - cigarettes & -18.72*** & -8.21*** & -6.27*** \\
## babyformula - toiletpaper & -18.05*** & -1.96** & -2** \\
## cigarettes - toiletpaper & 0.67 & 6.25*** & 4.27*** \\
## Chinese:hardwaresupplies - White:hardwaresupplies & -0.44 & 1.63 & 1.86 \\
## Chinese:babyformula - White:babyformula & 1.26 & 1.18 & 0.29 \\
## Chinese:cigarettes - White:cigarettes & 6.58** & 5.66** & 3.43. \\
## Chinese:toiletpaper - White:toiletpaper & 2.66 & 2.46 & 1.83 \\
## \hline
## \end{tabular}
## \end{table}
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = case_when(V_Product=="hardwaresupplies"~1,
V_Product=="babyformula"~2,
V_Product=="cigarettes"~3,
V_Product=="toiletpaper"~4),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=x)) +
geom_point(aes(x=xj, color = V_Product), size = .1) +
geom_half_boxplot(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("hardwaresupplies", "babyformula", "cigarettes", "toiletpaper")) +
xlab("Product")+
facet_grid(EXPGRP_TEXT~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model01.4_product.race.pdf", width = 10, height = 10)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp*V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(c(mixed.lmers), fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Race crossed with product")
comp <- c(mixed.lmers)
dff.means <- difflmeansmodelcomp(comp)
## Joining, by = "comparison"
## Joining, by = "comparison"
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "RaceContResp[A-z]{1,}") %>%
str_remove("RaceContResp"),
p2V_Name=str_extract(p2, "RaceContResp[A-z]{1,}") %>%
str_remove("RaceContResp"),
p1V_Up=str_extract(p1, "V_Product[A-z]{1,}") %>%
str_remove("V_Product"),
p2V_Up=str_extract(p2, "V_Product[A-z]{1,}") %>%
str_remove("V_Product")) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|p1V_Up==p2V_Up&p1V_Name!=p2V_Name) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name)
rownames(dff.means.comp) <-str_remove_all(rownames(dff.means.comp), "V_Product|RaceContResp")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:20 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RaceContRespChinese - RaceContRespNonAmWhite & -3.92. & 1.07 & -1.18 \\
## RaceContRespChinese - RaceContRespWhiteAmerican & 7.44*** & 4* & 4.17* \\
## RaceContRespNonAmWhite - RaceContRespWhiteAmerican & 11.36*** & 2.93 & 5.35* \\
## V\_Producthardwaresupplies - V\_Productbabyformula & 6.35*** & 0.98 & 0.43 \\
## V\_Producthardwaresupplies - V\_Productcigarettes & -11.57*** & -6.4*** & -5.16*** \\
## V\_Producthardwaresupplies - V\_Producttoiletpaper & -11.75*** & -0.79 & -1.31* \\
## V\_Productbabyformula - V\_Productcigarettes & -17.91*** & -7.39*** & -5.59*** \\
## V\_Productbabyformula - V\_Producttoiletpaper & -18.09*** & -1.77** & -1.74** \\
## V\_Productcigarettes - V\_Producttoiletpaper & -0.18 & 5.62*** & 3.85*** \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Producthardwaresupplies & -8.44** & -0.53 & -1.57 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Producthardwaresupplies & 5.68* & 3.29 & 4.48* \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productbabyformula & 4.93* & 1.25 & 1.49 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productbabyformula & 1.8 & 0.73 & -1.81 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productbabyformula & 9.55*** & 3.72. & 4.52* \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productcigarettes & -16.45*** & -9.19*** & -6.35*** \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productcigarettes & -15.28*** & -4.3. & -4.49. \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productcigarettes & -5.73* & -2.96 & -1.72 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespChinese:V\_Producttoiletpaper & -13.82*** & -1.35 & -1.28 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Producttoiletpaper & -19.12*** & -0.91 & -3 \\
## RaceContRespChinese:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Producttoiletpaper & -5.07. & 2.66 & 3.26 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Producthardwaresupplies & 14.11*** & 3.82. & 6.05** \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productbabyformula & 13.36*** & 1.78 & 3.06 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productbabyformula & 10.24*** & 1.26 & -0.24 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productbabyformula & 17.98*** & 4.25. & 6.08** \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productcigarettes & -8.02** & -8.66*** & -4.79* \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productcigarettes & -6.84** & -3.77** & -2.93* \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productcigarettes & 2.7 & -2.43 & -0.16 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespChinese:V\_Producttoiletpaper & -5.38. & -0.82 & 0.28 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Producttoiletpaper & -10.68*** & -0.38 & -1.43 \\
## RaceContRespNonAmWhite:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 3.36 & 3.19 & 4.83* \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productbabyformula & -0.75 & -2.03 & -2.99 \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productbabyformula & -3.87 & -2.55 & -6.29** \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productbabyformula & 3.87* & 0.44 & 0.03 \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespChinese:V\_Productcigarettes & -22.13*** & -12.48*** & -10.84*** \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Productcigarettes & -20.95*** & -7.58*** & -8.98*** \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Productcigarettes & -11.41*** & -6.24*** & -6.21*** \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespChinese:V\_Producttoiletpaper & -19.49*** & -4.63* & -5.77* \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespNonAmWhite:V\_Producttoiletpaper & -24.79*** & -4.2. & -7.48** \\
## RaceContRespWhiteAmerican:V\_Producthardwaresupplies - RaceContRespWhiteAmerican:V\_Producttoiletpaper & -10.75*** & -0.62 & -1.22 \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Productbabyformula & -3.12 & -0.52 & -3.3 \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Productbabyformula & 4.62. & 2.47 & 3.03 \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespChinese:V\_Productcigarettes & -21.38*** & -10.45*** & -7.85*** \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Productcigarettes & -20.2*** & -5.55* & -5.98* \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Productcigarettes & -10.66*** & -4.21. & -3.21 \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespChinese:V\_Producttoiletpaper & -18.74*** & -2.6* & -2.77* \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Producttoiletpaper & -24.04*** & -2.17 & -4.49. \\
## RaceContRespChinese:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Producttoiletpaper & -10*** & 1.41 & 1.77 \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Productbabyformula & 7.74** & 2.99 & 6.32** \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespChinese:V\_Productcigarettes & -18.26*** & -9.93*** & -4.55. \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Productcigarettes & -17.08*** & -5.03*** & -2.69* \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Productcigarettes & -7.54** & -3.69 & 0.08 \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespChinese:V\_Producttoiletpaper & -15.62*** & -2.08 & 0.52 \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Producttoiletpaper & -20.92*** & -1.65 & -1.19 \\
## RaceContRespNonAmWhite:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Producttoiletpaper & -6.88* & 1.93 & 5.07* \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespChinese:V\_Productcigarettes & -26*** & -12.92*** & -10.87*** \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Productcigarettes & -24.82*** & -8.02*** & -9.01*** \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Productcigarettes & -15.28*** & -6.68*** & -6.24*** \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespChinese:V\_Producttoiletpaper & -23.36*** & -5.07* & -5.8* \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespNonAmWhite:V\_Producttoiletpaper & -28.66*** & -4.64* & -7.52** \\
## RaceContRespWhiteAmerican:V\_Productbabyformula - RaceContRespWhiteAmerican:V\_Producttoiletpaper & -14.62*** & -1.06 & -1.26 \\
## RaceContRespChinese:V\_Productcigarettes - RaceContRespNonAmWhite:V\_Productcigarettes & 1.18 & 4.9* & 1.86 \\
## RaceContRespChinese:V\_Productcigarettes - RaceContRespWhiteAmerican:V\_Productcigarettes & 10.72*** & 6.24** & 4.63* \\
## RaceContRespChinese:V\_Productcigarettes - RaceContRespChinese:V\_Producttoiletpaper & 2.64 & 7.85*** & 5.07*** \\
## RaceContRespChinese:V\_Productcigarettes - RaceContRespNonAmWhite:V\_Producttoiletpaper & -2.66 & 8.28*** & 3.35 \\
## RaceContRespChinese:V\_Productcigarettes - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 11.38*** & 11.86*** & 9.61*** \\
## RaceContRespNonAmWhite:V\_Productcigarettes - RaceContRespWhiteAmerican:V\_Productcigarettes & 9.54*** & 1.34 & 2.77 \\
## RaceContRespNonAmWhite:V\_Productcigarettes - RaceContRespChinese:V\_Producttoiletpaper & 1.46 & 2.95 & 3.21 \\
## RaceContRespNonAmWhite:V\_Productcigarettes - RaceContRespNonAmWhite:V\_Producttoiletpaper & -3.84. & 3.38** & 1.49 \\
## RaceContRespNonAmWhite:V\_Productcigarettes - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 10.2*** & 6.96** & 7.75*** \\
## RaceContRespWhiteAmerican:V\_Productcigarettes - RaceContRespChinese:V\_Producttoiletpaper & -8.08** & 1.61 & 0.44 \\
## RaceContRespWhiteAmerican:V\_Productcigarettes - RaceContRespNonAmWhite:V\_Producttoiletpaper & -13.38*** & 2.04 & -1.28 \\
## RaceContRespWhiteAmerican:V\_Productcigarettes - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 0.66 & 5.62*** & 4.98*** \\
## RaceContRespChinese:V\_Producttoiletpaper - RaceContRespNonAmWhite:V\_Producttoiletpaper & -5.3. & 0.43 & -1.72 \\
## RaceContRespChinese:V\_Producttoiletpaper - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 8.74** & 4.01. & 4.54* \\
## RaceContRespNonAmWhite:V\_Producttoiletpaper - RaceContRespWhiteAmerican:V\_Producttoiletpaper & 14.04*** & 3.58 & 6.26** \\
## \hline
## \end{tabular}
## \end{table}
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:20 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## Chinese - NonAmWhite & -3.92. & 1.07 & -1.18 \\
## Chinese - WhiteAmerican & 7.44*** & 4* & 4.17* \\
## NonAmWhite - WhiteAmerican & 11.36*** & 2.93 & 5.35* \\
## hardwaresupplies - babyformula & 6.35*** & 0.98 & 0.43 \\
## hardwaresupplies - cigarettes & -11.57*** & -6.4*** & -5.16*** \\
## hardwaresupplies - toiletpaper & -11.75*** & -0.79 & -1.31* \\
## babyformula - cigarettes & -17.91*** & -7.39*** & -5.59*** \\
## babyformula - toiletpaper & -18.09*** & -1.77** & -1.74** \\
## cigarettes - toiletpaper & -0.18 & 5.62*** & 3.85*** \\
## Chinese:hardwaresupplies - NonAmWhite:hardwaresupplies & -8.44** & -0.53 & -1.57 \\
## Chinese:hardwaresupplies - WhiteAmerican:hardwaresupplies & 5.68* & 3.29 & 4.48* \\
## NonAmWhite:hardwaresupplies - WhiteAmerican:hardwaresupplies & 14.11*** & 3.82. & 6.05** \\
## Chinese:babyformula - NonAmWhite:babyformula & -3.12 & -0.52 & -3.3 \\
## Chinese:babyformula - WhiteAmerican:babyformula & 4.62. & 2.47 & 3.03 \\
## NonAmWhite:babyformula - WhiteAmerican:babyformula & 7.74** & 2.99 & 6.32** \\
## Chinese:cigarettes - NonAmWhite:cigarettes & 1.18 & 4.9* & 1.86 \\
## Chinese:cigarettes - WhiteAmerican:cigarettes & 10.72*** & 6.24** & 4.63* \\
## NonAmWhite:cigarettes - WhiteAmerican:cigarettes & 9.54*** & 1.34 & 2.77 \\
## Chinese:toiletpaper - NonAmWhite:toiletpaper & -5.3. & 0.43 & -1.72 \\
## Chinese:toiletpaper - WhiteAmerican:toiletpaper & 8.74** & 4.01. & 4.54* \\
## NonAmWhite:toiletpaper - WhiteAmerican:toiletpaper & 14.04*** & 3.58 & 6.26** \\
## \hline
## \end{tabular}
## \end{table}
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = case_when(V_Product=="hardwaresupplies"~1,
V_Product=="babyformula"~2,
V_Product=="cigarettes"~3,
V_Product=="toiletpaper"~4),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=x)) +
geom_point(aes(x=xj, color = V_Product), size = .1) +
geom_half_boxplot(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_Product), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("hardwaresupplies", "babyformula", "cigarettes", "toiletpaper")) +
xlab("Product")+
facet_grid(RaceContResp~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model01.4_product.race2.pdf", width = 10, height = 10)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
Let’s add an information to know for each participants if their answer before the update was inferior to the one after the update
dff_q$V_presentation3 <- relevel(dff_q$V_presentation3 %>% as.factor, "NONE")
dff_q$V_presentation3graph <- relevel(dff_q$V_presentation3 %>% as.factor, "Defensive")
dff_q$ID_Q <- paste0(dff_q$ID, "_", dff_q$V_Number) %>% as.factor()
dff_q$ID_Q_JS <- paste0(dff_q$ID_Q, "_", dff_q$V_JudgeSelf) %>% as.factor()
# We want to compare preUpdate and postUpdate answers
# First we gather all the answer together
# Then we add to the key if the value refer to a pre or post update value
# Third we create a column for each answer
# For each question we compare post and pre update
# Finnally we join with our main data base
dff_q <- dff_q %>%
dplyr::select("ID_Q_JS", "V_up", "CatchCovid", "MorallyWrong", "TransmitCovid") %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(Q_Up = paste0(Question, "_", V_up)) %>%
dplyr::select(-V_up, -Question) %>%
spread(Q_Up, Value) %>%
mutate(CatchCovid_Change = case_when(CatchCovid_0<CatchCovid_1~1,
CatchCovid_0>CatchCovid_1~-1,
CatchCovid_0==CatchCovid_1~0),
MorallyWrong_Change = case_when(MorallyWrong_0<MorallyWrong_1~1,
MorallyWrong_0>MorallyWrong_1~-1,
MorallyWrong_0==MorallyWrong_1~0),
TransmitCovid_Change = case_when(TransmitCovid_0<TransmitCovid_1~1,
TransmitCovid_0>TransmitCovid_1~-1,
TransmitCovid_0==TransmitCovid_1~0)) %>%
dplyr::select(ID_Q_JS, matches("Change$")) %>%
right_join(dff_q, by="ID_Q_JS")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2, Update presentation")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_presentation3")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:24 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## NONE - Defensive & -5.79*** & 1.06** & 0.94* \\
## NONE - Prosocial & 10.9*** & 2.08*** & 1.78*** \\
## Defensive - Prosocial & 16.69*** & 1.02* & 0.84. \\
## \hline
## \end{tabular}
## \end{table}
We create a specific table for the graphs, so that we can have one culumn with the value, one with the key of the question qnd one to determine if the update had a positive or negative impact.
set.seed(321)
df_grph <- dff_q %>%
gather(QuestionPre, ValuePre, c("MorallyWrong", "CatchCovid", "TransmitCovid",
"MorallyWrong_Change", "CatchCovid_Change", "TransmitCovid_Change")) %>%
separate(QuestionPre, c("Question", "Change"), sep="_") %>%
mutate(Change=ifelse(is.na(Change),"Value", "Change")) %>%
spread(Change, ValuePre)
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 28752 rows [1, 2,
## 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_wrap(~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model02_presentation.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
Let’s add an information to know for each participants if their answer before the update was inferior to the one after the update
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_presentation3 + EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_presentation3 + EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_presentation3 + EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MorallyWrongcross" = lmer(MorallyWrong ~ V_presentation3*EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovidcross" = lmer(CatchCovid ~ V_presentation3*EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovidcross" = lmer(TransmitCovid ~ V_presentation3*EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2, Update presentation")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_presentation3")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:35 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllllll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid & MorallyWrongcross & CatchCovidcross & TransmitCovidcross \\
## \hline
## NONE - Defensive & -5.79*** & 1.06** & 0.94* & -5.79*** & 1.05* & 0.9* \\
## NONE - Prosocial & 10.9*** & 2.08*** & 1.78*** & 11.47*** & 2.19*** & 1.73*** \\
## Defensive - Prosocial & 16.69*** & 1.02* & 0.84. & 17.26*** & 1.13* & 0.83 \\
## EXPGRP\_TEXTChinese - EXPGRP\_TEXTWhite & 1.88 & 2.62 & 1.97 & 1.45 & 2.54 & 2.03 \\
## NONE:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTChinese & & & & -5.8*** & 1.03 & 0.79 \\
## NONE:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTChinese & & & & 13.08*** & 2.49*** & 1.58* \\
## NONE:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & 2.52 & 2.73 & 1.85 \\
## NONE:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & -3.27 & 3.81* & 2.87 \\
## NONE:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & 12.37*** & 4.61* & 3.73* \\
## Defensive:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTChinese & & & & 18.88*** & 1.46. & 0.79 \\
## Defensive:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & 8.32*** & 1.7 & 1.06 \\
## Defensive:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & 2.53 & 2.78 & 2.08 \\
## Defensive:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & 18.17*** & 3.59. & 2.94 \\
## Prosocial:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & -10.56*** & 0.24 & 0.27 \\
## Prosocial:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & -16.35*** & 1.32 & 1.29 \\
## Prosocial:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & -0.71 & 2.12 & 2.16 \\
## NONE:EXPGRP\_TEXTWhite - Defensive:EXPGRP\_TEXTWhite & & & & -5.79*** & 1.08* & 1.02* \\
## NONE:EXPGRP\_TEXTWhite - Prosocial:EXPGRP\_TEXTWhite & & & & 9.85*** & 1.88*** & 1.88*** \\
## Defensive:EXPGRP\_TEXTWhite - Prosocial:EXPGRP\_TEXTWhite & & & & 15.64*** & 0.81 & 0.86 \\
## \hline
## \end{tabular}
## \end{table}
We create a specific table for the graphs, so that we can have one culumn with the value, one with the key of the question qnd one to determine if the update had a positive or negative impact.
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(EXPGRP_TEXT~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model02.1_presentationEXPGRP.pdf", width = 10, height = 10)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
Let’s add an information to know for each participants if their answer before the update was inferior to the one after the update
dff_q$V_presentation3 <- relevel(dff_q$V_presentation3 %>% as.factor, "NONE")
mixed.lmers.self <- list(
"selfMorallyWrong" = lmer(MorallyWrong ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)),
"selfCatchCovid" = lmer(CatchCovid ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)),
"selfTransmitCovid" = lmer(TransmitCovid ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)))
modelsummary(mixed.lmers.self, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.2, Update presentation - self")
dff.means <- difflmeansmodelcomp(mixed.lmers.self)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_presentation3")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:43 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & selfMorallyWrong & selfCatchCovid & selfTransmitCovid \\
## \hline
## NONE - Defensive & -6.15*** & 0.11 & -0.05 \\
## NONE - Prosocial & 11.67*** & 1.51*** & 1.01* \\
## Defensive - Prosocial & 17.82*** & 1.4** & 1.06* \\
## \hline
## \end{tabular}
## \end{table}
grph <- df_grph %>%
filter(V_JudgeSelf==1, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x, y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_wrap(~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model02.2_presentationself.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
modelsummary(c(mixed.lmers, mixed.lmers.self), fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.2, Update presentation - self")
dff.means <- difflmeansmodelcomp(c(mixed.lmers, mixed.lmers.self))
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_presentation3")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:50 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlllllllll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid & MorallyWrongcross & CatchCovidcross & TransmitCovidcross & selfMorallyWrong & selfCatchCovid & selfTransmitCovid \\
## \hline
## NONE - Defensive & -5.79*** & 1.06** & 0.94* & -5.79*** & 1.05* & 0.9* & -6.15*** & 0.11 & -0.05 \\
## NONE - Prosocial & 10.9*** & 2.08*** & 1.78*** & 11.47*** & 2.19*** & 1.73*** & 11.67*** & 1.51*** & 1.01* \\
## Defensive - Prosocial & 16.69*** & 1.02* & 0.84. & 17.26*** & 1.13* & 0.83 & 17.82*** & 1.4** & 1.06* \\
## EXPGRP\_TEXTChinese - EXPGRP\_TEXTWhite & 1.88 & 2.62 & 1.97 & 1.45 & 2.54 & 2.03 & & & \\
## NONE:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTChinese & & & & -5.8*** & 1.03 & 0.79 & & & \\
## NONE:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTChinese & & & & 13.08*** & 2.49*** & 1.58* & & & \\
## NONE:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & 2.52 & 2.73 & 1.85 & & & \\
## NONE:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & -3.27 & 3.81* & 2.87 & & & \\
## NONE:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & 12.37*** & 4.61* & 3.73* & & & \\
## Defensive:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTChinese & & & & 18.88*** & 1.46. & 0.79 & & & \\
## Defensive:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & 8.32*** & 1.7 & 1.06 & & & \\
## Defensive:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & 2.53 & 2.78 & 2.08 & & & \\
## Defensive:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & 18.17*** & 3.59. & 2.94 & & & \\
## Prosocial:EXPGRP\_TEXTChinese - NONE:EXPGRP\_TEXTWhite & & & & -10.56*** & 0.24 & 0.27 & & & \\
## Prosocial:EXPGRP\_TEXTChinese - Defensive:EXPGRP\_TEXTWhite & & & & -16.35*** & 1.32 & 1.29 & & & \\
## Prosocial:EXPGRP\_TEXTChinese - Prosocial:EXPGRP\_TEXTWhite & & & & -0.71 & 2.12 & 2.16 & & & \\
## NONE:EXPGRP\_TEXTWhite - Defensive:EXPGRP\_TEXTWhite & & & & -5.79*** & 1.08* & 1.02* & & & \\
## NONE:EXPGRP\_TEXTWhite - Prosocial:EXPGRP\_TEXTWhite & & & & 9.85*** & 1.88*** & 1.88*** & & & \\
## Defensive:EXPGRP\_TEXTWhite - Prosocial:EXPGRP\_TEXTWhite & & & & 15.64*** & 0.81 & 0.86 & & & \\
## \hline
## \end{tabular}
## \end{table}
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_presentation3|V_Product")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:36:52 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## hardwaresupplies - babyformula & 5.93*** & 1.28** & 1.14* \\
## hardwaresupplies - cigarettes & -9.47*** & -4.93*** & -4.23*** \\
## hardwaresupplies - toiletpaper & NA & NA & NA \\
## babyformula - cigarettes & -15.4*** & -6.22*** & -5.36*** \\
## babyformula - toiletpaper & NA & NA & NA \\
## cigarettes - toiletpaper & NA & NA & NA \\
## NONE - Defensive & -5.75*** & 1.06** & 0.95* \\
## NONE - Prosocial & NA & NA & NA \\
## Defensive - Prosocial & NA & NA & NA \\
## hardwaresupplies:NONE - babyformula:NONE & 6.08*** & 0.94 & 0.43 \\
## hardwaresupplies:NONE - cigarettes:NONE & -11.72*** & -6.48*** & -5.3*** \\
## hardwaresupplies:NONE - toiletpaper:NONE & -11.73*** & -0.79 & -1.3* \\
## hardwaresupplies:NONE - hardwaresupplies:Defensive & -12.66*** & -0.39 & -0.76 \\
## hardwaresupplies:NONE - babyformula:Defensive & -1.59 & 1.54* & 1.15 \\
## hardwaresupplies:NONE - cigarettes:Defensive & -11.56*** & -4.14*** & -2.87*** \\
## hardwaresupplies:NONE - toiletpaper:Defensive & -14.58*** & 0.93 & 0.1 \\
## hardwaresupplies:NONE - hardwaresupplies:Prosocial & 12.13*** & 1.73* & 1.64* \\
## hardwaresupplies:NONE - babyformula:Prosocial & 12.78*** & 2.71*** & 2.73*** \\
## hardwaresupplies:NONE - cigarettes:Prosocial & -5.66*** & -2.85*** & -3.62*** \\
## hardwaresupplies:NONE - toiletpaper:Prosocial & NA & NA & NA \\
## babyformula:NONE - cigarettes:NONE & -17.79*** & -7.42*** & -5.72*** \\
## babyformula:NONE - toiletpaper:NONE & -17.8*** & -1.73** & -1.73** \\
## babyformula:NONE - hardwaresupplies:Defensive & -18.73*** & -1.34. & -1.19 \\
## babyformula:NONE - babyformula:Defensive & -7.67*** & 0.59 & 0.72 \\
## babyformula:NONE - cigarettes:Defensive & -17.64*** & -5.08*** & -3.3*** \\
## babyformula:NONE - toiletpaper:Defensive & -20.65*** & -0.02 & -0.33 \\
## babyformula:NONE - hardwaresupplies:Prosocial & 6.06*** & 0.78 & 1.21 \\
## babyformula:NONE - babyformula:Prosocial & 6.7*** & 1.76* & 2.3** \\
## babyformula:NONE - cigarettes:Prosocial & -11.73*** & -3.79*** & -4.05*** \\
## babyformula:NONE - toiletpaper:Prosocial & NA & NA & NA \\
## cigarettes:NONE - toiletpaper:NONE & -0.01 & 5.69*** & 3.99*** \\
## cigarettes:NONE - hardwaresupplies:Defensive & -0.94 & 6.09*** & 4.54*** \\
## cigarettes:NONE - babyformula:Defensive & 10.13*** & 8.02*** & 6.44*** \\
## cigarettes:NONE - cigarettes:Defensive & 0.16 & 2.34** & 2.42** \\
## cigarettes:NONE - toiletpaper:Defensive & -2.86* & 7.41*** & 5.4*** \\
## cigarettes:NONE - hardwaresupplies:Prosocial & 23.85*** & 8.21*** & 6.94*** \\
## cigarettes:NONE - babyformula:Prosocial & 24.49*** & 9.19*** & 8.02*** \\
## cigarettes:NONE - cigarettes:Prosocial & 6.06*** & 3.64*** & 1.67* \\
## cigarettes:NONE - toiletpaper:Prosocial & NA & NA & NA \\
## toiletpaper:NONE - hardwaresupplies:Defensive & -0.93 & 0.4 & 0.55 \\
## toiletpaper:NONE - babyformula:Defensive & 10.14*** & 2.33** & 2.45** \\
## toiletpaper:NONE - cigarettes:Defensive & 0.17 & -3.35*** & -1.57* \\
## toiletpaper:NONE - toiletpaper:Defensive & -2.85* & 1.72* & 1.41. \\
## toiletpaper:NONE - hardwaresupplies:Prosocial & 23.86*** & 2.51** & 2.95*** \\
## toiletpaper:NONE - babyformula:Prosocial & 24.5*** & 3.5*** & 4.03*** \\
## toiletpaper:NONE - cigarettes:Prosocial & 6.07*** & -2.06** & -2.32** \\
## toiletpaper:NONE - toiletpaper:Prosocial & NA & NA & NA \\
## hardwaresupplies:Defensive - babyformula:Defensive & 11.07*** & 1.93* & 1.9* \\
## hardwaresupplies:Defensive - cigarettes:Defensive & 1.1 & -3.75*** & -2.11* \\
## hardwaresupplies:Defensive - toiletpaper:Defensive & -1.92 & 1.32 & 0.86 \\
## hardwaresupplies:Defensive - hardwaresupplies:Prosocial & 24.79*** & 2.12* & 2.4* \\
## hardwaresupplies:Defensive - babyformula:Prosocial & 25.43*** & 3.1*** & 3.48*** \\
## hardwaresupplies:Defensive - cigarettes:Prosocial & 7*** & -2.45** & -2.87** \\
## hardwaresupplies:Defensive - toiletpaper:Prosocial & NA & NA & NA \\
## babyformula:Defensive - cigarettes:Defensive & -9.97*** & -5.68*** & -4.02*** \\
## babyformula:Defensive - toiletpaper:Defensive & -12.99*** & -0.61 & -1.04 \\
## babyformula:Defensive - hardwaresupplies:Prosocial & 13.72*** & 0.19 & 0.49 \\
## babyformula:Defensive - babyformula:Prosocial & 14.37*** & 1.17 & 1.58. \\
## babyformula:Defensive - cigarettes:Prosocial & -4.07* & -4.38*** & -4.77*** \\
## babyformula:Defensive - toiletpaper:Prosocial & NA & NA & NA \\
## cigarettes:Defensive - toiletpaper:Defensive & -3.02. & 5.07*** & 2.97** \\
## cigarettes:Defensive - hardwaresupplies:Prosocial & 23.69*** & 5.87*** & 4.51*** \\
## cigarettes:Defensive - babyformula:Prosocial & 24.34*** & 6.85*** & 5.6*** \\
## cigarettes:Defensive - cigarettes:Prosocial & 5.9*** & 1.3 & -0.75 \\
## cigarettes:Defensive - toiletpaper:Prosocial & NA & NA & NA \\
## toiletpaper:Defensive - hardwaresupplies:Prosocial & 26.71*** & 0.8 & 1.54. \\
## toiletpaper:Defensive - babyformula:Prosocial & 27.35*** & 1.78* & 2.62** \\
## toiletpaper:Defensive - cigarettes:Prosocial & 8.92*** & -3.77*** & -3.73*** \\
## toiletpaper:Defensive - toiletpaper:Prosocial & NA & NA & NA \\
## hardwaresupplies:Prosocial - babyformula:Prosocial & 0.64 & 0.98 & 1.09 \\
## hardwaresupplies:Prosocial - cigarettes:Prosocial & -17.79*** & -4.57*** & -5.27*** \\
## hardwaresupplies:Prosocial - toiletpaper:Prosocial & NA & NA & NA \\
## babyformula:Prosocial - cigarettes:Prosocial & -18.43*** & -5.55*** & -6.35*** \\
## babyformula:Prosocial - toiletpaper:Prosocial & NA & NA & NA \\
## cigarettes:Prosocial - toiletpaper:Prosocial & NA & NA & NA \\
## \hline
## \end{tabular}
## \end{table}
dff.means[which(str_detect(row.names(dff.means), "hard")),]
## MorallyWrong CatchCovid
## hardwaresupplies - babyformula 5.93*** 1.28**
## hardwaresupplies - cigarettes -9.47*** -4.93***
## hardwaresupplies - toiletpaper NA NA
## hardwaresupplies:NONE - babyformula:NONE 6.08*** 0.94
## hardwaresupplies:NONE - cigarettes:NONE -11.72*** -6.48***
## hardwaresupplies:NONE - toiletpaper:NONE -11.73*** -0.79
## hardwaresupplies:NONE - hardwaresupplies:Defensive -12.66*** -0.39
## hardwaresupplies:NONE - babyformula:Defensive -1.59 1.54*
## hardwaresupplies:NONE - cigarettes:Defensive -11.56*** -4.14***
## hardwaresupplies:NONE - toiletpaper:Defensive -14.58*** 0.93
## hardwaresupplies:NONE - hardwaresupplies:Prosocial 12.13*** 1.73*
## hardwaresupplies:NONE - babyformula:Prosocial 12.78*** 2.71***
## hardwaresupplies:NONE - cigarettes:Prosocial -5.66*** -2.85***
## hardwaresupplies:NONE - toiletpaper:Prosocial NA NA
## babyformula:NONE - hardwaresupplies:Defensive -18.73*** -1.34.
## babyformula:NONE - hardwaresupplies:Prosocial 6.06*** 0.78
## cigarettes:NONE - hardwaresupplies:Defensive -0.94 6.09***
## cigarettes:NONE - hardwaresupplies:Prosocial 23.85*** 8.21***
## toiletpaper:NONE - hardwaresupplies:Defensive -0.93 0.4
## toiletpaper:NONE - hardwaresupplies:Prosocial 23.86*** 2.51**
## hardwaresupplies:Defensive - babyformula:Defensive 11.07*** 1.93*
## hardwaresupplies:Defensive - cigarettes:Defensive 1.1 -3.75***
## hardwaresupplies:Defensive - toiletpaper:Defensive -1.92 1.32
## hardwaresupplies:Defensive - hardwaresupplies:Prosocial 24.79*** 2.12*
## hardwaresupplies:Defensive - babyformula:Prosocial 25.43*** 3.1***
## hardwaresupplies:Defensive - cigarettes:Prosocial 7*** -2.45**
## hardwaresupplies:Defensive - toiletpaper:Prosocial NA NA
## babyformula:Defensive - hardwaresupplies:Prosocial 13.72*** 0.19
## cigarettes:Defensive - hardwaresupplies:Prosocial 23.69*** 5.87***
## toiletpaper:Defensive - hardwaresupplies:Prosocial 26.71*** 0.8
## hardwaresupplies:Prosocial - babyformula:Prosocial 0.64 0.98
## hardwaresupplies:Prosocial - cigarettes:Prosocial -17.79*** -4.57***
## hardwaresupplies:Prosocial - toiletpaper:Prosocial NA NA
## TransmitCovid
## hardwaresupplies - babyformula 1.14*
## hardwaresupplies - cigarettes -4.23***
## hardwaresupplies - toiletpaper NA
## hardwaresupplies:NONE - babyformula:NONE 0.43
## hardwaresupplies:NONE - cigarettes:NONE -5.3***
## hardwaresupplies:NONE - toiletpaper:NONE -1.3*
## hardwaresupplies:NONE - hardwaresupplies:Defensive -0.76
## hardwaresupplies:NONE - babyformula:Defensive 1.15
## hardwaresupplies:NONE - cigarettes:Defensive -2.87***
## hardwaresupplies:NONE - toiletpaper:Defensive 0.1
## hardwaresupplies:NONE - hardwaresupplies:Prosocial 1.64*
## hardwaresupplies:NONE - babyformula:Prosocial 2.73***
## hardwaresupplies:NONE - cigarettes:Prosocial -3.62***
## hardwaresupplies:NONE - toiletpaper:Prosocial NA
## babyformula:NONE - hardwaresupplies:Defensive -1.19
## babyformula:NONE - hardwaresupplies:Prosocial 1.21
## cigarettes:NONE - hardwaresupplies:Defensive 4.54***
## cigarettes:NONE - hardwaresupplies:Prosocial 6.94***
## toiletpaper:NONE - hardwaresupplies:Defensive 0.55
## toiletpaper:NONE - hardwaresupplies:Prosocial 2.95***
## hardwaresupplies:Defensive - babyformula:Defensive 1.9*
## hardwaresupplies:Defensive - cigarettes:Defensive -2.11*
## hardwaresupplies:Defensive - toiletpaper:Defensive 0.86
## hardwaresupplies:Defensive - hardwaresupplies:Prosocial 2.4*
## hardwaresupplies:Defensive - babyformula:Prosocial 3.48***
## hardwaresupplies:Defensive - cigarettes:Prosocial -2.87**
## hardwaresupplies:Defensive - toiletpaper:Prosocial NA
## babyformula:Defensive - hardwaresupplies:Prosocial 0.49
## cigarettes:Defensive - hardwaresupplies:Prosocial 4.51***
## toiletpaper:Defensive - hardwaresupplies:Prosocial 1.54.
## hardwaresupplies:Prosocial - babyformula:Prosocial 1.09
## hardwaresupplies:Prosocial - cigarettes:Prosocial -5.27***
## hardwaresupplies:Prosocial - toiletpaper:Prosocial NA
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Product~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model03_presentation.product.pdf", width = 10, height = 13)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
emmeans(mixed.lmers[[2]], pairwise ~ V_presentation3|V_Product, pbkrtest.limit = 5000, lmerTest.limit = 5000)
## $emmeans
## V_Product = hardwaresupplies:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 32.2 0.922 904 30.3 34.0
## Defensive 32.5 1.033 1366 30.5 34.6
## Prosocial 30.4 1.032 1363 28.4 32.4
##
## V_Product = babyformula:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 31.2 0.922 904 29.4 33.0
## Defensive 30.6 1.035 1376 28.6 32.6
## Prosocial 29.4 1.030 1354 27.4 31.5
##
## V_Product = cigarettes:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 38.6 0.922 904 36.8 40.4
## Defensive 36.3 1.032 1363 34.3 38.3
## Prosocial 35.0 1.033 1367 33.0 37.0
##
## V_Product = toiletpaper:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 32.9 0.922 904 31.1 34.8
## Defensive 31.2 1.029 1350 29.2 33.2
## Prosocial nonEst NA NA NA NA
##
## Degrees-of-freedom method: kenward-roger
## Confidence level used: 0.95
##
## $contrasts
## V_Product = hardwaresupplies:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive -0.393 0.768 3904 -0.512 0.8655
## NONE - Prosocial 1.725 0.767 3904 2.249 0.0633
## Defensive - Prosocial 2.119 0.929 3933 2.281 0.0585
##
## V_Product = babyformula:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive 0.594 0.771 3904 0.771 0.7211
## NONE - Prosocial 1.763 0.764 3904 2.306 0.0550
## Defensive - Prosocial 1.169 0.929 3934 1.258 0.4190
##
## V_Product = cigarettes:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive 2.340 0.767 3904 3.050 0.0065
## NONE - Prosocial 3.636 0.768 3904 4.733 <.0001
## Defensive - Prosocial 1.296 0.929 3934 1.395 0.3435
##
## V_Product = toiletpaper:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive 1.717 0.763 3902 2.249 0.0633
## NONE - Prosocial nonEst NA NA NA NA
## Defensive - Prosocial nonEst NA NA NA NA
##
## Degrees-of-freedom method: kenward-roger
## P value adjustment: tukey method for comparing a family of 3 estimates
wilcox.test, anova, anova, kruskal.test, stat_compare_means(comparisons = my_comparisons, label.y = c(85, 90, 95))+ stat_compare_means(label.y = 110)
my_comparisons <- list( c("D.Defensive", "D.NONE"), c("D.Defensive", "P.Prosocial"), c("P.NONE", "P.Prosocial") )
set.seed(321)
grph <- df_grph %>%
mutate(V_Pr=V_Presentation %>% str_extract("^[A-Z]")) %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3)), !(is.na(V_Pr))) %>%
mutate(Update = V_presentation3graph)%>%
ggboxplot(y="Value", x="Update", fill="Update", facet.by=c("V_Product","Question")) +
xlab("Presentation")
grph
function (mapping = NULL, data = NULL, method = NULL, paired = FALSE, method.args = list(), ref.group = NULL, comparisons = NULL, hide.ns = FALSE, label.sep = “,”, label = NULL, label.x.npc = “left”, label.y.npc = “top”, label.x = NULL, label.y = NULL, vjust = 0, tip.length = 0.03, bracket.size = 0.3, step.increase = 0, symnum.args = list(), geom = “text”, position = “identity”, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, …) { mapping <- .update_mapping(mapping, label) layer(stat = StatCompareMeans, data = data, mapping = mapping, geom = geom, position = position, show.legend = show.legend, inherit.aes = inherit.aes, params = list(label.x.npc = label.x.npc, label.y.npc = label.y.npc, label.x = label.x, label.y = label.y, label.sep = label.sep, method = method, method.args = method.args, paired = paired, ref.group = ref.group, symnum.args = symnum.args, hide.ns = hide.ns, na.rm = na.rm, vjust = vjust, …)) } }
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
ggplot(aes(y=Value)) +
geom_boxplot(aes(x=V_Product, fill=V_presentation3)) +
xlab("Presentation") +
facet_wrap(~Question, ncol=1)
grph
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "hardwaresupplies")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation")
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "babyformula")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation")
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "cigarettes")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation")
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "toiletpaper")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation")
dff_q$V_Product <- relevel(dff_q$V_Product %>% as.factor, "hardwaresupplies")
mixed.lmers <- list(
"MorallyWrong&" = lmer(MorallyWrong ~ V_Product*V_presentation3+EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MorallyWrong*" = lmer(MorallyWrong ~ V_Product*V_presentation3*EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid&" = lmer(CatchCovid ~ V_Product*V_presentation3 + EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid*" = lmer(CatchCovid ~ V_Product*V_presentation3 * EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid+" = lmer(TransmitCovid ~ V_Product*V_presentation3+ EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid*" = lmer(TransmitCovid ~ V_Product*V_presentation3* EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", title = "Model 3.2, Product and Update presentation Experience group")
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Product+EXPGRP_TEXT~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model03.2_presentation.product.EXPGRP.pdf", width = 10, height = 17)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
emmeans(mixed.lmers[[2]], pairwise ~ V_presentation3|V_Product, pbkrtest.limit = 5000, lmerTest.limit = 5000)
## NOTE: Results may be misleading due to involvement in interactions
## $emmeans
## V_Product = hardwaresupplies:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 22.33 1.24 1656 19.90 24.8
## Defensive 35.56 1.54 2939 32.54 38.6
## Prosocial 10.16 1.55 2969 7.13 13.2
##
## V_Product = toiletpaper:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 34.60 1.24 1656 32.17 37.0
## Defensive 37.58 1.54 2935 34.57 40.6
## Prosocial nonEst NA NA NA NA
##
## V_Product = cigarettes:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 35.27 1.24 1656 32.85 37.7
## Defensive 34.73 1.56 3018 31.67 37.8
## Prosocial 27.95 1.53 2898 24.95 30.9
##
## V_Product = babyformula:
## V_presentation3 emmean SE df lower.CL upper.CL
## NONE 16.55 1.24 1656 14.13 19.0
## Defensive 24.11 1.54 2929 21.09 27.1
## Prosocial 9.15 1.55 2984 6.11 12.2
##
## Results are averaged over the levels of: EXPGRP_TEXT
## Degrees-of-freedom method: kenward-roger
## Confidence level used: 0.95
##
## $contrasts
## V_Product = hardwaresupplies:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive -13.227 1.53 3928 -8.656 <.0001
## NONE - Prosocial 12.166 1.54 3929 7.920 <.0001
## Defensive - Prosocial 25.393 1.85 4015 13.755 <.0001
##
## V_Product = toiletpaper:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive -2.986 1.53 3922 -1.957 0.1231
## NONE - Prosocial nonEst NA NA NA NA
## Defensive - Prosocial nonEst NA NA NA NA
##
## V_Product = cigarettes:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive 0.545 1.55 3931 0.352 0.9340
## NONE - Prosocial 7.322 1.52 3927 4.824 <.0001
## Defensive - Prosocial 6.776 1.85 4017 3.664 0.0007
##
## V_Product = babyformula:
## contrast estimate SE df t.ratio p.value
## NONE - Defensive -7.555 1.53 3928 -4.952 <.0001
## NONE - Prosocial 7.398 1.54 3930 4.804 <.0001
## Defensive - Prosocial 14.954 1.85 4016 8.093 <.0001
##
## Results are averaged over the levels of: EXPGRP_TEXT
## Degrees-of-freedom method: kenward-roger
## P value adjustment: tukey method for comparing a family of 3 estimates
wilcox.test, anova, anova, kruskal.test, stat_compare_means(comparisons = my_comparisons, label.y = c(85, 90, 95))+ stat_compare_means(label.y = 110)
my_comparisons <- list( c("D.Defensive", "D.NONE"), c("D.Defensive", "P.Prosocial"), c("P.NONE", "P.Prosocial") )
set.seed(321)
grph <- df_grph %>%
mutate(V_Pr=V_Presentation %>% str_extract("^[A-Z]")) %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3)), !(is.na(V_Pr))) %>%
unite(Update,V_Pr, V_presentation3) %>%
ggboxplot(y="Value", x="Update", fill="Update", facet.by=c("V_Product","Question")) +
xlab("Presentation")
grph
function (mapping = NULL, data = NULL, method = NULL, paired = FALSE, method.args = list(), ref.group = NULL, comparisons = NULL, hide.ns = FALSE, label.sep = “,”, label = NULL, label.x.npc = “left”, label.y.npc = “top”, label.x = NULL, label.y = NULL, vjust = 0, tip.length = 0.03, bracket.size = 0.3, step.increase = 0, symnum.args = list(), geom = “text”, position = “identity”, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, …) { mapping <- .update_mapping(mapping, label) layer(stat = StatCompareMeans, data = data, mapping = mapping, geom = geom, position = position, show.legend = show.legend, inherit.aes = inherit.aes, params = list(label.x.npc = label.x.npc, label.y.npc = label.y.npc, label.x = label.x, label.y = label.y, label.sep = label.sep, method = method, method.args = method.args, paired = paired, ref.group = ref.group, symnum.args = symnum.args, hide.ns = hide.ns, na.rm = na.rm, vjust = vjust, …)) } }
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
ggplot(aes(y=Value)) +
geom_boxplot(aes(x=V_Product, fill=V_presentation3)) +
xlab("Presentation") +
facet_wrap(~Question, ncol=1)
grph
mixed.lmers.self <- list(
"selfMorallyWrong" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)),
"selfCatchCovid" = lmer(CatchCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)),
"selfTransmitCovid" = lmer(TransmitCovid ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==1)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers.self, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3.2, Product and Update presentation - self")
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==1, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Product~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model03.2_presentation.productself.pdf", width = 10, height = 13)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
modelsummary(c(mixed.lmers, mixed.lmers.self), fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3, Product and Update presentation - comparison")
dff_q <- dff_q %>%
mutate(ScaledCatchCovid = CatchCovid %>% scale(),
ScaledTransmitCovid = TransmitCovid %>% scale())
f_helpinterpretorestimate <- function(estimate, variable){
r <- estimate / sd(variable)
return(r)
}
mixed.lmers <- list(
"CatchCovidModel" = lmer(MorallyWrong ~ ScaledCatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovidModel" = lmer(MorallyWrong ~ ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Ctch&TrnsmtModel" = lmer(MorallyWrong ~ ScaledCatchCovid + ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Ctch*TrnsmtModel" = lmer(MorallyWrong ~ ScaledCatchCovid * ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
f_helpinterpretorestimate(12.29, dff_q$CatchCovid)
## [1] 0.5442563
f_helpinterpretorestimate(13.25, dff_q$TransmitCovid)
## [1] 0.5641149
f_helpinterpretorestimate(5.4, dff_q$CatchCovid)
## [1] 0.2391362
f_helpinterpretorestimate(8.97, dff_q$TransmitCovid)
## [1] 0.3818951
f_helpinterpretorestimate(5.03, dff_q$CatchCovid)
## [1] 0.2227509
f_helpinterpretorestimate(8.65, dff_q$TransmitCovid)
## [1] 0.3682712
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.4 - Spill Over effect")
grph <- dff_q %>%
gather(Question, Value, c("CatchCovid", "TransmitCovid")) %>%
ggplot(aes(y=MorallyWrong)) +
geom_point(aes(x=Value, color=Question), alpha=.3, cex=.1) +
geom_smooth(aes(x=Value, color=Question), method='lm')
grph
## `geom_smooth()` using formula 'y ~ x'
interactions::interact_plot(mixed.lmers[["Ctch*TrnsmtModel"]], pred=ScaledCatchCovid, modx= ScaledTransmitCovid, interval = T)
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model04_SplillingEffect.pdf", width = 10, height = 13)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
dff_q <- dff_q %>%
mutate(ScaledCatchCovid = CatchCovid %>% scale(),
ScaledTransmitCovid = TransmitCovid %>% scale(),
ScaledMorallyWrong = MorallyWrong %>% scale())
f_helpinterpretorestimate <- function(estimate, variable){
r <- estimate / sd(variable)
return(r)
}
mixed.lmers <- list(
"MWCatchCovidModel" = lmer(MorallyWrong ~ ScaledCatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MWTransmitCovidModel" = lmer(MorallyWrong ~ ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MWCtch&TrnsmtModel" = lmer(MorallyWrong ~ ScaledCatchCovid + ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MWCtch*TrnsmtModel" = lmer(MorallyWrong ~ ScaledCatchCovid * ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CCMorallyWrongModel" = lmer(CatchCovid ~ ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CCTransmitCovidModel" = lmer(CatchCovid ~ ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CCMW&TrnsmtModel" = lmer(CatchCovid ~ ScaledMorallyWrong + ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CCMW*TrnsmtModel" = lmer(CatchCovid ~ ScaledMorallyWrong * ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TCCatchCovidModel" = lmer(TransmitCovid ~ ScaledCatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TCMorallyWrongModel" = lmer(TransmitCovid ~ ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TCCtch&MWModel" = lmer(TransmitCovid ~ ScaledCatchCovid + ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TCCtch*MWModel" = lmer(TransmitCovid ~ ScaledCatchCovid * ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
f_helpinterpretorestimate(12.29, dff_q$CatchCovid)
## [1] 0.5442563
f_helpinterpretorestimate(4.49, dff_q$MorallyWrong)
## [1] 0.1480397
f_helpinterpretorestimate(13.25, dff_q$TransmitCovid)
## [1] 0.5641149
f_helpinterpretorestimate(5.4, dff_q$CatchCovid)
## [1] 0.2391362
f_helpinterpretorestimate(8.97, dff_q$TransmitCovid)
## [1] 0.3818951
f_helpinterpretorestimate(5.03, dff_q$CatchCovid)
## [1] 0.2227509
f_helpinterpretorestimate(8.65, dff_q$TransmitCovid)
## [1] 0.3682712
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.4.2 - Spill Over effect crossed")
mixed.lmers <- list(
"CC~MW Model" = lmer(CatchCovid ~ ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CC~MW&TCModel" = lmer(CatchCovid ~ ScaledMorallyWrong + ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CC~MW*TCModel" = lmer(CatchCovid ~ ScaledMorallyWrong * ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TC~MWModel" = lmer(TransmitCovid ~ ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TC~CC&MWModel" = lmer(TransmitCovid ~ ScaledCatchCovid + ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TC~CC*MWModel" = lmer(TransmitCovid ~ ScaledCatchCovid * ScaledMorallyWrong + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", title = "Model 1, Product without update")
grph <- dff_q %>%
gather(Question, Value, c("CatchCovid", "TransmitCovid")) %>%
ggplot(aes(y=MorallyWrong)) +
geom_point(aes(x=Value, color=Question), alpha=.3, cex=.1) +
geom_smooth(aes(x=Value, color=Question), method='lm')
grph
## `geom_smooth()` using formula 'y ~ x'
interactions::interact_plot(mixed.lmers[["CC~MW*TCModel"]], pred=ScaledMorallyWrong, modx= ScaledTransmitCovid, interval = T)
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model04_SplillingEffect.pdf", width = 10, height = 13)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"Spill&UpdateProduct" = lmer(MorallyWrong ~ ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*UpdateProduct" = lmer(MorallyWrong ~ ScaledCatchCovid*ScaledTransmitCovid * V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.5, Product, Update presentation and Spill Over")
f_helpinterpretorestimate(4.21, dff_q$CatchCovid)
## [1] 0.1864377
f_helpinterpretorestimate(8.12, dff_q$TransmitCovid)
## [1] 0.3457066
f_helpinterpretorestimate(5.91, dff_q$CatchCovid)
## [1] 0.2617213
f_helpinterpretorestimate(7.85, dff_q$TransmitCovid)
## [1] 0.3342115
f_helpinterpretorestimate(5.03, dff_q$CatchCovid)
## [1] 0.2227509
f_helpinterpretorestimate(8.65, dff_q$TransmitCovid)
## [1] 0.3682712
interactions::interact_plot(mixed.lmers[["Spill&UpdateProduct"]],
pred=ScaledCatchCovid,
modx= ScaledTransmitCovid,
interval = T,
mod2 = V_presentation3)
## Warning: ScaledCatchCovid and ScaledTransmitCovid and V_presentation3 are not
## included in an interaction with one another in the model.
mixed.lmers <- list(
"Ctch*TrnsmtModel" = lmer(MorallyWrong ~ ScaledCatchCovid * ScaledTransmitCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP&Spill&UpdateProduct" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&EXPGRP*UpdateProduct" = lmer(MorallyWrong ~ ScaledCatchCovid*ScaledTransmitCovid * EXPGRP_TEXT*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*EXPGRP&UpdateProduct" = lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.6, EXPGRP_TEXT, Product, Update presentation and Spill Over")
f_helpinterpretorestimate(4.2, dff_q$CatchCovid)
## [1] 0.1859948
f_helpinterpretorestimate(8.12, dff_q$TransmitCovid)
## [1] 0.3457066
f_helpinterpretorestimate(5.91, dff_q$CatchCovid)
## [1] 0.2617213
f_helpinterpretorestimate(7.85, dff_q$TransmitCovid)
## [1] 0.3342115
f_helpinterpretorestimate(5.03, dff_q$CatchCovid)
## [1] 0.2227509
f_helpinterpretorestimate(8.65, dff_q$TransmitCovid)
## [1] 0.3682712
dff_q %>%
filter(V_Product=="cigarettes") %>%
mutate(Continent=case_when(CONTINENT_BORN_TEXT_1=="USA"~"USA",
CONTINENT_BORN_TEXT_1!="USA"~"NON-USA")) %>%
ggplot(aes(x=CatchCovid, y=MorallyWrong, color=V_presentation3)) +
facet_grid(EXPGRP_TEXT~Continent) +
geom_point() +
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
dff_q %>%
mutate(Continent=case_when(CONTINENT_BORN_TEXT_1=="USA"~"USA",
CONTINENT_BORN_TEXT_1!="USA"~"NON-USA")) %>%
ggplot(aes(x=TransmitCovid, y=MorallyWrong, color=V_presentation3graph)) +
geom_point() +
facet_wrap(~V_Product)+
geom_smooth(method='lm')
## `geom_smooth()` using formula 'y ~ x'
mixed.lmers <- list(
"Product" = lmer(MorallyWrong ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"Update" = lmer(MorallyWrong ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"UpdateProduct" = lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&UpdateProduct" = lmer(MorallyWrong ~ ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP&Spill&UpdateProduct" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 1.6, EXPGRP_TEXT, Product, Update presentation and Spill Over")
test <- lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledCatchCovid*ScaledTransmitCovid*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0))
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
summary(test)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ EXPGRP_TEXT * ScaledCatchCovid * ScaledTransmitCovid *
## V_Product * V_presentation3 + (1 | ID)
## Data: dff_q %>% filter(V_JudgeSelf == 0)
##
## REML criterion at convergence: 39938.2
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.7245 -0.5553 -0.1006 0.4400 4.1127
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 289.6 17.02
## Residual 351.5 18.75
## Number of obs: 4496, groups: ID, 599
##
## Fixed effects:
## Estimate
## (Intercept) 20.48506
## EXPGRP_TEXTWhite 0.73168
## ScaledCatchCovid 10.98844
## ScaledTransmitCovid 3.03568
## V_Producttoiletpaper 13.37932
## V_Productcigarettes 12.32495
## V_Productbabyformula -3.98862
## V_presentation3Defensive 14.75752
## V_presentation3Prosocial -11.03077
## EXPGRP_TEXTWhite:ScaledCatchCovid -6.92082
## EXPGRP_TEXTWhite:ScaledTransmitCovid 6.69516
## ScaledCatchCovid:ScaledTransmitCovid 0.87670
## EXPGRP_TEXTWhite:V_Producttoiletpaper -2.46454
## EXPGRP_TEXTWhite:V_Productcigarettes -6.24730
## EXPGRP_TEXTWhite:V_Productbabyformula -1.76650
## ScaledCatchCovid:V_Producttoiletpaper -11.03268
## ScaledCatchCovid:V_Productcigarettes -5.26591
## ScaledCatchCovid:V_Productbabyformula -11.37994
## ScaledTransmitCovid:V_Producttoiletpaper 10.16693
## ScaledTransmitCovid:V_Productcigarettes 8.74726
## ScaledTransmitCovid:V_Productbabyformula 6.67856
## EXPGRP_TEXTWhite:V_presentation3Defensive -0.14529
## EXPGRP_TEXTWhite:V_presentation3Prosocial -1.20308
## ScaledCatchCovid:V_presentation3Defensive 2.34289
## ScaledCatchCovid:V_presentation3Prosocial -7.67075
## ScaledTransmitCovid:V_presentation3Defensive -0.17883
## ScaledTransmitCovid:V_presentation3Prosocial 4.15273
## V_Producttoiletpaper:V_presentation3Defensive -10.82583
## V_Productcigarettes:V_presentation3Defensive -15.91718
## V_Productbabyformula:V_presentation3Defensive -6.48312
## V_Productcigarettes:V_presentation3Prosocial 0.70952
## V_Productbabyformula:V_presentation3Prosocial 2.97117
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid 0.78226
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper 9.57259
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes 8.48063
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula 12.23413
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper -7.87269
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes -12.41367
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula -10.94456
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper -0.54931
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes -1.80516
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula -0.25165
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive 1.96330
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial 8.59379
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive -1.24256
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial -10.57801
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive -0.67772
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.04766
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive 3.03390
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive 2.71134
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive 0.72497
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial 12.03868
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial 3.25050
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive -5.14287
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive -3.94081
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 2.17246
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 11.43184
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 1.07301
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.96457
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive -2.00879
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive -6.48608
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial -10.88798
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial -1.71238
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper -0.59868
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 1.96870
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula -0.58854
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive -3.18741
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.83219
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 1.69476
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 1.09371
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive -11.98818
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial -15.59518
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial -1.02137
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 1.60862
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 4.80582
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 12.00613
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 19.23986
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 6.15804
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 1.04546
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 2.34045
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive -0.04909
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 1.76927
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial -0.97387
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive -1.24276
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 1.95682
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 2.54038
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial -5.13755
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 1.93146
## Std. Error
## (Intercept) 2.17834
## EXPGRP_TEXTWhite 2.66251
## ScaledCatchCovid 3.49439
## ScaledTransmitCovid 3.54695
## V_Producttoiletpaper 2.41162
## V_Productcigarettes 2.41701
## V_Productbabyformula 2.45542
## V_presentation3Defensive 3.05683
## V_presentation3Prosocial 3.21749
## EXPGRP_TEXTWhite:ScaledCatchCovid 4.20494
## EXPGRP_TEXTWhite:ScaledTransmitCovid 4.23221
## ScaledCatchCovid:ScaledTransmitCovid 1.60332
## EXPGRP_TEXTWhite:V_Producttoiletpaper 2.97144
## EXPGRP_TEXTWhite:V_Productcigarettes 2.96762
## EXPGRP_TEXTWhite:V_Productbabyformula 3.01551
## ScaledCatchCovid:V_Producttoiletpaper 4.65958
## ScaledCatchCovid:V_Productcigarettes 4.24392
## ScaledCatchCovid:V_Productbabyformula 4.48276
## ScaledTransmitCovid:V_Producttoiletpaper 4.74394
## ScaledTransmitCovid:V_Productcigarettes 4.57342
## ScaledTransmitCovid:V_Productbabyformula 4.51868
## EXPGRP_TEXTWhite:V_presentation3Defensive 3.85459
## EXPGRP_TEXTWhite:V_presentation3Prosocial 3.87311
## ScaledCatchCovid:V_presentation3Defensive 5.93862
## ScaledCatchCovid:V_presentation3Prosocial 5.99419
## ScaledTransmitCovid:V_presentation3Defensive 5.70895
## ScaledTransmitCovid:V_presentation3Prosocial 6.37350
## V_Producttoiletpaper:V_presentation3Defensive 4.33653
## V_Productcigarettes:V_presentation3Defensive 4.40057
## V_Productbabyformula:V_presentation3Defensive 4.31065
## V_Productcigarettes:V_presentation3Prosocial 4.37381
## V_Productbabyformula:V_presentation3Prosocial 4.62997
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid 1.91883
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper 5.47898
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes 5.19544
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula 5.41663
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper 5.53580
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes 5.47653
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula 5.42331
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 1.90443
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 1.84154
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 1.95824
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive 7.43420
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial 6.94891
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive 7.28892
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial 7.31430
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 2.47744
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 2.21772
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive 5.41904
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive 5.41466
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive 5.40407
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial 5.32465
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial 5.59360
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 9.03704
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 7.78918
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 9.23783
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 8.03526
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 8.58601
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 8.97098
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 8.19345
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 9.34652
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 8.31790
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 8.96883
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 2.34547
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 2.23828
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 2.40939
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 3.08628
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 2.83390
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 10.73253
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 9.62096
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 10.87009
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 9.58706
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 9.96567
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 10.66667
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 9.99615
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 11.00054
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 9.90104
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 10.29662
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 3.26900
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 3.30254
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 3.17363
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 2.84646
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 3.62536
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 4.15686
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 4.01607
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 4.15099
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 3.65176
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 4.43912
## df
## (Intercept) 2869.07438
## EXPGRP_TEXTWhite 2886.37911
## ScaledCatchCovid 4070.32518
## ScaledTransmitCovid 4086.35437
## V_Producttoiletpaper 3842.51751
## V_Productcigarettes 3891.65152
## V_Productbabyformula 3835.70220
## V_presentation3Defensive 3895.10788
## V_presentation3Prosocial 3888.64397
## EXPGRP_TEXTWhite:ScaledCatchCovid 4089.50649
## EXPGRP_TEXTWhite:ScaledTransmitCovid 4086.11061
## ScaledCatchCovid:ScaledTransmitCovid 4243.10220
## EXPGRP_TEXTWhite:V_Producttoiletpaper 3842.70746
## EXPGRP_TEXTWhite:V_Productcigarettes 3885.03663
## EXPGRP_TEXTWhite:V_Productbabyformula 3836.23799
## ScaledCatchCovid:V_Producttoiletpaper 3932.00539
## ScaledCatchCovid:V_Productcigarettes 3945.23676
## ScaledCatchCovid:V_Productbabyformula 3923.67473
## ScaledTransmitCovid:V_Producttoiletpaper 3931.88145
## ScaledTransmitCovid:V_Productcigarettes 3961.84599
## ScaledTransmitCovid:V_Productbabyformula 3931.28870
## EXPGRP_TEXTWhite:V_presentation3Defensive 3896.78449
## EXPGRP_TEXTWhite:V_presentation3Prosocial 3886.15702
## ScaledCatchCovid:V_presentation3Defensive 3924.71891
## ScaledCatchCovid:V_presentation3Prosocial 3935.91199
## ScaledTransmitCovid:V_presentation3Defensive 3918.87437
## ScaledTransmitCovid:V_presentation3Prosocial 3948.65222
## V_Producttoiletpaper:V_presentation3Defensive 3910.70090
## V_Productcigarettes:V_presentation3Defensive 3910.88952
## V_Productbabyformula:V_presentation3Defensive 3898.89560
## V_Productcigarettes:V_presentation3Prosocial 3896.97156
## V_Productbabyformula:V_presentation3Prosocial 3908.23496
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid 4245.32462
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper 3922.61828
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes 3938.41297
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula 3916.62328
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper 3923.07566
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes 3950.53867
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula 3924.15743
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 3895.93063
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 3919.45282
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 3875.93056
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive 3936.04797
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial 3928.71484
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive 3933.18337
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial 3938.26567
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 3953.02066
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 3861.52498
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive 3906.89201
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive 3910.21532
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive 3899.87621
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial 3896.91514
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial 3905.01697
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 3929.86787
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 3910.59923
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 3963.51014
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 3958.81510
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 3954.88852
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 3915.25529
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 3913.96258
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 3959.42239
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 3966.98050
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 3956.47877
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 3891.67719
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 3910.52882
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 3874.69236
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 3941.44057
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 3871.55549
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 3932.81108
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 3927.90013
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 3955.45059
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 3957.29424
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 3943.42469
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 3920.63782
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 3930.65057
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 3953.19786
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 3963.50578
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 3945.92244
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 3972.55518
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 3940.66835
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 3927.99979
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 3873.85854
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 3914.64776
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 3946.74298
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 3936.77757
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 3917.93853
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 3889.41215
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 3906.32761
## t value
## (Intercept) 9.404
## EXPGRP_TEXTWhite 0.275
## ScaledCatchCovid 3.145
## ScaledTransmitCovid 0.856
## V_Producttoiletpaper 5.548
## V_Productcigarettes 5.099
## V_Productbabyformula -1.624
## V_presentation3Defensive 4.828
## V_presentation3Prosocial -3.428
## EXPGRP_TEXTWhite:ScaledCatchCovid -1.646
## EXPGRP_TEXTWhite:ScaledTransmitCovid 1.582
## ScaledCatchCovid:ScaledTransmitCovid 0.547
## EXPGRP_TEXTWhite:V_Producttoiletpaper -0.829
## EXPGRP_TEXTWhite:V_Productcigarettes -2.105
## EXPGRP_TEXTWhite:V_Productbabyformula -0.586
## ScaledCatchCovid:V_Producttoiletpaper -2.368
## ScaledCatchCovid:V_Productcigarettes -1.241
## ScaledCatchCovid:V_Productbabyformula -2.539
## ScaledTransmitCovid:V_Producttoiletpaper 2.143
## ScaledTransmitCovid:V_Productcigarettes 1.913
## ScaledTransmitCovid:V_Productbabyformula 1.478
## EXPGRP_TEXTWhite:V_presentation3Defensive -0.038
## EXPGRP_TEXTWhite:V_presentation3Prosocial -0.311
## ScaledCatchCovid:V_presentation3Defensive 0.395
## ScaledCatchCovid:V_presentation3Prosocial -1.280
## ScaledTransmitCovid:V_presentation3Defensive -0.031
## ScaledTransmitCovid:V_presentation3Prosocial 0.652
## V_Producttoiletpaper:V_presentation3Defensive -2.496
## V_Productcigarettes:V_presentation3Defensive -3.617
## V_Productbabyformula:V_presentation3Defensive -1.504
## V_Productcigarettes:V_presentation3Prosocial 0.162
## V_Productbabyformula:V_presentation3Prosocial 0.642
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid 0.408
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper 1.747
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes 1.632
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula 2.259
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper -1.422
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes -2.267
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula -2.018
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper -0.288
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes -0.980
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula -0.129
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive 0.264
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial 1.237
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive -0.170
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial -1.446
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive -0.274
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.021
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive 0.560
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive 0.501
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive 0.134
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial 2.261
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial 0.581
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive -0.569
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive -0.506
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 0.235
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 1.423
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 0.125
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.108
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive -0.245
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive -0.694
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial -1.309
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial -0.191
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper -0.255
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 0.880
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula -0.244
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive -1.033
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.294
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 0.158
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 0.114
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive -1.103
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial -1.627
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial -0.102
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.151
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.481
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 1.091
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 1.943
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.598
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.320
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.709
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive -0.015
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 0.622
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial -0.269
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive -0.299
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.487
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 0.612
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial -1.407
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.435
## Pr(>|t|)
## (Intercept) < 2e-16
## EXPGRP_TEXTWhite 0.783483
## ScaledCatchCovid 0.001675
## ScaledTransmitCovid 0.392127
## V_Producttoiletpaper 3.09e-08
## V_Productcigarettes 3.57e-07
## V_Productbabyformula 0.104370
## V_presentation3Defensive 1.43e-06
## V_presentation3Prosocial 0.000613
## EXPGRP_TEXTWhite:ScaledCatchCovid 0.099865
## EXPGRP_TEXTWhite:ScaledTransmitCovid 0.113737
## ScaledCatchCovid:ScaledTransmitCovid 0.584544
## EXPGRP_TEXTWhite:V_Producttoiletpaper 0.406925
## EXPGRP_TEXTWhite:V_Productcigarettes 0.035342
## EXPGRP_TEXTWhite:V_Productbabyformula 0.558040
## ScaledCatchCovid:V_Producttoiletpaper 0.017945
## ScaledCatchCovid:V_Productcigarettes 0.214750
## ScaledCatchCovid:V_Productbabyformula 0.011168
## ScaledTransmitCovid:V_Producttoiletpaper 0.032163
## ScaledTransmitCovid:V_Productcigarettes 0.055867
## ScaledTransmitCovid:V_Productbabyformula 0.139491
## EXPGRP_TEXTWhite:V_presentation3Defensive 0.969934
## EXPGRP_TEXTWhite:V_presentation3Prosocial 0.756103
## ScaledCatchCovid:V_presentation3Defensive 0.693221
## ScaledCatchCovid:V_presentation3Prosocial 0.200727
## ScaledTransmitCovid:V_presentation3Defensive 0.975012
## ScaledTransmitCovid:V_presentation3Prosocial 0.514722
## V_Producttoiletpaper:V_presentation3Defensive 0.012586
## V_Productcigarettes:V_presentation3Defensive 0.000302
## V_Productbabyformula:V_presentation3Defensive 0.132668
## V_Productcigarettes:V_presentation3Prosocial 0.871142
## V_Productbabyformula:V_presentation3Prosocial 0.521089
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid 0.683532
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper 0.080690
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes 0.102692
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula 0.023962
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper 0.155064
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes 0.023462
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula 0.043653
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 0.773026
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 0.327025
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 0.897753
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive 0.791725
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial 0.216268
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive 0.864648
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial 0.148198
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 0.784441
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.982857
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive 0.575608
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive 0.616581
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive 0.893288
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial 0.023818
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial 0.561199
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 0.569329
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 0.612931
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 0.814089
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 0.154899
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 0.900552
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.914381
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.806338
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 0.487750
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 0.190616
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.848593
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper 0.798545
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes 0.379152
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula 0.807037
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive 0.301776
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial 0.769038
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive 0.874537
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive 0.909498
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive 0.270156
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial 0.103882
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial 0.918374
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.880135
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.630709
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 0.275158
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 0.052061
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.549831
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.749128
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.478564
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 0.987658
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 0.534262
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.788232
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive 0.764982
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive 0.626110
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive 0.540577
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial 0.159546
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial 0.663515
##
## (Intercept) ***
## EXPGRP_TEXTWhite
## ScaledCatchCovid **
## ScaledTransmitCovid
## V_Producttoiletpaper ***
## V_Productcigarettes ***
## V_Productbabyformula
## V_presentation3Defensive ***
## V_presentation3Prosocial ***
## EXPGRP_TEXTWhite:ScaledCatchCovid .
## EXPGRP_TEXTWhite:ScaledTransmitCovid
## ScaledCatchCovid:ScaledTransmitCovid
## EXPGRP_TEXTWhite:V_Producttoiletpaper
## EXPGRP_TEXTWhite:V_Productcigarettes *
## EXPGRP_TEXTWhite:V_Productbabyformula
## ScaledCatchCovid:V_Producttoiletpaper *
## ScaledCatchCovid:V_Productcigarettes
## ScaledCatchCovid:V_Productbabyformula *
## ScaledTransmitCovid:V_Producttoiletpaper *
## ScaledTransmitCovid:V_Productcigarettes .
## ScaledTransmitCovid:V_Productbabyformula
## EXPGRP_TEXTWhite:V_presentation3Defensive
## EXPGRP_TEXTWhite:V_presentation3Prosocial
## ScaledCatchCovid:V_presentation3Defensive
## ScaledCatchCovid:V_presentation3Prosocial
## ScaledTransmitCovid:V_presentation3Defensive
## ScaledTransmitCovid:V_presentation3Prosocial
## V_Producttoiletpaper:V_presentation3Defensive *
## V_Productcigarettes:V_presentation3Defensive ***
## V_Productbabyformula:V_presentation3Defensive
## V_Productcigarettes:V_presentation3Prosocial
## V_Productbabyformula:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper .
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula *
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes *
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula *
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_presentation3Prosocial
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial
## EXPGRP_TEXTWhite:V_Producttoiletpaper:V_presentation3Defensive
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Defensive
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Defensive
## EXPGRP_TEXTWhite:V_Productcigarettes:V_presentation3Prosocial *
## EXPGRP_TEXTWhite:V_Productbabyformula:V_presentation3Prosocial
## ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive
## ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial
## ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial
## ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive
## ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial
## ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Producttoiletpaper:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productcigarettes:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:V_Productbabyformula:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial .
## EXPGRP_TEXTWhite:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial
## ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive
## ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial
## ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Producttoiletpaper:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Defensive
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productcigarettes:V_presentation3Prosocial
## EXPGRP_TEXTWhite:ScaledCatchCovid:ScaledTransmitCovid:V_Productbabyformula:V_presentation3Prosocial
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation matrix not shown by default, as p = 88 > 12.
## Use print(x, correlation=TRUE) or
## vcov(x) if you need it
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
step(test)
## fixed-effect model matrix is rank deficient so dropping 7 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 7 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 6 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 5 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 5 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 4 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 3 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## Backward reduced random-effect table:
##
## Eliminated npar logLik AIC LRT Df Pr(>Chisq)
## <none> 90 -19969 40118
## (1 | ID) 0 89 -20705 41589 1472.7 1 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Backward reduced fixed-effect table:
## Degrees of freedom method: Satterthwaite
##
## Eliminated
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 1
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 2
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 3
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 4
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 5
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 6
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 7
## EXPGRP_TEXT:ScaledTransmitCovid 8
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 9
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 10
## EXPGRP_TEXT:V_Product:V_presentation3 11
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 12
## ScaledTransmitCovid:V_Product:V_presentation3 13
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 14
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 15
## ScaledTransmitCovid:V_presentation3 16
## EXPGRP_TEXT:V_presentation3 17
## ScaledCatchCovid:ScaledTransmitCovid 18
## ScaledCatchCovid:V_Product:V_presentation3 19
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 20
## EXPGRP_TEXT:ScaledCatchCovid 21
## EXPGRP_TEXT:V_Product 22
## EXPGRP_TEXT 23
## ScaledCatchCovid:V_Product 0
## ScaledTransmitCovid:V_Product 0
## ScaledCatchCovid:V_presentation3 0
## V_Product:V_presentation3 0
## Sum Sq
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 1861.0
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 836.2
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 1528.6
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 1278.8
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 1117.4
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 321.7
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 95.1
## EXPGRP_TEXT:ScaledTransmitCovid 35.7
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 2440.6
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 411.9
## EXPGRP_TEXT:V_Product:V_presentation3 1550.3
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 2373.2
## ScaledTransmitCovid:V_Product:V_presentation3 351.9
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 648.8
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 1155.4
## ScaledTransmitCovid:V_presentation3 552.5
## EXPGRP_TEXT:V_presentation3 1619.9
## ScaledCatchCovid:ScaledTransmitCovid 880.1
## ScaledCatchCovid:V_Product:V_presentation3 3336.4
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 2717.3
## EXPGRP_TEXT:ScaledCatchCovid 95.3
## EXPGRP_TEXT:V_Product 779.6
## EXPGRP_TEXT 27.1
## ScaledCatchCovid:V_Product 6233.3
## ScaledTransmitCovid:V_Product 4438.5
## ScaledCatchCovid:V_presentation3 5650.7
## V_Product:V_presentation3 23324.3
## Mean Sq
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 372.2
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 278.7
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 305.7
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 426.3
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 558.7
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 160.8
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 95.1
## EXPGRP_TEXT:ScaledTransmitCovid 35.7
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 488.1
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 206.0
## EXPGRP_TEXT:V_Product:V_presentation3 310.1
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 474.6
## ScaledTransmitCovid:V_Product:V_presentation3 70.4
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 216.3
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 577.7
## ScaledTransmitCovid:V_presentation3 276.2
## EXPGRP_TEXT:V_presentation3 810.0
## ScaledCatchCovid:ScaledTransmitCovid 880.1
## ScaledCatchCovid:V_Product:V_presentation3 667.3
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 905.8
## EXPGRP_TEXT:ScaledCatchCovid 95.3
## EXPGRP_TEXT:V_Product 259.9
## EXPGRP_TEXT 27.1
## ScaledCatchCovid:V_Product 2077.8
## ScaledTransmitCovid:V_Product 1479.5
## ScaledCatchCovid:V_presentation3 2825.4
## V_Product:V_presentation3 4664.9
## NumDF
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 5
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 3
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 5
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 3
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 2
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 2
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 1
## EXPGRP_TEXT:ScaledTransmitCovid 1
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 5
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 2
## EXPGRP_TEXT:V_Product:V_presentation3 5
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 5
## ScaledTransmitCovid:V_Product:V_presentation3 5
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 3
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 2
## ScaledTransmitCovid:V_presentation3 2
## EXPGRP_TEXT:V_presentation3 2
## ScaledCatchCovid:ScaledTransmitCovid 1
## ScaledCatchCovid:V_Product:V_presentation3 5
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 3
## EXPGRP_TEXT:ScaledCatchCovid 1
## EXPGRP_TEXT:V_Product 3
## EXPGRP_TEXT 1
## ScaledCatchCovid:V_Product 3
## ScaledTransmitCovid:V_Product 3
## ScaledCatchCovid:V_presentation3 2
## V_Product:V_presentation3 5
## DenDF
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 3932.1
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 3932.8
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 3960.5
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 3959.6
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 3885.6
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 3955.9
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 4113.6
## EXPGRP_TEXT:ScaledTransmitCovid 4416.9
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 3941.8
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 3884.1
## EXPGRP_TEXT:V_Product:V_presentation3 3941.2
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 3957.0
## ScaledTransmitCovid:V_Product:V_presentation3 3983.9
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 3965.6
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 3909.8
## ScaledTransmitCovid:V_presentation3 3965.5
## EXPGRP_TEXT:V_presentation3 3886.9
## ScaledCatchCovid:ScaledTransmitCovid 4095.6
## ScaledCatchCovid:V_Product:V_presentation3 3969.3
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 3939.3
## EXPGRP_TEXT:ScaledCatchCovid 3166.0
## EXPGRP_TEXT:V_Product 3883.2
## EXPGRP_TEXT 595.9
## ScaledCatchCovid:V_Product 3997.0
## ScaledTransmitCovid:V_Product 3993.5
## ScaledCatchCovid:V_presentation3 3916.2
## V_Product:V_presentation3 3976.7
## F value
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 1.0589
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 0.7927
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 0.8695
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 1.2125
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 1.5887
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 0.4572
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 0.2703
## EXPGRP_TEXT:ScaledTransmitCovid 0.1014
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 1.3884
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 0.5856
## EXPGRP_TEXT:V_Product:V_presentation3 0.8818
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 1.3501
## ScaledTransmitCovid:V_Product:V_presentation3 0.2001
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 0.6154
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 1.6445
## ScaledTransmitCovid:V_presentation3 0.7859
## EXPGRP_TEXT:V_presentation3 2.3048
## ScaledCatchCovid:ScaledTransmitCovid 2.5025
## ScaledCatchCovid:V_Product:V_presentation3 1.8966
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 2.5721
## EXPGRP_TEXT:ScaledCatchCovid 0.2703
## EXPGRP_TEXT:V_Product 0.7371
## EXPGRP_TEXT 0.0769
## ScaledCatchCovid:V_Product 5.8950
## ScaledTransmitCovid:V_Product 4.1976
## ScaledCatchCovid:V_presentation3 8.0161
## V_Product:V_presentation3 13.2352
## Pr(>F)
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 0.3811982
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product 0.4978202
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3 0.5006782
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product 0.3035044
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 0.2043327
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3 0.6330978
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid 0.6031363
## EXPGRP_TEXT:ScaledTransmitCovid 0.7501679
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3 0.2252572
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3 0.5568031
## EXPGRP_TEXT:V_Product:V_presentation3 0.4922391
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3 0.2401026
## ScaledTransmitCovid:V_Product:V_presentation3 0.9625244
## ScaledCatchCovid:ScaledTransmitCovid:V_Product 0.6049700
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3 0.1932501
## ScaledTransmitCovid:V_presentation3 0.4557607
## EXPGRP_TEXT:V_presentation3 0.0999159
## ScaledCatchCovid:ScaledTransmitCovid 0.1137442
## ScaledCatchCovid:V_Product:V_presentation3 0.0915406
## EXPGRP_TEXT:ScaledCatchCovid:V_Product 0.0524103
## EXPGRP_TEXT:ScaledCatchCovid 0.6031904
## EXPGRP_TEXT:V_Product 0.5297702
## EXPGRP_TEXT 0.7816376
## ScaledCatchCovid:V_Product 0.0005198
## ScaledTransmitCovid:V_Product 0.0056528
## ScaledCatchCovid:V_presentation3 0.0003355
## V_Product:V_presentation3 8.193e-13
##
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_Product
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product:V_presentation3
## EXPGRP_TEXT:ScaledTransmitCovid:V_Product
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid:V_presentation3
## EXPGRP_TEXT:ScaledTransmitCovid:V_presentation3
## EXPGRP_TEXT:ScaledCatchCovid:ScaledTransmitCovid
## EXPGRP_TEXT:ScaledTransmitCovid
## EXPGRP_TEXT:ScaledCatchCovid:V_Product:V_presentation3
## EXPGRP_TEXT:ScaledCatchCovid:V_presentation3
## EXPGRP_TEXT:V_Product:V_presentation3
## ScaledCatchCovid:ScaledTransmitCovid:V_Product:V_presentation3
## ScaledTransmitCovid:V_Product:V_presentation3
## ScaledCatchCovid:ScaledTransmitCovid:V_Product
## ScaledCatchCovid:ScaledTransmitCovid:V_presentation3
## ScaledTransmitCovid:V_presentation3
## EXPGRP_TEXT:V_presentation3 .
## ScaledCatchCovid:ScaledTransmitCovid
## ScaledCatchCovid:V_Product:V_presentation3 .
## EXPGRP_TEXT:ScaledCatchCovid:V_Product .
## EXPGRP_TEXT:ScaledCatchCovid
## EXPGRP_TEXT:V_Product
## EXPGRP_TEXT
## ScaledCatchCovid:V_Product ***
## ScaledTransmitCovid:V_Product **
## ScaledCatchCovid:V_presentation3 ***
## V_Product:V_presentation3 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Model found:
## MorallyWrong ~ ScaledCatchCovid + ScaledTransmitCovid + V_Product + V_presentation3 + (1 | ID) + ScaledCatchCovid:V_Product + ScaledTransmitCovid:V_Product + ScaledCatchCovid:V_presentation3 + V_Product:V_presentation3
dff_q <- dff_q %>%
mutate(V_Racenamef = case_when(V_Racename_EXPGRP_Product_Presentation %>% str_detect("^W_") ~ "White",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^B_") ~ "Black",
V_Racename_EXPGRP_Product_Presentation %>% str_detect("^C_") ~ "Chinese",
V_Racename_EXPGRP_Product_Presentation%>% str_detect("^I_") ~ "Indian"))
dff_q$V_Racenamef <- relevel(dff_q$V_Racenamef %>% as.factor, "White")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 4, Race Name")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "V_Racenamef")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:21 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## White - Black & 3.26* & 0.87 & 1.41* \\
## White - Chinese & 3.25* & 1.07 & 0.98 \\
## White - Indian & 1.09 & 0.59 & 1.62* \\
## Black - Chinese & -0.01 & 0.2 & -0.43 \\
## Black - Indian & -2.17. & -0.27 & 0.21 \\
## Chinese - Indian & -2.15. & -0.47 & 0.64 \\
## \hline
## \end{tabular}
## \end{table}
tibble(test=dff_q$V_Racenamef, test2=dff_q$V_Racenamef %>% as.numeric())
## # A tibble: 9,584 × 2
## test test2
## <fct> <dbl>
## 1 Indian 4
## 2 Indian 4
## 3 Indian 4
## 4 Indian 4
## 5 Chinese 3
## 6 Chinese 3
## 7 Chinese 3
## 8 Chinese 3
## 9 White 1
## 10 White 1
## # … with 9,574 more rows
## # ℹ Use `print(n = ...)` to see more rows
set.seed(321)
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = V_Racenamef %>% as.numeric(),
xj = jitter(V_Racenamef %>% as.numeric(), amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_Racenamef), size = .5) +
geom_half_boxplot(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("White", "Black", "Chinese", "Indian")) +
xlab("Race of the Name") +
facet_grid(~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model04_racename.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
dff_q$EXPGRP_TEXT <- relevel(dff_q$EXPGRP_TEXT %>% as.factor, "White")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "EXPGRP_TEXT")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:23 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## White - Chinese & -2.52 & -2.73 & -1.85 \\
## \hline
## \end{tabular}
## \end{table}
tibble(test=dff_q$EXPGRP_TEXT, test2=dff_q$EXPGRP_TEXT %>% as.numeric())
## # A tibble: 9,584 × 2
## test test2
## <fct> <dbl>
## 1 White 1
## 2 White 1
## 3 White 1
## 4 White 1
## 5 White 1
## 6 White 1
## 7 White 1
## 8 White 1
## 9 White 1
## 10 White 1
## # … with 9,574 more rows
## # ℹ Use `print(n = ...)` to see more rows
set.seed(321)
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = EXPGRP_TEXT %>% as.numeric(),
xj = jitter(EXPGRP_TEXT %>% as.numeric(), amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = EXPGRP_TEXT), size = .5) +
geom_half_boxplot(aes(x=EXPGRP_TEXT %>% as.numeric(), y = Value, color = EXPGRP_TEXT), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=EXPGRP_TEXT %>% as.numeric(), y = Value, color = EXPGRP_TEXT), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2), labels=c("White","Chinese")) +
xlab("Race of the Respondant") +
facet_grid(~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model05_racerespondant.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
dff_q$RaceContResp <- relevel(dff_q$RaceContResp %>% as.factor, "Chinese")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant")
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}[{conf.low},{conf.high}]{stars}"), statistic = c("{statistic} [{std.error}]",
"{p.value} [{df.error}]"),
output = "latex", title = "Model 1, Product without update")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_remove_all(rownames(dff.means), "RaceContResp")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:26 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## Chinese - NonAmWhite & -3.92. & 1.07 & -1.18 \\
## Chinese - WhiteAmerican & 7.44*** & 4* & 4.17* \\
## NonAmWhite - WhiteAmerican & 11.36*** & 2.93 & 5.35* \\
## \hline
## \end{tabular}
## \end{table}
tibble(test=dff_q$RaceContResp, test2=dff_q$RaceContResp %>% as.numeric())
## # A tibble: 9,584 × 2
## test test2
## <fct> <dbl>
## 1 NonAmWhite 2
## 2 NonAmWhite 2
## 3 NonAmWhite 2
## 4 NonAmWhite 2
## 5 NonAmWhite 2
## 6 NonAmWhite 2
## 7 NonAmWhite 2
## 8 NonAmWhite 2
## 9 NonAmWhite 2
## 10 NonAmWhite 2
## # … with 9,574 more rows
## # ℹ Use `print(n = ...)` to see more rows
set.seed(321)
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = RaceContResp %>% as.numeric(),
xj = jitter(RaceContResp %>% as.numeric(), amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = RaceContResp), size = .5) +
geom_half_boxplot(aes(x=RaceContResp %>% as.numeric(), y = Value, color = RaceContResp), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=RaceContResp %>% as.numeric(), y = Value, color = RaceContResp), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Chinese","Non Am White", "White American" )) +
xlab("Race of the Respondant") +
facet_grid(~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model05_racerespondant.2.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant and name")
arrangeorder <- c("RspWhite - RspChinese",
"NmeWhite - NmeChinese",
"NmeWhite - NmeBlack",
"NmeWhite - NmeIndian",
"NmeBlack - NmeChinese",
"NmeBlack - NmeIndian",
"NmeChinese - NmeIndian",
"RspWhite:NmeWhite - RspWhite:NmeChinese",
"RspWhite:NmeWhite - RspWhite:NmeBlack",
"RspWhite:NmeWhite - RspWhite:NmeIndian",
"RspWhite:NmeChinese - RspWhite:NmeBlack",
"RspWhite:NmeChinese - RspWhite:NmeIndian",
"RspWhite:NmeBlack - RspWhite:NmeIndian",
"RspChinese:NmeWhite - RspChinese:NmeChinese",
"RspChinese:NmeWhite - RspChinese:NmeBlack",
"RspChinese:NmeWhite - RspChinese:NmeIndian",
"RspChinese:NmeChinese - RspChinese:NmeBlack",
"RspChinese:NmeChinese - RspChinese:NmeIndian",
"RspChinese:NmeBlack - RspChinese:NmeIndian",
"RspWhite:NmeWhite - RspChinese:NmeChinese",
"RspWhite:NmeWhite - RspChinese:NmeWhite",
"RspWhite:NmeWhite - RspChinese:NmeBlack",
"RspWhite:NmeWhite - RspChinese:NmeIndian",
"RspWhite:NmeChinese - RspChinese:NmeChinese",
"RspWhite:NmeChinese - RspChinese:NmeBlack",
"RspWhite:NmeChinese - RspChinese:NmeIndian",
"RspWhite:NmeBlack - RspChinese:NmeIndian")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Rsp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Nme")
data.frame(A=rownames(dff.means) %in% arrangeorder, B=rownames(dff.means))
## A B
## 1 TRUE RspWhite - RspChinese
## 2 TRUE NmeWhite - NmeBlack
## 3 TRUE NmeWhite - NmeChinese
## 4 TRUE NmeWhite - NmeIndian
## 5 TRUE NmeBlack - NmeChinese
## 6 TRUE NmeBlack - NmeIndian
## 7 TRUE NmeChinese - NmeIndian
## 8 TRUE RspWhite:NmeWhite - RspChinese:NmeWhite
## 9 TRUE RspWhite:NmeWhite - RspWhite:NmeBlack
## 10 TRUE RspWhite:NmeWhite - RspChinese:NmeBlack
## 11 TRUE RspWhite:NmeWhite - RspWhite:NmeChinese
## 12 TRUE RspWhite:NmeWhite - RspChinese:NmeChinese
## 13 TRUE RspWhite:NmeWhite - RspWhite:NmeIndian
## 14 TRUE RspWhite:NmeWhite - RspChinese:NmeIndian
## 15 FALSE RspChinese:NmeWhite - RspWhite:NmeBlack
## 16 TRUE RspChinese:NmeWhite - RspChinese:NmeBlack
## 17 FALSE RspChinese:NmeWhite - RspWhite:NmeChinese
## 18 TRUE RspChinese:NmeWhite - RspChinese:NmeChinese
## 19 FALSE RspChinese:NmeWhite - RspWhite:NmeIndian
## 20 TRUE RspChinese:NmeWhite - RspChinese:NmeIndian
## 21 FALSE RspWhite:NmeBlack - RspChinese:NmeBlack
## 22 FALSE RspWhite:NmeBlack - RspWhite:NmeChinese
## 23 FALSE RspWhite:NmeBlack - RspChinese:NmeChinese
## 24 TRUE RspWhite:NmeBlack - RspWhite:NmeIndian
## 25 TRUE RspWhite:NmeBlack - RspChinese:NmeIndian
## 26 FALSE RspChinese:NmeBlack - RspWhite:NmeChinese
## 27 FALSE RspChinese:NmeBlack - RspChinese:NmeChinese
## 28 FALSE RspChinese:NmeBlack - RspWhite:NmeIndian
## 29 TRUE RspChinese:NmeBlack - RspChinese:NmeIndian
## 30 TRUE RspWhite:NmeChinese - RspChinese:NmeChinese
## 31 TRUE RspWhite:NmeChinese - RspWhite:NmeIndian
## 32 TRUE RspWhite:NmeChinese - RspChinese:NmeIndian
## 33 FALSE RspChinese:NmeChinese - RspWhite:NmeIndian
## 34 TRUE RspChinese:NmeChinese - RspChinese:NmeIndian
## 35 FALSE RspWhite:NmeIndian - RspChinese:NmeIndian
dff.means <- dff.means %>%
mutate(name=rownames(.) %>% factor(levels=arrangeorder)) %>%
filter(!(is.na(name))) %>%
arrange(name) %>%
dplyr::select(-name)
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## 1 & -2.52 & -2.73 & -1.85 \\
## 2 & 4.06** & 1.24. & 0.89 \\
## 3 & 3.9** & 0.79 & 1.27. \\
## 4 & 1.45 & 0.49 & 1.45* \\
## 5 & 0.16 & 0.45 & -0.37 \\
## 6 & -2.45. & -0.3 & 0.18 \\
## 7 & -2.61. & -0.75 & 0.56 \\
## 8 & 1.74 & 0.75 & 1.15 \\
## 9 & 2.06 & 1.01 & 1.67* \\
## 10 & 0.43 & 0.79 & 1.93* \\
## 11 & -1.31 & 0.04 & 0.78 \\
## 12 & -1.63 & -0.23 & 0.26 \\
## 13 & 6.37** & 1.73 & 0.64 \\
## 14 & 5.74* & 0.56 & 0.86 \\
## 15 & 2.47 & 0.19 & 0.97 \\
## 16 & -3.91. & -1.53 & 0.33 \\
## 17 & -3.27 & -0.36 & 0.11 \\
## 18 & 1.27 & -0.99 & -0.64 \\
## 19 & -5.1* & -2.71 & -1.28 \\
## 20 & 0.63 & -2.16 & -0.42 \\
## 21 & -2.64 & -2.52 & -0.31 \\
## 22 & -0.47 & -1.73 & -1.79 \\
## 23 & -4.38. & -3.27. & -1.46 \\
## 24 & -4.7. & -3.53. & -1.99 \\
## \hline
## \end{tabular}
## \end{table}
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_PP=str_extract(p1, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}"),
p2V_PP=str_extract(p2, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}")) %>%
filter(!is.na(p1V_PP) & p1V_PP==p2V_PP)
f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT <- function(c_WHICHPRODUCT){
dff.means.comp %>%
filter(!str_detect(name, "Indian|Black"), str_detect(name,c_WHICHPRODUCT)) %>%
mutate(name = name %>%
str_replace_all("EXPGRP_TEXT", "Rsp") %>%
str_replace_all("V_Racenamef", "Nme") %>%
str_remove_all("V_Product") %>%
str_remove_all("V_presentation3")) %>%
arrange(match(name,
arrangeorder %>%
str_replace_all("CHANGEFORPRODUCT",
c_WHICHPRODUCT))) %>%
rownames_to_column(var = "k") %>%
mutate(comp1 = str_extract(name, "[A-z0-9:]{1,} "),
comp2 = str_extract(name, " [A-z0-9:]{1,}")) %>%
dplyr::select(comp1, comp2, MorallyWrong, CatchCovid, TransmitCovid) %>%
xtable::xtable(caption = paste("Mean comparison of Model 9, for ", c_WHICHPRODUCT, " and White and Chinese name")) %>%
print(include.rownames=FALSE)
return()
}
map(dff_q$V_Product %>% levels(), f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for hardwaresupplies and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for toiletpaper and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for cigarettes and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for babyformula and White and Chinese name}
## \end{table}
## [[1]]
## NULL
##
## [[2]]
## NULL
##
## [[3]]
## NULL
##
## [[4]]
## NULL
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite - RespChinese & -2.52 & -2.73 & -1.85 \\
## NameWhite - NameBlack & 3.9** & 0.79 & 1.27. \\
## NameWhite - NameChinese & 4.06** & 1.24. & 0.89 \\
## NameWhite - NameIndian & 1.45 & 0.49 & 1.45* \\
## NameBlack - NameChinese & 0.16 & 0.45 & -0.37 \\
## NameBlack - NameIndian & -2.45. & -0.3 & 0.18 \\
## NameChinese - NameIndian & -2.61. & -0.75 & 0.56 \\
## RespWhite:NameWhite - RespChinese:NameWhite & -5.1* & -2.71 & -1.28 \\
## RespWhite:NameWhite - RespWhite:NameBlack & 2.06 & 1.01 & 1.67* \\
## RespWhite:NameWhite - RespChinese:NameBlack & 0.63 & -2.16 & -0.42 \\
## RespWhite:NameWhite - RespWhite:NameChinese & 1.74 & 0.75 & 1.15 \\
## RespWhite:NameWhite - RespChinese:NameChinese & 1.27 & -0.99 & -0.64 \\
## RespWhite:NameWhite - RespWhite:NameIndian & 0.43 & 0.79 & 1.93* \\
## RespWhite:NameWhite - RespChinese:NameIndian & -2.64 & -2.52 & -0.31 \\
## RespChinese:NameWhite - RespWhite:NameBlack & 7.17** & 3.73. & 2.95 \\
## RespChinese:NameWhite - RespChinese:NameBlack & 5.74* & 0.56 & 0.86 \\
## RespChinese:NameWhite - RespWhite:NameChinese & 6.84** & 3.46. & 2.43 \\
## RespChinese:NameWhite - RespChinese:NameChinese & 6.37** & 1.73 & 0.64 \\
## RespChinese:NameWhite - RespWhite:NameIndian & 5.54* & 3.5. & 3.21 \\
## RespChinese:NameWhite - RespChinese:NameIndian & 2.47 & 0.19 & 0.97 \\
## RespWhite:NameBlack - RespChinese:NameBlack & -1.43 & -3.17 & -2.09 \\
## RespWhite:NameBlack - RespWhite:NameChinese & -0.32 & -0.27 & -0.52 \\
## RespWhite:NameBlack - RespChinese:NameChinese & -0.79 & -2 & -2.31 \\
## RespWhite:NameBlack - RespWhite:NameIndian & -1.63 & -0.23 & 0.26 \\
## RespWhite:NameBlack - RespChinese:NameIndian & -4.7. & -3.53. & -1.99 \\
## RespChinese:NameBlack - RespWhite:NameChinese & 1.1 & 2.9 & 1.57 \\
## RespChinese:NameBlack - RespChinese:NameChinese & 0.64 & 1.17 & -0.22 \\
## RespChinese:NameBlack - RespWhite:NameIndian & -0.2 & 2.94 & 2.35 \\
## RespChinese:NameBlack - RespChinese:NameIndian & -3.27 & -0.36 & 0.11 \\
## RespWhite:NameChinese - RespChinese:NameChinese & -0.47 & -1.73 & -1.79 \\
## RespWhite:NameChinese - RespWhite:NameIndian & -1.31 & 0.04 & 0.78 \\
## RespWhite:NameChinese - RespChinese:NameIndian & -4.38. & -3.27. & -1.46 \\
## RespChinese:NameChinese - RespWhite:NameIndian & -0.84 & 1.77 & 2.57 \\
## RespChinese:NameChinese - RespChinese:NameIndian & -3.91. & -1.53 & 0.33 \\
## RespWhite:NameIndian - RespChinese:NameIndian & -3.07 & -3.31. & -2.25 \\
## \hline
## \end{tabular}
## \end{table}
tibble(test=dff_q$EXPGRP_TEXT, test2=dff_q$EXPGRP_TEXT %>% as.numeric())
## # A tibble: 9,584 × 2
## test test2
## <fct> <dbl>
## 1 White 1
## 2 White 1
## 3 White 1
## 4 White 1
## 5 White 1
## 6 White 1
## 7 White 1
## 8 White 1
## 9 White 1
## 10 White 1
## # … with 9,574 more rows
## # ℹ Use `print(n = ...)` to see more rows
set.seed(321)
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = V_Racenamef %>% as.numeric(),
xj = jitter(V_Racenamef %>% as.numeric(), amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_Racenamef), size = .5) +
geom_half_boxplot(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("White", "Black", "Chinese", "Indian")) +
xlab("Race of the Name") +
facet_grid(EXPGRP_TEXT~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model06_racerespondant.racename.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant and name")
arrangeorder <- c("RspChinese - RspNonAmWhite",
"RspChinese - RspWhiteAmerican",
"RspNonAmWhite - RspWhiteAmerican",
"NmeWhite - NmeChinese",
"NmeWhite - NmeBlack",
"NmeWhite - NmeIndian",
"NmeBlack - NmeChinese",
"NmeBlack - NmeIndian",
"NmeChinese - NmeIndian",
"RspWhite:NmeWhite - RspWhite:NmeChinese",
"RspWhite:NmeWhite - RspWhite:NmeBlack",
"RspWhite:NmeWhite - RspWhite:NmeIndian",
"RspWhite:NmeChinese - RspWhite:NmeBlack",
"RspWhite:NmeChinese - RspWhite:NmeIndian",
"RspWhite:NmeBlack - RspWhite:NmeIndian",
"RspChinese:NmeWhite - RspChinese:NmeChinese",
"RspChinese:NmeWhite - RspChinese:NmeBlack",
"RspChinese:NmeWhite - RspChinese:NmeIndian",
"RspChinese:NmeChinese - RspChinese:NmeBlack",
"RspChinese:NmeChinese - RspChinese:NmeIndian",
"RspChinese:NmeBlack - RspChinese:NmeIndian",
"RspWhite:NmeWhite - RspChinese:NmeChinese",
"RspWhite:NmeWhite - RspChinese:NmeWhite",
"RspWhite:NmeWhite - RspChinese:NmeBlack",
"RspWhite:NmeWhite - RspChinese:NmeIndian",
"RspWhite:NmeChinese - RspChinese:NmeChinese",
"RspWhite:NmeChinese - RspChinese:NmeBlack",
"RspWhite:NmeChinese - RspChinese:NmeIndian",
"RspWhite:NmeBlack - RspChinese:NmeIndian")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "RaceContResp", "Rsp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Nme")
data.frame(A=rownames(dff.means) %in% arrangeorder, B=rownames(dff.means))
## A B
## 1 TRUE RspChinese - RspNonAmWhite
## 2 TRUE RspChinese - RspWhiteAmerican
## 3 TRUE RspNonAmWhite - RspWhiteAmerican
## 4 TRUE NmeWhite - NmeBlack
## 5 TRUE NmeWhite - NmeChinese
## 6 TRUE NmeWhite - NmeIndian
## 7 TRUE NmeBlack - NmeChinese
## 8 TRUE NmeBlack - NmeIndian
## 9 TRUE NmeChinese - NmeIndian
## 10 FALSE RspChinese:NmeWhite - RspNonAmWhite:NmeWhite
## 11 FALSE RspChinese:NmeWhite - RspWhiteAmerican:NmeWhite
## 12 TRUE RspChinese:NmeWhite - RspChinese:NmeBlack
## 13 FALSE RspChinese:NmeWhite - RspNonAmWhite:NmeBlack
## 14 FALSE RspChinese:NmeWhite - RspWhiteAmerican:NmeBlack
## 15 TRUE RspChinese:NmeWhite - RspChinese:NmeChinese
## 16 FALSE RspChinese:NmeWhite - RspNonAmWhite:NmeChinese
## 17 FALSE RspChinese:NmeWhite - RspWhiteAmerican:NmeChinese
## 18 TRUE RspChinese:NmeWhite - RspChinese:NmeIndian
## 19 FALSE RspChinese:NmeWhite - RspNonAmWhite:NmeIndian
## 20 FALSE RspChinese:NmeWhite - RspWhiteAmerican:NmeIndian
## 21 FALSE RspNonAmWhite:NmeWhite - RspWhiteAmerican:NmeWhite
## 22 FALSE RspNonAmWhite:NmeWhite - RspChinese:NmeBlack
## 23 FALSE RspNonAmWhite:NmeWhite - RspNonAmWhite:NmeBlack
## 24 FALSE RspNonAmWhite:NmeWhite - RspWhiteAmerican:NmeBlack
## 25 FALSE RspNonAmWhite:NmeWhite - RspChinese:NmeChinese
## 26 FALSE RspNonAmWhite:NmeWhite - RspNonAmWhite:NmeChinese
## 27 FALSE RspNonAmWhite:NmeWhite - RspWhiteAmerican:NmeChinese
## 28 FALSE RspNonAmWhite:NmeWhite - RspChinese:NmeIndian
## 29 FALSE RspNonAmWhite:NmeWhite - RspNonAmWhite:NmeIndian
## 30 FALSE RspNonAmWhite:NmeWhite - RspWhiteAmerican:NmeIndian
## 31 FALSE RspWhiteAmerican:NmeWhite - RspChinese:NmeBlack
## 32 FALSE RspWhiteAmerican:NmeWhite - RspNonAmWhite:NmeBlack
## 33 FALSE RspWhiteAmerican:NmeWhite - RspWhiteAmerican:NmeBlack
## 34 FALSE RspWhiteAmerican:NmeWhite - RspChinese:NmeChinese
## 35 FALSE RspWhiteAmerican:NmeWhite - RspNonAmWhite:NmeChinese
## 36 FALSE RspWhiteAmerican:NmeWhite - RspWhiteAmerican:NmeChinese
## 37 FALSE RspWhiteAmerican:NmeWhite - RspChinese:NmeIndian
## 38 FALSE RspWhiteAmerican:NmeWhite - RspNonAmWhite:NmeIndian
## 39 FALSE RspWhiteAmerican:NmeWhite - RspWhiteAmerican:NmeIndian
## 40 FALSE RspChinese:NmeBlack - RspNonAmWhite:NmeBlack
## 41 FALSE RspChinese:NmeBlack - RspWhiteAmerican:NmeBlack
## 42 FALSE RspChinese:NmeBlack - RspChinese:NmeChinese
## 43 FALSE RspChinese:NmeBlack - RspNonAmWhite:NmeChinese
## 44 FALSE RspChinese:NmeBlack - RspWhiteAmerican:NmeChinese
## 45 TRUE RspChinese:NmeBlack - RspChinese:NmeIndian
## 46 FALSE RspChinese:NmeBlack - RspNonAmWhite:NmeIndian
## 47 FALSE RspChinese:NmeBlack - RspWhiteAmerican:NmeIndian
## 48 FALSE RspNonAmWhite:NmeBlack - RspWhiteAmerican:NmeBlack
## 49 FALSE RspNonAmWhite:NmeBlack - RspChinese:NmeChinese
## 50 FALSE RspNonAmWhite:NmeBlack - RspNonAmWhite:NmeChinese
## 51 FALSE RspNonAmWhite:NmeBlack - RspWhiteAmerican:NmeChinese
## 52 FALSE RspNonAmWhite:NmeBlack - RspChinese:NmeIndian
## 53 FALSE RspNonAmWhite:NmeBlack - RspNonAmWhite:NmeIndian
## 54 FALSE RspNonAmWhite:NmeBlack - RspWhiteAmerican:NmeIndian
## 55 FALSE RspWhiteAmerican:NmeBlack - RspChinese:NmeChinese
## 56 FALSE RspWhiteAmerican:NmeBlack - RspNonAmWhite:NmeChinese
## 57 FALSE RspWhiteAmerican:NmeBlack - RspWhiteAmerican:NmeChinese
## 58 FALSE RspWhiteAmerican:NmeBlack - RspChinese:NmeIndian
## 59 FALSE RspWhiteAmerican:NmeBlack - RspNonAmWhite:NmeIndian
## 60 FALSE RspWhiteAmerican:NmeBlack - RspWhiteAmerican:NmeIndian
## 61 FALSE RspChinese:NmeChinese - RspNonAmWhite:NmeChinese
## 62 FALSE RspChinese:NmeChinese - RspWhiteAmerican:NmeChinese
## 63 TRUE RspChinese:NmeChinese - RspChinese:NmeIndian
## 64 FALSE RspChinese:NmeChinese - RspNonAmWhite:NmeIndian
## 65 FALSE RspChinese:NmeChinese - RspWhiteAmerican:NmeIndian
## 66 FALSE RspNonAmWhite:NmeChinese - RspWhiteAmerican:NmeChinese
## 67 FALSE RspNonAmWhite:NmeChinese - RspChinese:NmeIndian
## 68 FALSE RspNonAmWhite:NmeChinese - RspNonAmWhite:NmeIndian
## 69 FALSE RspNonAmWhite:NmeChinese - RspWhiteAmerican:NmeIndian
## 70 FALSE RspWhiteAmerican:NmeChinese - RspChinese:NmeIndian
## 71 FALSE RspWhiteAmerican:NmeChinese - RspNonAmWhite:NmeIndian
## 72 FALSE RspWhiteAmerican:NmeChinese - RspWhiteAmerican:NmeIndian
## 73 FALSE RspChinese:NmeIndian - RspNonAmWhite:NmeIndian
## 74 FALSE RspChinese:NmeIndian - RspWhiteAmerican:NmeIndian
## 75 FALSE RspNonAmWhite:NmeIndian - RspWhiteAmerican:NmeIndian
dff.means <- dff.means %>%
mutate(name=rownames(.) %>% factor(levels=arrangeorder)) %>%
filter(!(is.na(name))) %>%
arrange(name) %>%
dplyr::select(-name)
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:32 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## 1 & -3.92. & 1.07 & -1.18 \\
## 2 & 7.44*** & 4* & 4.17* \\
## 3 & 11.36*** & 2.93 & 5.35* \\
## 4 & 3.15* & 1.09 & 0.91 \\
## 5 & 3.14* & 0.84 & 1.28. \\
## 6 & 0.99 & 0.57 & 1.54* \\
## 7 & 0.02 & 0.25 & -0.37 \\
## 8 & -2.15. & -0.27 & 0.26 \\
## 9 & -2.16. & -0.52 & 0.63 \\
## 10 & 6.37** & 1.73 & 0.64 \\
## 11 & 5.74* & 0.56 & 0.86 \\
## 12 & 2.47 & 0.19 & 0.97 \\
## 13 & -3.91. & -1.53 & 0.33 \\
## 14 & -3.27 & -0.36 & 0.11 \\
## \hline
## \end{tabular}
## \end{table}
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_PP=str_extract(p1, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}"),
p2V_PP=str_extract(p2, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}")) %>%
filter(!is.na(p1V_PP) & p1V_PP==p2V_PP)
f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT <- function(c_WHICHPRODUCT){
dff.means.comp %>%
filter(!str_detect(name, "Indian|Black"), str_detect(name,c_WHICHPRODUCT)) %>%
mutate(name = name %>%
str_replace_all("EXPGRP_TEXT", "Rsp") %>%
str_replace_all("V_Racenamef", "Nme") %>%
str_remove_all("V_Product") %>%
str_remove_all("V_presentation3")) %>%
arrange(match(name,
arrangeorder %>%
str_replace_all("CHANGEFORPRODUCT",
c_WHICHPRODUCT))) %>%
rownames_to_column(var = "k") %>%
mutate(comp1 = str_extract(name, "[A-z0-9:]{1,} "),
comp2 = str_extract(name, " [A-z0-9:]{1,}")) %>%
dplyr::select(comp1, comp2, MorallyWrong, CatchCovid, TransmitCovid) %>%
xtable::xtable(caption = paste("Mean comparison of Model 9, for ", c_WHICHPRODUCT, " and White and Chinese name")) %>%
print(include.rownames=FALSE)
return()
}
map(dff_q$V_Product %>% levels(), f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:32 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for hardwaresupplies and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:32 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for toiletpaper and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:32 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for cigarettes and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:32 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for babyformula and White and Chinese name}
## \end{table}
## [[1]]
## NULL
##
## [[2]]
## NULL
##
## [[3]]
## NULL
##
## [[4]]
## NULL
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:33 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RaceContRespChinese - RaceContRespNonAmWhite & -3.92. & 1.07 & -1.18 \\
## RaceContRespChinese - RaceContRespWhiteAmerican & 7.44*** & 4* & 4.17* \\
## RaceContRespNonAmWhite - RaceContRespWhiteAmerican & 11.36*** & 2.93 & 5.35* \\
## NameWhite - NameBlack & 3.14* & 0.84 & 1.28. \\
## NameWhite - NameChinese & 3.15* & 1.09 & 0.91 \\
## NameWhite - NameIndian & 0.99 & 0.57 & 1.54* \\
## NameBlack - NameChinese & 0.02 & 0.25 & -0.37 \\
## NameBlack - NameIndian & -2.15. & -0.27 & 0.26 \\
## NameChinese - NameIndian & -2.16. & -0.52 & 0.63 \\
## RaceContRespChinese:NameWhite - RaceContRespNonAmWhite:NameWhite & -0.06 & 1.13 & -0.89 \\
## RaceContRespChinese:NameWhite - RaceContRespWhiteAmerican:NameWhite & 9.05** & 3.92. & 2.95 \\
## RaceContRespChinese:NameWhite - RaceContRespChinese:NameBlack & 5.74* & 0.56 & 0.86 \\
## RaceContRespChinese:NameWhite - RaceContRespNonAmWhite:NameBlack & 0.09 & 1.82 & -0.8 \\
## RaceContRespChinese:NameWhite - RaceContRespWhiteAmerican:NameBlack & 12.58*** & 5.19* & 5.82* \\
## RaceContRespChinese:NameWhite - RaceContRespChinese:NameChinese & 6.37** & 1.73 & 0.64 \\
## RaceContRespChinese:NameWhite - RaceContRespNonAmWhite:NameChinese & 0.02 & 2.11 & -0.65 \\
## RaceContRespChinese:NameWhite - RaceContRespWhiteAmerican:NameChinese & 12.06*** & 4.5* & 4.78* \\
## RaceContRespChinese:NameWhite - RaceContRespChinese:NameIndian & 2.47 & 0.19 & 0.97 \\
## RaceContRespChinese:NameWhite - RaceContRespNonAmWhite:NameIndian & -1.15 & 1.7 & 0.09 \\
## RaceContRespChinese:NameWhite - RaceContRespWhiteAmerican:NameIndian & 10.64*** & 4.88* & 5.6* \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespWhiteAmerican:NameWhite & 9.11** & 2.79 & 3.84 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespChinese:NameBlack & 5.8. & -0.57 & 1.75 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespNonAmWhite:NameBlack & 0.15 & 0.69 & 0.09 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespWhiteAmerican:NameBlack & 12.64*** & 4.05. & 6.72** \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespChinese:NameChinese & 6.44* & 0.6 & 1.53 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespNonAmWhite:NameChinese & 0.08 & 0.98 & 0.25 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespWhiteAmerican:NameChinese & 12.12*** & 3.36 & 5.67* \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespChinese:NameIndian & 2.53 & -0.94 & 1.86 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespNonAmWhite:NameIndian & -1.09 & 0.57 & 0.98 \\
## RaceContRespNonAmWhite:NameWhite - RaceContRespWhiteAmerican:NameIndian & 10.7*** & 3.75 & 6.49** \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespChinese:NameBlack & -3.31 & -3.37 & -2.09 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespNonAmWhite:NameBlack & -8.97** & -2.1 & -3.75 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespWhiteAmerican:NameBlack & 3.52. & 1.26 & 2.88** \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespChinese:NameChinese & -2.68 & -2.2 & -2.31 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespNonAmWhite:NameChinese & -9.03** & -1.81 & -3.59 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespWhiteAmerican:NameChinese & 3 & 0.57 & 1.83. \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespChinese:NameIndian & -6.59* & -3.73. & -1.98 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespNonAmWhite:NameIndian & -10.2*** & -2.23 & -2.86 \\
## RaceContRespWhiteAmerican:NameWhite - RaceContRespWhiteAmerican:NameIndian & 1.59 & 0.96 & 2.66* \\
## RaceContRespChinese:NameBlack - RaceContRespNonAmWhite:NameBlack & -5.65. & 1.26 & -1.66 \\
## RaceContRespChinese:NameBlack - RaceContRespWhiteAmerican:NameBlack & 6.84* & 4.63* & 4.96* \\
## RaceContRespChinese:NameBlack - RaceContRespChinese:NameChinese & 0.64 & 1.17 & -0.22 \\
## RaceContRespChinese:NameBlack - RaceContRespNonAmWhite:NameChinese & -5.72. & 1.55 & -1.51 \\
## RaceContRespChinese:NameBlack - RaceContRespWhiteAmerican:NameChinese & 6.32* & 3.94. & 3.92. \\
## RaceContRespChinese:NameBlack - RaceContRespChinese:NameIndian & -3.27 & -0.36 & 0.11 \\
## RaceContRespChinese:NameBlack - RaceContRespNonAmWhite:NameIndian & -6.89* & 1.14 & -0.77 \\
## RaceContRespChinese:NameBlack - RaceContRespWhiteAmerican:NameIndian & 4.9. & 4.32. & 4.74* \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespWhiteAmerican:NameBlack & 12.49*** & 3.36 & 6.63** \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespChinese:NameChinese & 6.29* & -0.1 & 1.44 \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespNonAmWhite:NameChinese & -0.07 & 0.29 & 0.15 \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespWhiteAmerican:NameChinese & 11.97*** & 2.67 & 5.58* \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespChinese:NameIndian & 2.38 & -1.63 & 1.77 \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespNonAmWhite:NameIndian & -1.23 & -0.13 & 0.89 \\
## RaceContRespNonAmWhite:NameBlack - RaceContRespWhiteAmerican:NameIndian & 10.56*** & 3.06 & 6.4** \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespChinese:NameChinese & -6.2* & -3.46 & -5.18* \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespNonAmWhite:NameChinese & -12.56*** & -3.08 & -6.47** \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespWhiteAmerican:NameChinese & -0.52 & -0.69 & -1.04 \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespChinese:NameIndian & -10.11*** & -4.99* & -4.86* \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespNonAmWhite:NameIndian & -13.72*** & -3.49 & -5.73* \\
## RaceContRespWhiteAmerican:NameBlack - RaceContRespWhiteAmerican:NameIndian & -1.93 & -0.31 & -0.22 \\
## RaceContRespChinese:NameChinese - RaceContRespNonAmWhite:NameChinese & -6.36* & 0.38 & -1.29 \\
## RaceContRespChinese:NameChinese - RaceContRespWhiteAmerican:NameChinese & 5.68* & 2.77 & 4.14. \\
## RaceContRespChinese:NameChinese - RaceContRespChinese:NameIndian & -3.91. & -1.53 & 0.33 \\
## RaceContRespChinese:NameChinese - RaceContRespNonAmWhite:NameIndian & -7.52* & -0.03 & -0.55 \\
## RaceContRespChinese:NameChinese - RaceContRespWhiteAmerican:NameIndian & 4.27 & 3.15 & 4.96* \\
## RaceContRespNonAmWhite:NameChinese - RaceContRespWhiteAmerican:NameChinese & 12.04*** & 2.39 & 5.43* \\
## RaceContRespNonAmWhite:NameChinese - RaceContRespChinese:NameIndian & 2.45 & -1.91 & 1.62 \\
## RaceContRespNonAmWhite:NameChinese - RaceContRespNonAmWhite:NameIndian & -1.17 & -0.41 & 0.74 \\
## RaceContRespNonAmWhite:NameChinese - RaceContRespWhiteAmerican:NameIndian & 10.62*** & 2.77 & 6.25** \\
## RaceContRespWhiteAmerican:NameChinese - RaceContRespChinese:NameIndian & -9.59*** & -4.3. & -3.81. \\
## RaceContRespWhiteAmerican:NameChinese - RaceContRespNonAmWhite:NameIndian & -13.21*** & -2.8 & -4.69* \\
## RaceContRespWhiteAmerican:NameChinese - RaceContRespWhiteAmerican:NameIndian & -1.41 & 0.38 & 0.82 \\
## RaceContRespChinese:NameIndian - RaceContRespNonAmWhite:NameIndian & -3.61 & 1.5 & -0.88 \\
## RaceContRespChinese:NameIndian - RaceContRespWhiteAmerican:NameIndian & 8.18** & 4.69* & 4.63* \\
## RaceContRespNonAmWhite:NameIndian - RaceContRespWhiteAmerican:NameIndian & 11.79*** & 3.18 & 5.51* \\
## \hline
## \end{tabular}
## \end{table}
tibble(test=dff_q$EXPGRP_TEXT, test2=dff_q$EXPGRP_TEXT %>% as.numeric())
## # A tibble: 9,584 × 2
## test test2
## <fct> <dbl>
## 1 White 1
## 2 White 1
## 3 White 1
## 4 White 1
## 5 White 1
## 6 White 1
## 7 White 1
## 8 White 1
## 9 White 1
## 10 White 1
## # … with 9,574 more rows
## # ℹ Use `print(n = ...)` to see more rows
set.seed(321)
grph <- dff_q %>%
filter(V_JudgeSelf==0, V_up==0) %>%
gather(Question, Value, c("MorallyWrong", "CatchCovid", "TransmitCovid")) %>%
mutate(x = V_Racenamef %>% as.numeric(),
xj = jitter(V_Racenamef %>% as.numeric(), amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_Racenamef), size = .5) +
geom_half_boxplot(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=V_Racenamef %>% as.numeric(), y = Value, color = V_Racenamef), position = position_nudge(x = -.3), side = "l") +
scale_x_continuous(breaks=c(1,2,3,4), labels=c("White", "Black", "Chinese", "Indian")) +
xlab("Race of the Name") +
facet_grid(EXPGRP_TEXT~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model06_racerespondant.racename.pdf", width = 10, height = 5)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
dff_q$RaceContResp <- relevel(dff_q$RaceContResp %>% as.factor(), "Chinese")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant and name")
dff_q$RaceContResp <- relevel(dff_q$RaceContResp %>% as.factor(), "WhiteAmerican")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant and name")
dff_q$RaceContResp <- relevel(dff_q$RaceContResp %>% as.factor(), "NonAmWhite")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ RaceContResp*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 5, Race Respondant and name")
dff_q$RaceContResp <- relevel(dff_q$RaceContResp %>% as.factor(), "Chinese")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MorallyWrongcross" = lmer(MorallyWrong ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovidcross" = lmer(CatchCovid ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovidcross" = lmer(TransmitCovid ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.2, Race perceived and Update")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_presentation3", "")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "Name[A-z]{1,}") %>%
str_remove("Name"),
p2V_Name=str_extract(p2, "Name[A-z]{1,}") %>%
str_remove("Name"),
p1V_Up=str_extract(p1, ":[A-z]{1,}") %>%
str_remove(":"),
p2V_Up=str_extract(p2, ":[A-z]{1,}") %>%
str_remove(":"),) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|p1V_Up==p2V_Up|p1V_Name==p2V_Name) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name)
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:39:41 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllllll}
## \hline
## & MorallyWrong & MorallyWrongcross & CatchCovid & CatchCovidcross & TransmitCovid & TransmitCovidcross \\
## \hline
## NameWhite - NameBlack & 1.55. & 0.81 & 0.36 & 0.15 & 0.84. & 0.59 \\
## NameWhite - NameChinese & 2.66** & 2.16* & 0.78. & 0.6 & 0.76 & 0.63 \\
## NameWhite - NameIndian & 0.6 & 0.43 & 0.38 & 0.28 & 1.02* & 0.77 \\
## NameBlack - NameChinese & 1.11 & 1.35 & 0.41 & 0.45 & -0.08 & 0.04 \\
## NameBlack - NameIndian & -0.95 & -0.39 & 0.02 & 0.13 & 0.18 & 0.18 \\
## NameChinese - NameIndian & -2.06* & -1.73. & -0.39 & -0.32 & 0.26 & 0.14 \\
## NONE - Defensive & -5.85*** & -5.86*** & 1.05** & 1.06** & 0.93* & 0.93* \\
## NONE - Prosocial & 10.98*** & 10.87*** & 2.1*** & 2.08*** & 1.8*** & 1.78*** \\
## Defensive - Prosocial & 16.83*** & 16.73*** & 1.05* & 1.02* & 0.86. & 0.85. \\
## NameWhite:NONE - NameBlack:NONE & & 3.26** & & 0.87 & & 1.41* \\
## NameWhite:NONE - NameChinese:NONE & & 3.25** & & 1.07. & & 0.98 \\
## NameWhite:NONE - NameIndian:NONE & & 1.09 & & 0.59 & & 1.62* \\
## NameWhite:NONE - NameWhite:Defensive & & -4.86** & & 1.41. & & 1.66* \\
## NameWhite:NONE - NameWhite:Prosocial & & 13.02*** & & 2.84*** & & 2.56** \\
## NameBlack:NONE - NameChinese:NONE & & -0.01 & & 0.2 & & -0.43 \\
## NameBlack:NONE - NameIndian:NONE & & -2.17. & & -0.27 & & 0.21 \\
## NameBlack:NONE - NameBlack:Defensive & & -8.07*** & & 0.41 & & 0.5 \\
## NameBlack:NONE - NameBlack:Prosocial & & 8.89*** & & 1.69. & & 1.27 \\
## NameChinese:NONE - NameIndian:NONE & & -2.15. & & -0.47 & & 0.64 \\
## NameChinese:NONE - NameChinese:Defensive & & -4.3** & & 1.19 & & 1.4. \\
## NameChinese:NONE - NameChinese:Prosocial & & 9.19*** & & 1.68. & & 1.77. \\
## NameIndian:NONE - NameIndian:Defensive & & -6.21*** & & 1.22 & & 0.17 \\
## NameIndian:NONE - NameIndian:Prosocial & & 12.37*** & & 2.09* & & 1.52. \\
## NameWhite:Defensive - NameBlack:Defensive & & 0.05 & & -0.14 & & 0.24 \\
## NameWhite:Defensive - NameChinese:Defensive & & 3.82* & & 0.84 & & 0.72 \\
## NameWhite:Defensive - NameIndian:Defensive & & -0.25 & & 0.41 & & 0.12 \\
## NameWhite:Defensive - NameWhite:Prosocial & & 17.89*** & & 1.43 & & 0.9 \\
## NameBlack:Defensive - NameChinese:Defensive & & 3.76* & & 0.98 & & 0.48 \\
## NameBlack:Defensive - NameIndian:Defensive & & -0.31 & & 0.54 & & -0.12 \\
## NameBlack:Defensive - NameBlack:Prosocial & & 16.96*** & & 1.28 & & 0.77 \\
## NameChinese:Defensive - NameIndian:Defensive & & -4.07* & & -0.44 & & -0.6 \\
## NameChinese:Defensive - NameChinese:Prosocial & & 13.49*** & & 0.49 & & 0.37 \\
## NameIndian:Defensive - NameIndian:Prosocial & & 18.58*** & & 0.87 & & 1.35 \\
## NameWhite:Prosocial - NameBlack:Prosocial & & -0.88 & & -0.28 & & 0.12 \\
## NameWhite:Prosocial - NameChinese:Prosocial & & -0.58 & & -0.1 & & 0.2 \\
## NameWhite:Prosocial - NameIndian:Prosocial & & 0.44 & & -0.15 & & 0.58 \\
## NameBlack:Prosocial - NameChinese:Prosocial & & 0.29 & & 0.19 & & 0.08 \\
## NameBlack:Prosocial - NameIndian:Prosocial & & 1.32 & & 0.13 & & 0.46 \\
## NameChinese:Prosocial - NameIndian:Prosocial & & 1.02 & & -0.06 & & 0.39 \\
## \hline
## \end{tabular}
## \end{table}
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Racenamef~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model6.2_presentation.racename.pdf", width = 10, height = 13)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"Spill&Race" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid+ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*Race" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&Race&Upd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid+ V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*Race&Upd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&Race*Upd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid+ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*Race*Upd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.3, SpillOver and Race")
grph <- dff_q %>%
gather(Question, Value, c("CatchCovid", "TransmitCovid")) %>%
ggplot(aes(y=MorallyWrong)) +
geom_point(aes(x=Value, color=V_Racenamef), alpha=.3, cex=.1) +
geom_smooth(aes(x=Value, color=V_Racenamef), method='lm') +
facet_wrap(~Question)
grph
## `geom_smooth()` using formula 'y ~ x'
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model6.3_spill.racename.pdf", width = 10, height = 13)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
grph <- dff_q %>%
gather(Question, Value, c("CatchCovid", "TransmitCovid")) %>%
filter(!(is.na(V_presentation3graph))) %>%
ggplot(aes(y=MorallyWrong)) +
geom_point(aes(x=Value, color=V_Racenamef), alpha=.3, cex=.1) +
geom_smooth(aes(x=Value, color=V_Racenamef), method='lm') +
facet_grid(Question~V_presentation3graph)
grph
## `geom_smooth()` using formula 'y ~ x'
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model6.3.2_spill.racename.update.pdf", width = 10, height = 13)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
grph <- dff_q %>%
gather(Question, Value, c("CatchCovid", "TransmitCovid")) %>%
filter(!(is.na(V_presentation3graph))) %>%
ggplot(aes(y=MorallyWrong)) +
geom_point(aes(x=Value, color=V_presentation3graph), alpha=.3, cex=.1) +
geom_smooth(aes(x=Value, color=V_presentation3graph), method='lm') +
facet_grid(Question~V_Racenamef)
grph
## `geom_smooth()` using formula 'y ~ x'
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model6.3.2_spill.racename.update.2.pdf", width = 10, height = 13)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"EXPGRP&Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP*Race&Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + EXPGRP_TEXT:V_Racenamef+ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP+Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Racenamef + ScaledTransmitCovid*ScaledCatchCovid + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP*Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.4, Race perceived and Race Respondant")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_presentation3", "Up")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "Name[A-z]{1,}") %>%
str_remove("Name"),
p2V_Name=str_extract(p2, "Name[A-z]{1,}") %>%
str_remove("Name"),
p1V_Up=str_extract(p1, "Up[A-z]{1,}") %>%
str_remove("Up"),
p2V_Up=str_extract(p2, "Up[A-z]{1,}") %>%
str_remove("Up"),
p1V_Rs=str_extract(p1, "Resp[A-z]{1,}") %>%
str_remove("Resp"),
p2V_Rs=str_extract(p2, "Resp[A-z]{1,}") %>%
str_remove("Resp")) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|is.na(p1V_Rs)|p1V_Up==p2V_Up|p1V_Name==p2V_Name|p1V_Rs==p2V_Rs) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name, -p1V_Rs, -p2V_Rs)
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:00 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllll}
## \hline
## & EXPGRP\&Spill*Race\&Upd & EXPGRP*Race\&Spill*Race\&Upd & EXPGRP+Spill*Race\&Upd & EXPGRP*Spill*Race\&Upd \\
## \hline
## RespWhite - RespChinese & -0.47 & -0.47 & -0.45 & -0.91 \\
## NameWhite - NameBlack & -0.48 & 0.05 & 1.63. & 0.57 \\
## NameWhite - NameChinese & 0.57 & 1.24 & 2.81** & 1.64 \\
## NameWhite - NameIndian & -1.41 & -1.04 & 0.48 & -0.9 \\
## NameBlack - NameChinese & 1.05 & 1.19 & 1.18 & 1.07 \\
## NameBlack - NameIndian & -0.92 & -1.09 & -1.15 & -1.47 \\
## NameChinese - NameIndian & -1.98. & -2.28. & -2.33* & -2.53* \\
## UpNONE - UpDefensive & -6.39*** & -6.4*** & -6.42*** & -6.33*** \\
## UpNONE - UpProsocial & 9.78*** & 9.79*** & 9.8*** & 9.81*** \\
## UpDefensive - UpProsocial & 16.17*** & 16.19*** & 16.23*** & 16.14*** \\
## RespWhite:NameWhite - RespChinese:NameWhite & & -2.73 & -2.69 & -4.26. \\
## RespWhite:NameWhite - RespWhite:NameBlack & & -1.5 & 0.1 & -2.36. \\
## RespWhite:NameWhite - RespChinese:NameBlack & & -1.13 & 0.46 & -0.76 \\
## RespWhite:NameWhite - RespWhite:NameChinese & & -0.66 & 0.95 & -0.95 \\
## RespWhite:NameWhite - RespChinese:NameChinese & & 0.41 & 1.97 & -0.04 \\
## RespWhite:NameWhite - RespWhite:NameIndian & & -2.1. & -0.62 & -2.08 \\
## RespWhite:NameWhite - RespChinese:NameIndian & & -2.71 & -1.12 & -3.97. \\
## RespChinese:NameWhite - RespWhite:NameBlack & & 1.23 & 2.8 & 1.9 \\
## RespChinese:NameWhite - RespChinese:NameBlack & & 1.6 & 3.16* & 3.5. \\
## RespChinese:NameWhite - RespWhite:NameChinese & & 2.07 & 3.64. & 3.32 \\
## RespChinese:NameWhite - RespChinese:NameChinese & & 3.14. & 4.66** & 4.22* \\
## RespChinese:NameWhite - RespWhite:NameIndian & & 0.62 & 2.07 & 2.18 \\
## RespChinese:NameWhite - RespChinese:NameIndian & & 0.02 & 1.58 & 0.29 \\
## RespWhite:NameBlack - RespChinese:NameBlack & & 0.37 & 0.36 & 1.6 \\
## RespWhite:NameBlack - RespWhite:NameChinese & & 0.84 & 0.85 & 1.41 \\
## RespWhite:NameBlack - RespChinese:NameChinese & & 1.9 & 1.87 & 2.32 \\
## RespWhite:NameBlack - RespWhite:NameIndian & & -0.61 & -0.72 & 0.28 \\
## RespWhite:NameBlack - RespChinese:NameIndian & & -1.21 & -1.22 & -1.61 \\
## RespChinese:NameBlack - RespWhite:NameChinese & & 0.47 & 0.48 & -0.18 \\
## RespChinese:NameBlack - RespChinese:NameChinese & & 1.54 & 1.5 & 0.72 \\
## RespChinese:NameBlack - RespWhite:NameIndian & & -0.97 & -1.09 & -1.32 \\
## RespChinese:NameBlack - RespChinese:NameIndian & & -1.58 & -1.58 & -3.21 \\
## RespWhite:NameChinese - RespChinese:NameChinese & & 1.07 & 1.02 & 0.91 \\
## RespWhite:NameChinese - RespWhite:NameIndian & & -1.44 & -1.57 & -1.14 \\
## RespWhite:NameChinese - RespChinese:NameIndian & & -2.05 & -2.07 & -3.02 \\
## RespChinese:NameChinese - RespWhite:NameIndian & & -2.51 & -2.59 & -2.04 \\
## RespChinese:NameChinese - RespChinese:NameIndian & & -3.12. & -3.09* & -3.93* \\
## RespWhite:NameIndian - RespChinese:NameIndian & & -0.6 & -0.49 & -1.89 \\
## \hline
## \end{tabular}
## \end{table}
mixed.lmers <- list(
"RcPercvd" = lmer(MorallyWrong ~ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"Rac&Update" = lmer(MorallyWrong ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Rac*Update" = lmer(MorallyWrong ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&Race" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid+ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*Race" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill*Race&Upd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP&Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRP*Spill*Race&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0))
)
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2's-Summary")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_presentation3", "Up")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "Name[A-z]{1,}") %>%
str_remove("Name"),
p2V_Name=str_extract(p2, "Name[A-z]{1,}") %>%
str_remove("Name"),
p1V_Up=str_extract(p1, "Up[A-z]{1,}") %>%
str_remove("Up"),
p2V_Up=str_extract(p2, "Up[A-z]{1,}") %>%
str_remove("Up"),
p1V_Rs=str_extract(p1, "Resp[A-z]{1,}") %>%
str_remove("Resp"),
p2V_Rs=str_extract(p2, "Resp[A-z]{1,}") %>%
str_remove("Resp")) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|is.na(p1V_Rs)|p1V_Up==p2V_Up|p1V_Name==p2V_Name|p1V_Rs==p2V_Rs) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name, -p1V_Rs, -p2V_Rs)
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:04 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllllllll}
## \hline
## & RcPercvd & Rac\&Update & Rac*Update & Spill\&Race & Spill*Race & Spill*Race\&Upd & EXPGRP\&Spill*Race\&Upd & EXPGRP*Spill*Race\&Upd \\
## \hline
## NameWhite - NameBlack & 3.26* & 1.55. & 0.81 & 0.59 & -0.94 & -0.48 & -0.48 & 0.57 \\
## NameWhite - NameChinese & 3.25* & 2.66** & 2.16* & 1.63. & 0.06 & 0.57 & 0.57 & 1.64 \\
## NameWhite - NameIndian & 1.09 & 0.6 & 0.43 & 0.27 & -2.05. & -1.41 & -1.41 & -0.9 \\
## NameBlack - NameChinese & -0.01 & 1.11 & 1.35 & 1.04 & 1 & 1.05 & 1.05 & 1.07 \\
## NameBlack - NameIndian & -2.17. & -0.95 & -0.39 & -0.32 & -1.11 & -0.92 & -0.92 & -1.47 \\
## NameChinese - NameIndian & -2.15. & -2.06* & -1.73. & -1.36 & -2.11. & -1.98. & -1.98. & -2.53* \\
## UpNONE - UpDefensive & & -5.85*** & -5.86*** & & & -6.39*** & -6.39*** & -6.33*** \\
## UpNONE - UpProsocial & & 10.98*** & 10.87*** & & & 9.78*** & 9.78*** & 9.81*** \\
## UpDefensive - UpProsocial & & 16.83*** & 16.73*** & & & 16.17*** & 16.17*** & 16.14*** \\
## NameWhite:UpNONE - NameBlack:UpNONE & & & 3.26** & & & & & \\
## NameWhite:UpNONE - NameChinese:UpNONE & & & 3.25** & & & & & \\
## NameWhite:UpNONE - NameIndian:UpNONE & & & 1.09 & & & & & \\
## NameWhite:UpNONE - NameWhite:UpDefensive & & & -4.86** & & & & & \\
## NameWhite:UpNONE - NameBlack:UpDefensive & & & -4.81** & & & & & \\
## NameWhite:UpNONE - NameChinese:UpDefensive & & & -1.05 & & & & & \\
## NameWhite:UpNONE - NameIndian:UpDefensive & & & -5.12** & & & & & \\
## NameWhite:UpNONE - NameWhite:UpProsocial & & & 13.02*** & & & & & \\
## NameWhite:UpNONE - NameBlack:UpProsocial & & & 12.15*** & & & & & \\
## NameWhite:UpNONE - NameChinese:UpProsocial & & & 12.44*** & & & & & \\
## NameWhite:UpNONE - NameIndian:UpProsocial & & & 13.46*** & & & & & \\
## NameBlack:UpNONE - NameChinese:UpNONE & & & -0.01 & & & & & \\
## NameBlack:UpNONE - NameIndian:UpNONE & & & -2.17. & & & & & \\
## NameBlack:UpNONE - NameWhite:UpDefensive & & & -8.12*** & & & & & \\
## NameBlack:UpNONE - NameBlack:UpDefensive & & & -8.07*** & & & & & \\
## NameBlack:UpNONE - NameChinese:UpDefensive & & & -4.31** & & & & & \\
## NameBlack:UpNONE - NameIndian:UpDefensive & & & -8.38*** & & & & & \\
## NameBlack:UpNONE - NameWhite:UpProsocial & & & 9.76*** & & & & & \\
## NameBlack:UpNONE - NameBlack:UpProsocial & & & 8.89*** & & & & & \\
## NameBlack:UpNONE - NameChinese:UpProsocial & & & 9.18*** & & & & & \\
## NameBlack:UpNONE - NameIndian:UpProsocial & & & 10.2*** & & & & & \\
## NameChinese:UpNONE - NameIndian:UpNONE & & & -2.15. & & & & & \\
## NameChinese:UpNONE - NameWhite:UpDefensive & & & -8.11*** & & & & & \\
## NameChinese:UpNONE - NameBlack:UpDefensive & & & -8.06*** & & & & & \\
## NameChinese:UpNONE - NameChinese:UpDefensive & & & -4.3** & & & & & \\
## NameChinese:UpNONE - NameIndian:UpDefensive & & & -8.36*** & & & & & \\
## NameChinese:UpNONE - NameWhite:UpProsocial & & & 9.78*** & & & & & \\
## NameChinese:UpNONE - NameBlack:UpProsocial & & & 8.9*** & & & & & \\
## NameChinese:UpNONE - NameChinese:UpProsocial & & & 9.19*** & & & & & \\
## NameChinese:UpNONE - NameIndian:UpProsocial & & & 10.22*** & & & & & \\
## NameIndian:UpNONE - NameWhite:UpDefensive & & & -5.96*** & & & & & \\
## NameIndian:UpNONE - NameBlack:UpDefensive & & & -5.9*** & & & & & \\
## NameIndian:UpNONE - NameChinese:UpDefensive & & & -2.14 & & & & & \\
## NameIndian:UpNONE - NameIndian:UpDefensive & & & -6.21*** & & & & & \\
## NameIndian:UpNONE - NameWhite:UpProsocial & & & 11.93*** & & & & & \\
## NameIndian:UpNONE - NameBlack:UpProsocial & & & 11.05*** & & & & & \\
## NameIndian:UpNONE - NameChinese:UpProsocial & & & 11.35*** & & & & & \\
## NameIndian:UpNONE - NameIndian:UpProsocial & & & 12.37*** & & & & & \\
## NameWhite:UpDefensive - NameBlack:UpDefensive & & & 0.05 & & & & & \\
## NameWhite:UpDefensive - NameChinese:UpDefensive & & & 3.82* & & & & & \\
## NameWhite:UpDefensive - NameIndian:UpDefensive & & & -0.25 & & & & & \\
## NameWhite:UpDefensive - NameWhite:UpProsocial & & & 17.89*** & & & & & \\
## NameWhite:UpDefensive - NameBlack:UpProsocial & & & 17.01*** & & & & & \\
## NameWhite:UpDefensive - NameChinese:UpProsocial & & & 17.3*** & & & & & \\
## NameWhite:UpDefensive - NameIndian:UpProsocial & & & 18.33*** & & & & & \\
## NameBlack:UpDefensive - NameChinese:UpDefensive & & & 3.76* & & & & & \\
## NameBlack:UpDefensive - NameIndian:UpDefensive & & & -0.31 & & & & & \\
## NameBlack:UpDefensive - NameWhite:UpProsocial & & & 17.83*** & & & & & \\
## NameBlack:UpDefensive - NameBlack:UpProsocial & & & 16.96*** & & & & & \\
## NameBlack:UpDefensive - NameChinese:UpProsocial & & & 17.25*** & & & & & \\
## NameBlack:UpDefensive - NameIndian:UpProsocial & & & 18.27*** & & & & & \\
## NameChinese:UpDefensive - NameIndian:UpDefensive & & & -4.07* & & & & & \\
## NameChinese:UpDefensive - NameWhite:UpProsocial & & & 14.07*** & & & & & \\
## NameChinese:UpDefensive - NameBlack:UpProsocial & & & 13.2*** & & & & & \\
## NameChinese:UpDefensive - NameChinese:UpProsocial & & & 13.49*** & & & & & \\
## NameChinese:UpDefensive - NameIndian:UpProsocial & & & 14.51*** & & & & & \\
## NameIndian:UpDefensive - NameWhite:UpProsocial & & & 18.14*** & & & & & \\
## NameIndian:UpDefensive - NameBlack:UpProsocial & & & 17.26*** & & & & & \\
## NameIndian:UpDefensive - NameChinese:UpProsocial & & & 17.55*** & & & & & \\
## NameIndian:UpDefensive - NameIndian:UpProsocial & & & 18.58*** & & & & & \\
## NameWhite:UpProsocial - NameBlack:UpProsocial & & & -0.88 & & & & & \\
## NameWhite:UpProsocial - NameChinese:UpProsocial & & & -0.58 & & & & & \\
## NameWhite:UpProsocial - NameIndian:UpProsocial & & & 0.44 & & & & & \\
## NameBlack:UpProsocial - NameChinese:UpProsocial & & & 0.29 & & & & & \\
## NameBlack:UpProsocial - NameIndian:UpProsocial & & & 1.32 & & & & & \\
## NameChinese:UpProsocial - NameIndian:UpProsocial & & & 1.02 & & & & & \\
## RespWhite - RespChinese & & & & & & & -0.47 & -0.91 \\
## RespWhite:NameWhite - RespChinese:NameWhite & & & & & & & & -4.26. \\
## RespWhite:NameWhite - RespWhite:NameBlack & & & & & & & & -2.36. \\
## RespWhite:NameWhite - RespChinese:NameBlack & & & & & & & & -0.76 \\
## RespWhite:NameWhite - RespWhite:NameChinese & & & & & & & & -0.95 \\
## RespWhite:NameWhite - RespChinese:NameChinese & & & & & & & & -0.04 \\
## RespWhite:NameWhite - RespWhite:NameIndian & & & & & & & & -2.08 \\
## RespWhite:NameWhite - RespChinese:NameIndian & & & & & & & & -3.97. \\
## RespChinese:NameWhite - RespWhite:NameBlack & & & & & & & & 1.9 \\
## RespChinese:NameWhite - RespChinese:NameBlack & & & & & & & & 3.5. \\
## RespChinese:NameWhite - RespWhite:NameChinese & & & & & & & & 3.32 \\
## RespChinese:NameWhite - RespChinese:NameChinese & & & & & & & & 4.22* \\
## RespChinese:NameWhite - RespWhite:NameIndian & & & & & & & & 2.18 \\
## RespChinese:NameWhite - RespChinese:NameIndian & & & & & & & & 0.29 \\
## RespWhite:NameBlack - RespChinese:NameBlack & & & & & & & & 1.6 \\
## RespWhite:NameBlack - RespWhite:NameChinese & & & & & & & & 1.41 \\
## RespWhite:NameBlack - RespChinese:NameChinese & & & & & & & & 2.32 \\
## RespWhite:NameBlack - RespWhite:NameIndian & & & & & & & & 0.28 \\
## RespWhite:NameBlack - RespChinese:NameIndian & & & & & & & & -1.61 \\
## RespChinese:NameBlack - RespWhite:NameChinese & & & & & & & & -0.18 \\
## RespChinese:NameBlack - RespChinese:NameChinese & & & & & & & & 0.72 \\
## RespChinese:NameBlack - RespWhite:NameIndian & & & & & & & & -1.32 \\
## RespChinese:NameBlack - RespChinese:NameIndian & & & & & & & & -3.21 \\
## RespWhite:NameChinese - RespChinese:NameChinese & & & & & & & & 0.91 \\
## RespWhite:NameChinese - RespWhite:NameIndian & & & & & & & & -1.14 \\
## RespWhite:NameChinese - RespChinese:NameIndian & & & & & & & & -3.02 \\
## RespChinese:NameChinese - RespWhite:NameIndian & & & & & & & & -2.04 \\
## RespChinese:NameChinese - RespChinese:NameIndian & & & & & & & & -3.93* \\
## RespWhite:NameIndian - RespChinese:NameIndian & & & & & & & & -1.89 \\
## \hline
## \end{tabular}
## \end{table}
mixed.lmers <- list(
"EXPGRP&Spill&UpdProd" = lmer(MorallyWrong ~ EXPGRP_TEXT + ScaledCatchCovid*ScaledTransmitCovid + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRPSpillRace&Upd" = lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"EXPGRPSpillRace&UpdProd" = lmer(MorallyWrong ~ EXPGRP_TEXT*ScaledTransmitCovid*ScaledCatchCovid*V_Racenamef + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"Spill&EXPGRPRaceUpdProd" = lmer(MorallyWrong ~ ScaledTransmitCovid*ScaledCatchCovid+EXPGRP_TEXT*V_Racenamef*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 3")
dff.means <- difflmeansmodelcomp(mixed.lmers[c(4)])
arrangeorder <- c("NmeWhite:CHANGEFORPRODUCT:Defensive - NmeChinese:CHANGEFORPRODUCT:Defensive",
"NmeWhite:CHANGEFORPRODUCT:Prosocial - NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:CHANGEFORPRODUCT:NONE - RspChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:CHANGEFORPRODUCT:Defensive - RspChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE - RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive - RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_PP=str_extract(p1, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}"),
p2V_PP=str_extract(p2, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}")) %>%
filter(!is.na(p1V_PP) & p1V_PP==p2V_PP)
f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT <- function(c_WHICHPRODUCT){
dff.means.comp %>%
filter(!str_detect(name, "Indian|Black"), str_detect(name,c_WHICHPRODUCT)) %>%
mutate(name = name %>%
str_replace_all("EXPGRP_TEXT", "Rsp") %>%
str_replace_all("V_Racenamef", "Nme") %>%
str_remove_all("V_Product") %>%
str_remove_all("V_presentation3")) %>%
arrange(match(name,
arrangeorder %>%
str_replace_all("CHANGEFORPRODUCT",
c_WHICHPRODUCT))) %>%
rownames_to_column(var = "k") %>%
mutate(comp1 = str_extract(name, "[A-z0-9:]{1,} "),
comp2 = str_extract(name, " [A-z0-9:]{1,}")) %>%
dplyr::select(comp1, comp2) %>%
xtable::xtable(caption = paste("Mean comparison of Model 9, for ", c_WHICHPRODUCT, " and White and Chinese name")) %>%
print(include.rownames=FALSE)
return()
}
map(dff_q$V_Product %>% levels(), f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:13 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{ll}
## \hline
## comp1 & comp2 \\
## \hline
## NmeWhite:hardwaresupplies:Defensive & NmeChinese:hardwaresupplies:Defensive \\
## NmeWhite:hardwaresupplies:Prosocial & NmeChinese:hardwaresupplies:Prosocial \\
## RspWhite:hardwaresupplies:NONE & RspChinese:hardwaresupplies:NONE \\
## RspWhite:hardwaresupplies:Defensive & RspChinese:hardwaresupplies:Defensive \\
## RspWhite:hardwaresupplies:Prosocial & RspChinese:hardwaresupplies:Prosocial \\
## RspWhite:NmeWhite:hardwaresupplies:NONE & RspChinese:NmeChinese:hardwaresupplies:NONE \\
## RspWhite:NmeWhite:hardwaresupplies:Defensive & RspChinese:NmeChinese:hardwaresupplies:Defensive \\
## RspWhite:NmeWhite:hardwaresupplies:Prosocial & RspChinese:NmeChinese:hardwaresupplies:Prosocial \\
## RspChinese:NmeWhite:hardwaresupplies:NONE & RspWhite:NmeChinese:hardwaresupplies:NONE \\
## RspChinese:NmeWhite:hardwaresupplies:Defensive & RspWhite:NmeChinese:hardwaresupplies:Defensive \\
## RspChinese:NmeWhite:hardwaresupplies:Prosocial & RspWhite:NmeChinese:hardwaresupplies:Prosocial \\
## RspChinese:NmeWhite:hardwaresupplies:NONE & RspChinese:NmeChinese:hardwaresupplies:NONE \\
## RspChinese:NmeWhite:hardwaresupplies:Defensive & RspChinese:NmeChinese:hardwaresupplies:Defensive \\
## RspChinese:NmeWhite:hardwaresupplies:Prosocial & RspChinese:NmeChinese:hardwaresupplies:Prosocial \\
## RspWhite:NmeWhite:hardwaresupplies:NONE & RspWhite:NmeChinese:hardwaresupplies:NONE \\
## RspWhite:NmeWhite:hardwaresupplies:Defensive & RspWhite:NmeChinese:hardwaresupplies:Defensive \\
## RspWhite:NmeWhite:hardwaresupplies:Prosocial & RspWhite:NmeChinese:hardwaresupplies:Prosocial \\
## RspWhite:NmeChinese:hardwaresupplies:NONE & RspChinese:NmeChinese:hardwaresupplies:NONE \\
## RspWhite:NmeChinese:hardwaresupplies:Defensive & RspChinese:NmeChinese:hardwaresupplies:Defensive \\
## RspWhite:NmeChinese:hardwaresupplies:Prosocial & RspChinese:NmeChinese:hardwaresupplies:Prosocial \\
## RspWhite:NmeWhite:hardwaresupplies:NONE & RspChinese:NmeWhite:hardwaresupplies:NONE \\
## RspWhite:NmeWhite:hardwaresupplies:Defensive & RspChinese:NmeWhite:hardwaresupplies:Defensive \\
## RspWhite:NmeWhite:hardwaresupplies:Prosocial & RspChinese:NmeWhite:hardwaresupplies:Prosocial \\
## NmeWhite:hardwaresupplies:NONE & NmeChinese:hardwaresupplies:NONE \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for hardwaresupplies and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:13 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{ll}
## \hline
## comp1 & comp2 \\
## \hline
## NmeWhite:toiletpaper:Defensive & NmeChinese:toiletpaper:Defensive \\
## NmeWhite:toiletpaper:Prosocial & NmeChinese:toiletpaper:Prosocial \\
## RspWhite:toiletpaper:NONE & RspChinese:toiletpaper:NONE \\
## RspWhite:toiletpaper:Defensive & RspChinese:toiletpaper:Defensive \\
## RspWhite:toiletpaper:Prosocial & RspChinese:toiletpaper:Prosocial \\
## RspWhite:NmeWhite:toiletpaper:NONE & RspChinese:NmeChinese:toiletpaper:NONE \\
## RspWhite:NmeWhite:toiletpaper:Defensive & RspChinese:NmeChinese:toiletpaper:Defensive \\
## RspWhite:NmeWhite:toiletpaper:Prosocial & RspChinese:NmeChinese:toiletpaper:Prosocial \\
## RspChinese:NmeWhite:toiletpaper:NONE & RspWhite:NmeChinese:toiletpaper:NONE \\
## RspChinese:NmeWhite:toiletpaper:Defensive & RspWhite:NmeChinese:toiletpaper:Defensive \\
## RspChinese:NmeWhite:toiletpaper:Prosocial & RspWhite:NmeChinese:toiletpaper:Prosocial \\
## RspChinese:NmeWhite:toiletpaper:NONE & RspChinese:NmeChinese:toiletpaper:NONE \\
## RspChinese:NmeWhite:toiletpaper:Defensive & RspChinese:NmeChinese:toiletpaper:Defensive \\
## RspChinese:NmeWhite:toiletpaper:Prosocial & RspChinese:NmeChinese:toiletpaper:Prosocial \\
## RspWhite:NmeWhite:toiletpaper:NONE & RspWhite:NmeChinese:toiletpaper:NONE \\
## RspWhite:NmeWhite:toiletpaper:Defensive & RspWhite:NmeChinese:toiletpaper:Defensive \\
## RspWhite:NmeWhite:toiletpaper:Prosocial & RspWhite:NmeChinese:toiletpaper:Prosocial \\
## RspWhite:NmeChinese:toiletpaper:NONE & RspChinese:NmeChinese:toiletpaper:NONE \\
## RspWhite:NmeChinese:toiletpaper:Defensive & RspChinese:NmeChinese:toiletpaper:Defensive \\
## RspWhite:NmeChinese:toiletpaper:Prosocial & RspChinese:NmeChinese:toiletpaper:Prosocial \\
## RspWhite:NmeWhite:toiletpaper:NONE & RspChinese:NmeWhite:toiletpaper:NONE \\
## RspWhite:NmeWhite:toiletpaper:Defensive & RspChinese:NmeWhite:toiletpaper:Defensive \\
## RspWhite:NmeWhite:toiletpaper:Prosocial & RspChinese:NmeWhite:toiletpaper:Prosocial \\
## NmeWhite:toiletpaper:NONE & NmeChinese:toiletpaper:NONE \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for toiletpaper and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:13 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{ll}
## \hline
## comp1 & comp2 \\
## \hline
## NmeWhite:cigarettes:Defensive & NmeChinese:cigarettes:Defensive \\
## NmeWhite:cigarettes:Prosocial & NmeChinese:cigarettes:Prosocial \\
## RspWhite:cigarettes:NONE & RspChinese:cigarettes:NONE \\
## RspWhite:cigarettes:Defensive & RspChinese:cigarettes:Defensive \\
## RspWhite:cigarettes:Prosocial & RspChinese:cigarettes:Prosocial \\
## RspWhite:NmeWhite:cigarettes:NONE & RspChinese:NmeChinese:cigarettes:NONE \\
## RspWhite:NmeWhite:cigarettes:Defensive & RspChinese:NmeChinese:cigarettes:Defensive \\
## RspWhite:NmeWhite:cigarettes:Prosocial & RspChinese:NmeChinese:cigarettes:Prosocial \\
## RspChinese:NmeWhite:cigarettes:NONE & RspWhite:NmeChinese:cigarettes:NONE \\
## RspChinese:NmeWhite:cigarettes:Defensive & RspWhite:NmeChinese:cigarettes:Defensive \\
## RspChinese:NmeWhite:cigarettes:Prosocial & RspWhite:NmeChinese:cigarettes:Prosocial \\
## RspChinese:NmeWhite:cigarettes:NONE & RspChinese:NmeChinese:cigarettes:NONE \\
## RspChinese:NmeWhite:cigarettes:Defensive & RspChinese:NmeChinese:cigarettes:Defensive \\
## RspChinese:NmeWhite:cigarettes:Prosocial & RspChinese:NmeChinese:cigarettes:Prosocial \\
## RspWhite:NmeWhite:cigarettes:NONE & RspWhite:NmeChinese:cigarettes:NONE \\
## RspWhite:NmeWhite:cigarettes:Defensive & RspWhite:NmeChinese:cigarettes:Defensive \\
## RspWhite:NmeWhite:cigarettes:Prosocial & RspWhite:NmeChinese:cigarettes:Prosocial \\
## RspWhite:NmeChinese:cigarettes:NONE & RspChinese:NmeChinese:cigarettes:NONE \\
## RspWhite:NmeChinese:cigarettes:Defensive & RspChinese:NmeChinese:cigarettes:Defensive \\
## RspWhite:NmeChinese:cigarettes:Prosocial & RspChinese:NmeChinese:cigarettes:Prosocial \\
## RspWhite:NmeWhite:cigarettes:NONE & RspChinese:NmeWhite:cigarettes:NONE \\
## RspWhite:NmeWhite:cigarettes:Defensive & RspChinese:NmeWhite:cigarettes:Defensive \\
## RspWhite:NmeWhite:cigarettes:Prosocial & RspChinese:NmeWhite:cigarettes:Prosocial \\
## NmeWhite:cigarettes:NONE & NmeChinese:cigarettes:NONE \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for cigarettes and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:13 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{ll}
## \hline
## comp1 & comp2 \\
## \hline
## NmeWhite:babyformula:Defensive & NmeChinese:babyformula:Defensive \\
## NmeWhite:babyformula:Prosocial & NmeChinese:babyformula:Prosocial \\
## RspWhite:babyformula:NONE & RspChinese:babyformula:NONE \\
## RspWhite:babyformula:Defensive & RspChinese:babyformula:Defensive \\
## RspWhite:babyformula:Prosocial & RspChinese:babyformula:Prosocial \\
## RspWhite:NmeWhite:babyformula:NONE & RspChinese:NmeChinese:babyformula:NONE \\
## RspWhite:NmeWhite:babyformula:Defensive & RspChinese:NmeChinese:babyformula:Defensive \\
## RspWhite:NmeWhite:babyformula:Prosocial & RspChinese:NmeChinese:babyformula:Prosocial \\
## RspChinese:NmeWhite:babyformula:NONE & RspWhite:NmeChinese:babyformula:NONE \\
## RspChinese:NmeWhite:babyformula:Defensive & RspWhite:NmeChinese:babyformula:Defensive \\
## RspChinese:NmeWhite:babyformula:Prosocial & RspWhite:NmeChinese:babyformula:Prosocial \\
## RspChinese:NmeWhite:babyformula:NONE & RspChinese:NmeChinese:babyformula:NONE \\
## RspChinese:NmeWhite:babyformula:Defensive & RspChinese:NmeChinese:babyformula:Defensive \\
## RspChinese:NmeWhite:babyformula:Prosocial & RspChinese:NmeChinese:babyformula:Prosocial \\
## RspWhite:NmeWhite:babyformula:NONE & RspWhite:NmeChinese:babyformula:NONE \\
## RspWhite:NmeWhite:babyformula:Defensive & RspWhite:NmeChinese:babyformula:Defensive \\
## RspWhite:NmeWhite:babyformula:Prosocial & RspWhite:NmeChinese:babyformula:Prosocial \\
## RspWhite:NmeChinese:babyformula:NONE & RspChinese:NmeChinese:babyformula:NONE \\
## RspWhite:NmeChinese:babyformula:Defensive & RspChinese:NmeChinese:babyformula:Defensive \\
## RspWhite:NmeChinese:babyformula:Prosocial & RspChinese:NmeChinese:babyformula:Prosocial \\
## RspWhite:NmeWhite:babyformula:NONE & RspChinese:NmeWhite:babyformula:NONE \\
## RspWhite:NmeWhite:babyformula:Defensive & RspChinese:NmeWhite:babyformula:Defensive \\
## RspWhite:NmeWhite:babyformula:Prosocial & RspChinese:NmeWhite:babyformula:Prosocial \\
## NmeWhite:babyformula:NONE & NmeChinese:babyformula:NONE \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for babyformula and White and Chinese name}
## \end{table}
## [[1]]
## NULL
##
## [[2]]
## NULL
##
## [[3]]
## NULL
##
## [[4]]
## NULL
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"MorallyWrongcross" = lmer(MorallyWrong ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovidcross" = lmer(CatchCovid ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ V_Racenamef+V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovidcross" = lmer(TransmitCovid ~ V_Racenamef*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 2.2, Race perceived and Update")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_presentation3", "")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_Name=str_extract(p1, "Name[A-z]{1,}") %>%
str_remove("Name"),
p2V_Name=str_extract(p2, "Name[A-z]{1,}") %>%
str_remove("Name"),
p1V_Up=str_extract(p1, ":[A-z]{1,}") %>%
str_remove(":"),
p2V_Up=str_extract(p2, ":[A-z]{1,}") %>%
str_remove(":"),) %>%
filter(is.na(p1V_Name)|is.na(p1V_Up)|p1V_Up==p2V_Up|p1V_Name==p2V_Name) %>%
dplyr::select(-p1, -p2, -p1V_Name, -p2V_Name, -p1V_Up, -p2V_Up, -name)
dff.means.comp %>% xtable::xtable()
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:15 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rllllll}
## \hline
## & MorallyWrong & MorallyWrongcross & CatchCovid & CatchCovidcross & TransmitCovid & TransmitCovidcross \\
## \hline
## NameWhite - NameBlack & 1.55. & 0.81 & 0.36 & 0.15 & 0.84. & 0.59 \\
## NameWhite - NameChinese & 2.66** & 2.16* & 0.78. & 0.6 & 0.76 & 0.63 \\
## NameWhite - NameIndian & 0.6 & 0.43 & 0.38 & 0.28 & 1.02* & 0.77 \\
## NameBlack - NameChinese & 1.11 & 1.35 & 0.41 & 0.45 & -0.08 & 0.04 \\
## NameBlack - NameIndian & -0.95 & -0.39 & 0.02 & 0.13 & 0.18 & 0.18 \\
## NameChinese - NameIndian & -2.06* & -1.73. & -0.39 & -0.32 & 0.26 & 0.14 \\
## NONE - Defensive & -5.85*** & -5.86*** & 1.05** & 1.06** & 0.93* & 0.93* \\
## NONE - Prosocial & 10.98*** & 10.87*** & 2.1*** & 2.08*** & 1.8*** & 1.78*** \\
## Defensive - Prosocial & 16.83*** & 16.73*** & 1.05* & 1.02* & 0.86. & 0.85. \\
## NameWhite:NONE - NameBlack:NONE & & 3.26** & & 0.87 & & 1.41* \\
## NameWhite:NONE - NameChinese:NONE & & 3.25** & & 1.07. & & 0.98 \\
## NameWhite:NONE - NameIndian:NONE & & 1.09 & & 0.59 & & 1.62* \\
## NameWhite:NONE - NameWhite:Defensive & & -4.86** & & 1.41. & & 1.66* \\
## NameWhite:NONE - NameWhite:Prosocial & & 13.02*** & & 2.84*** & & 2.56** \\
## NameBlack:NONE - NameChinese:NONE & & -0.01 & & 0.2 & & -0.43 \\
## NameBlack:NONE - NameIndian:NONE & & -2.17. & & -0.27 & & 0.21 \\
## NameBlack:NONE - NameBlack:Defensive & & -8.07*** & & 0.41 & & 0.5 \\
## NameBlack:NONE - NameBlack:Prosocial & & 8.89*** & & 1.69. & & 1.27 \\
## NameChinese:NONE - NameIndian:NONE & & -2.15. & & -0.47 & & 0.64 \\
## NameChinese:NONE - NameChinese:Defensive & & -4.3** & & 1.19 & & 1.4. \\
## NameChinese:NONE - NameChinese:Prosocial & & 9.19*** & & 1.68. & & 1.77. \\
## NameIndian:NONE - NameIndian:Defensive & & -6.21*** & & 1.22 & & 0.17 \\
## NameIndian:NONE - NameIndian:Prosocial & & 12.37*** & & 2.09* & & 1.52. \\
## NameWhite:Defensive - NameBlack:Defensive & & 0.05 & & -0.14 & & 0.24 \\
## NameWhite:Defensive - NameChinese:Defensive & & 3.82* & & 0.84 & & 0.72 \\
## NameWhite:Defensive - NameIndian:Defensive & & -0.25 & & 0.41 & & 0.12 \\
## NameWhite:Defensive - NameWhite:Prosocial & & 17.89*** & & 1.43 & & 0.9 \\
## NameBlack:Defensive - NameChinese:Defensive & & 3.76* & & 0.98 & & 0.48 \\
## NameBlack:Defensive - NameIndian:Defensive & & -0.31 & & 0.54 & & -0.12 \\
## NameBlack:Defensive - NameBlack:Prosocial & & 16.96*** & & 1.28 & & 0.77 \\
## NameChinese:Defensive - NameIndian:Defensive & & -4.07* & & -0.44 & & -0.6 \\
## NameChinese:Defensive - NameChinese:Prosocial & & 13.49*** & & 0.49 & & 0.37 \\
## NameIndian:Defensive - NameIndian:Prosocial & & 18.58*** & & 0.87 & & 1.35 \\
## NameWhite:Prosocial - NameBlack:Prosocial & & -0.88 & & -0.28 & & 0.12 \\
## NameWhite:Prosocial - NameChinese:Prosocial & & -0.58 & & -0.1 & & 0.2 \\
## NameWhite:Prosocial - NameIndian:Prosocial & & 0.44 & & -0.15 & & 0.58 \\
## NameBlack:Prosocial - NameChinese:Prosocial & & 0.29 & & 0.19 & & 0.08 \\
## NameBlack:Prosocial - NameIndian:Prosocial & & 1.32 & & 0.13 & & 0.46 \\
## NameChinese:Prosocial - NameIndian:Prosocial & & 1.02 & & -0.06 & & 0.39 \\
## \hline
## \end{tabular}
## \end{table}
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Racenamef~Question)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model6.2_presentation.racename.pdf", width = 10, height = 13)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ CovidSkepticism + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ CovidSkepticism + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ CovidSkepticism + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 7, CovidSkepticism")
grph <- df_grph %>%
filter(V_JudgeSelf==0, V_up == 0) %>%
ggplot(aes(x=CovidSkepticism, y=Value)) +
geom_point(alpha=.3, cex=.1) +
geom_smooth(method='lm') +
ggpubr::stat_regline_equation(aes(label = ..eq.label..))+
facet_wrap(~Question)
grph
## `geom_smooth()` using formula 'y ~ x'
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model07_covidskepticism.pdf", width = 10, height = 5)
# 2. Create the plot
grph
## `geom_smooth()` using formula 'y ~ x'
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ CovidSkepticism * V_Racenamef * EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ CovidSkepticism * V_Racenamef * EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ CovidSkepticism * V_Racenamef * EXPGRP_TEXT + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 8, CovidSkepticism, race name and race respondant")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:26 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## NameWhite - NameBlack & 4.58** & 1.21 & 1.59* \\
## NameWhite - NameChinese & 4** & 1.46. & 0.96 \\
## NameWhite - NameIndian & 2.24 & 1.03 & 1.63* \\
## NameBlack - NameChinese & -0.58 & 0.25 & -0.63 \\
## NameBlack - NameIndian & -2.34 & -0.18 & 0.04 \\
## NameChinese - NameIndian & -1.76 & -0.42 & 0.67 \\
## RespWhite - RespChinese & -2.18 & -1.79 & -0.82 \\
## NameWhite:RespWhite - NameBlack:RespWhite & 2.16 & 0.99 & 1.75* \\
## NameWhite:RespWhite - NameChinese:RespWhite & 1.59 & 0.71 & 1.16 \\
## NameWhite:RespWhite - NameIndian:RespWhite & 0.38 & 0.83 & 2.07* \\
## NameWhite:RespWhite - NameWhite:RespChinese & -5.53* & -2.37 & -0.41 \\
## NameWhite:RespWhite - NameBlack:RespChinese & 1.47 & -0.95 & 1.01 \\
## NameWhite:RespWhite - NameChinese:RespChinese & 0.89 & -0.17 & 0.34 \\
## NameWhite:RespWhite - NameIndian:RespChinese & -1.42 & -1.14 & 0.77 \\
## NameBlack:RespWhite - NameChinese:RespWhite & -0.57 & -0.28 & -0.59 \\
## NameBlack:RespWhite - NameIndian:RespWhite & -1.79 & -0.16 & 0.32 \\
## NameBlack:RespWhite - NameWhite:RespChinese & -7.69** & -3.36 & -2.17 \\
## NameBlack:RespWhite - NameBlack:RespChinese & -0.69 & -1.94 & -0.74 \\
## NameBlack:RespWhite - NameChinese:RespChinese & -1.28 & -1.17 & -1.42 \\
## NameBlack:RespWhite - NameIndian:RespChinese & -3.58 & -2.13 & -0.99 \\
## NameChinese:RespWhite - NameIndian:RespWhite & -1.22 & 0.12 & 0.91 \\
## NameChinese:RespWhite - NameWhite:RespChinese & -7.12** & -3.08 & -1.58 \\
## NameChinese:RespWhite - NameBlack:RespChinese & -0.12 & -1.66 & -0.15 \\
## NameChinese:RespWhite - NameChinese:RespChinese & -0.71 & -0.89 & -0.83 \\
## NameChinese:RespWhite - NameIndian:RespChinese & -3.01 & -1.85 & -0.4 \\
## NameIndian:RespWhite - NameWhite:RespChinese & -5.9* & -3.2 & -2.49 \\
## NameIndian:RespWhite - NameBlack:RespChinese & 1.1 & -1.78 & -1.06 \\
## NameIndian:RespWhite - NameChinese:RespChinese & 0.51 & -1 & -1.74 \\
## NameIndian:RespWhite - NameIndian:RespChinese & -1.79 & -1.97 & -1.31 \\
## NameWhite:RespChinese - NameBlack:RespChinese & 7** & 1.42 & 1.42 \\
## NameWhite:RespChinese - NameChinese:RespChinese & 6.41** & 2.2. & 0.75 \\
## NameWhite:RespChinese - NameIndian:RespChinese & 4.11. & 1.23 & 1.18 \\
## NameBlack:RespChinese - NameChinese:RespChinese & -0.59 & 0.77 & -0.67 \\
## NameBlack:RespChinese - NameIndian:RespChinese & -2.89 & -0.19 & -0.24 \\
## NameChinese:RespChinese - NameIndian:RespChinese & -2.3 & -0.97 & 0.43 \\
## \hline
## \end{tabular}
## \end{table}
dff_q$CONTINENT_BORN_TEXT_1 <- dff_q$CONTINENT_BORN_TEXT_1 %>% as.factor() %>% relevel("USA")
dff_q$HH_INCOME_TEXT2 <- dff_q$HH_INCOME_TEXT2 %>% as.factor()
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1:HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1:HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1:HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 8, CovidSkepticism, race name and race respondant")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
rownames(dff.means) <-str_remove_all(rownames(dff.means), "CONTINENT_BORN_TEXT_1|HH_INCOME_TEXT2")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:28 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## NameWhite - NameBlack & 3.9** & 0.79 & 1.27. \\
## NameWhite - NameChinese & 4.06** & 1.24. & 0.89 \\
## NameWhite - NameIndian & 1.45 & 0.49 & 1.45* \\
## NameBlack - NameChinese & 0.16 & 0.45 & -0.37 \\
## NameBlack - NameIndian & -2.45. & -0.3 & 0.18 \\
## NameChinese - NameIndian & -2.61. & -0.75 & 0.56 \\
## RespWhite - RespChinese & -7.29** & -5.06* & -4.73* \\
## NameWhite:RespWhite - NameBlack:RespWhite & 2.06 & 1.01 & 1.67* \\
## NameWhite:RespWhite - NameChinese:RespWhite & 1.74 & 0.75 & 1.15 \\
## NameWhite:RespWhite - NameIndian:RespWhite & 0.43 & 0.79 & 1.93* \\
## NameWhite:RespWhite - NameWhite:RespChinese & -9.88*** & -5.04* & -4.16. \\
## NameWhite:RespWhite - NameBlack:RespChinese & -4.14 & -4.48. & -3.3 \\
## NameWhite:RespWhite - NameChinese:RespChinese & -3.5 & -3.31 & -3.52 \\
## NameWhite:RespWhite - NameIndian:RespChinese & -7.41* & -4.84* & -3.19 \\
## NameBlack:RespWhite - NameChinese:RespWhite & -0.32 & -0.27 & -0.52 \\
## NameBlack:RespWhite - NameIndian:RespWhite & -1.63 & -0.23 & 0.26 \\
## NameBlack:RespWhite - NameWhite:RespChinese & -11.94*** & -6.05* & -5.83* \\
## NameBlack:RespWhite - NameBlack:RespChinese & -6.2* & -5.5* & -4.97* \\
## NameBlack:RespWhite - NameChinese:RespChinese & -5.56. & -4.33. & -5.19* \\
## NameBlack:RespWhite - NameIndian:RespChinese & -9.47** & -5.86* & -4.86* \\
## NameChinese:RespWhite - NameIndian:RespWhite & -1.31 & 0.04 & 0.78 \\
## NameChinese:RespWhite - NameWhite:RespChinese & -11.61*** & -5.79* & -5.3* \\
## NameChinese:RespWhite - NameBlack:RespChinese & -5.88* & -5.23* & -4.44. \\
## NameChinese:RespWhite - NameChinese:RespChinese & -5.24. & -4.06. & -4.66. \\
## NameChinese:RespWhite - NameIndian:RespChinese & -9.15** & -5.59* & -4.34. \\
## NameIndian:RespWhite - NameWhite:RespChinese & -10.31*** & -5.83* & -6.09* \\
## NameIndian:RespWhite - NameBlack:RespChinese & -4.57 & -5.27* & -5.23* \\
## NameIndian:RespWhite - NameChinese:RespChinese & -3.93 & -4.1. & -5.45* \\
## NameIndian:RespWhite - NameIndian:RespChinese & -7.84** & -5.63* & -5.12* \\
## NameWhite:RespChinese - NameBlack:RespChinese & 5.74* & 0.56 & 0.86 \\
## NameWhite:RespChinese - NameChinese:RespChinese & 6.37** & 1.73 & 0.64 \\
## NameWhite:RespChinese - NameIndian:RespChinese & 2.47 & 0.19 & 0.97 \\
## NameBlack:RespChinese - NameChinese:RespChinese & 0.64 & 1.17 & -0.22 \\
## NameBlack:RespChinese - NameIndian:RespChinese & -3.27 & -0.36 & 0.11 \\
## NameChinese:RespChinese - NameIndian:RespChinese & -3.91. & -1.53 & 0.33 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:\$30,000 to \$70,000 & -3.92 & 2.55 & -3.1 \\
## USA:\$30,000 to \$70,000 - Developping Asia:\$30,000 to \$70,000 & 1.23 & 7.44 & 6.44 \\
## USA:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -12.48** & -2.18 & -4.56 \\
## USA:\$30,000 to \$70,000 - USA:\$70,000 or more & -1.02 & 1.91 & 1.37 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -15.94. & -6.34 & -10.89 \\
## USA:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & -0.63 & 7.97 & 5.39 \\
## USA:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -4.65 & 8.55 & 11.52 \\
## USA:\$30,000 to \$70,000 - USA:Less than \$30,000 & -0.32 & -2.36 & -0.99 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -14.3*** & -5.61 & -8.89* \\
## USA:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 7.56 & 3.18 & 4.1 \\
## USA:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -12.36*** & -4.07 & -5.2 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:\$30,000 to \$70,000 & 5.15 & 4.89 & 9.55 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -8.55 & -4.73 & -1.45 \\
## Central Eastern Europe:\$30,000 to \$70,000 - USA:\$70,000 or more & 2.9 & -0.64 & 4.47 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -12.02 & -8.89 & -7.78 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & 3.29 & 5.42 & 8.49 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -0.73 & 6 & 14.62 \\
## Central Eastern Europe:\$30,000 to \$70,000 - USA:Less than \$30,000 & 3.6 & -4.91 & 2.11 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -10.38. & -8.16 & -5.78 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 11.48 & 0.63 & 7.2 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -8.44 & -6.62 & -2.1 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -13.7* & -9.62. & -11. \\
## Developping Asia:\$30,000 to \$70,000 - USA:\$70,000 or more & -2.25 & -5.53 & -5.07 \\
## Developping Asia:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -17.17 & -13.79 & -17.33. \\
## Developping Asia:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & -1.86 & 0.53 & -1.05 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -5.88 & 1.1 & 5.08 \\
## Developping Asia:\$30,000 to \$70,000 - USA:Less than \$30,000 & -1.55 & -9.8* & -7.43 \\
## Developping Asia:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -15.53* & -13.05* & -15.33** \\
## Developping Asia:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 6.33 & -4.27 & -2.35 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -13.59* & -11.52* & -11.65* \\
## Western Europe:\$30,000 to \$70,000 - USA:\$70,000 or more & 11.46** & 4.09 & 5.93 \\
## Western Europe:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -3.46 & -4.16 & -6.33 \\
## Western Europe:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & 11.85. & 10.15. & 9.95 \\
## Western Europe:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & 7.83 & 10.72 & 16.08. \\
## Western Europe:\$30,000 to \$70,000 - USA:Less than \$30,000 & 12.16** & -0.18 & 3.57 \\
## Western Europe:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -1.83 & -3.43 & -4.33 \\
## Western Europe:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 20.03** & 5.35 & 8.66 \\
## Western Europe:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & 0.12 & -1.89 & -0.64 \\
## USA:\$70,000 or more - Central Eastern Europe:\$70,000 or more & -14.92 & -8.25 & -12.26 \\
## USA:\$70,000 or more - Developping Asia:\$70,000 or more & 0.39 & 6.06 & 4.02 \\
## USA:\$70,000 or more - Western Europe:\$70,000 or more & -3.63 & 6.64 & 10.15 \\
## USA:\$70,000 or more - USA:Less than \$30,000 & 0.7 & -4.27 & -2.36 \\
## USA:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -13.28*** & -7.52* & -10.26** \\
## USA:\$70,000 or more - Developping Asia:Less than \$30,000 & 8.58 & 1.27 & 2.73 \\
## USA:\$70,000 or more - Western Europe:Less than \$30,000 & -11.34** & -5.98. & -6.57* \\
## Central Eastern Europe:\$70,000 or more - Developping Asia:\$70,000 or more & 15.31 & 14.32 & 16.28 \\
## Central Eastern Europe:\$70,000 or more - Western Europe:\$70,000 or more & 11.29 & 14.89 & 22.41. \\
## Central Eastern Europe:\$70,000 or more - USA:Less than \$30,000 & 15.62 & 3.98 & 9.9 \\
## Central Eastern Europe:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & 1.64 & 0.73 & 2 \\
## Central Eastern Europe:\$70,000 or more - Developping Asia:Less than \$30,000 & 23.5* & 9.52 & 14.99 \\
## Central Eastern Europe:\$70,000 or more - Western Europe:Less than \$30,000 & 3.58 & 2.27 & 5.69 \\
## Developping Asia:\$70,000 or more - Western Europe:\$70,000 or more & -4.02 & 0.57 & 6.13 \\
## Developping Asia:\$70,000 or more - USA:Less than \$30,000 & 0.31 & -10.33. & -6.38 \\
## Developping Asia:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -13.67* & -13.58* & -14.28* \\
## Developping Asia:\$70,000 or more - Developping Asia:Less than \$30,000 & 8.19 & -4.8 & -1.29 \\
## Developping Asia:\$70,000 or more - Western Europe:Less than \$30,000 & -11.73. & -12.05* & -10.59. \\
## Western Europe:\$70,000 or more - USA:Less than \$30,000 & 4.33 & -10.9 & -12.51 \\
## Western Europe:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -9.65 & -14.16 & -20.41* \\
## Western Europe:\$70,000 or more - Developping Asia:Less than \$30,000 & 12.21 & -5.37 & -7.42 \\
## Western Europe:\$70,000 or more - Western Europe:Less than \$30,000 & -7.71 & -12.62 & -16.72. \\
## USA:Less than \$30,000 - Central Eastern Europe:Less than \$30,000 & -13.99*** & -3.25 & -7.9* \\
## USA:Less than \$30,000 - Developping Asia:Less than \$30,000 & 7.87 & 5.53 & 5.09 \\
## USA:Less than \$30,000 - Western Europe:Less than \$30,000 & -12.04** & -1.71 & -4.21 \\
## Central Eastern Europe:Less than \$30,000 - Developping Asia:Less than \$30,000 & 21.86** & 8.79 & 12.99* \\
## Central Eastern Europe:Less than \$30,000 - Western Europe:Less than \$30,000 & 1.94 & 1.54 & 3.69 \\
## Developping Asia:Less than \$30,000 - Western Europe:Less than \$30,000 & -19.92** & -7.25 & -9.3 \\
## \hline
## \end{tabular}
## \end{table}
dff_q$HH_INCOME_TEXT <- dff_q$HH_INCOME_TEXT %>% as.factor %>% relevel("$30,000 to $50,000")
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1*HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCovid" = lmer(CatchCovid ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1*HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"TransmitCovid" = lmer(TransmitCovid ~ CovidSkepticism + V_Racenamef * EXPGRP_TEXT + CONTINENT_BORN_TEXT_1*HH_INCOME_TEXT2 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 8, CovidSkepticism, race name and race respondant")
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
rownames(dff.means) <-str_remove_all(rownames(dff.means), "CONTINENT_BORN_TEXT_1|HH_INCOME_TEXT2")
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:40:29 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## NameWhite - NameBlack & 3.9** & 0.79 & 1.27. \\
## NameWhite - NameChinese & 4.06** & 1.24. & 0.89 \\
## NameWhite - NameIndian & 1.45 & 0.49 & 1.45* \\
## NameBlack - NameChinese & 0.16 & 0.45 & -0.37 \\
## NameBlack - NameIndian & -2.45. & -0.3 & 0.18 \\
## NameChinese - NameIndian & -2.61. & -0.75 & 0.56 \\
## RespWhite - RespChinese & -7.29** & -5.06* & -4.73* \\
## USA - Central Eastern Europe & -10.94** & -2.99 & -7.75* \\
## USA - Developping Asia & 3.16 & 6.35* & 5.18 \\
## USA - Western Europe & -9.38* & 0.91 & 0.46 \\
## Central Eastern Europe - Developping Asia & 14.11** & 9.33* & 12.94** \\
## Central Eastern Europe - Western Europe & 1.56 & 3.9 & 8.21. \\
## Developping Asia - Western Europe & -12.55* & -5.43 & -4.72 \\
## \$30,000 to \$70,000 - \$70,000 or more & -1.77 & 1.07 & 2.15 \\
## \$30,000 to \$70,000 - Less than \$30,000 & -1.06 & -4.17. & -2.44 \\
## \$70,000 or more - Less than \$30,000 & 0.7 & -5.24 & -4.59 \\
## NameWhite:RespWhite - NameBlack:RespWhite & 2.06 & 1.01 & 1.67* \\
## NameWhite:RespWhite - NameChinese:RespWhite & 1.74 & 0.75 & 1.15 \\
## NameWhite:RespWhite - NameIndian:RespWhite & 0.43 & 0.79 & 1.93* \\
## NameWhite:RespWhite - NameWhite:RespChinese & -9.88*** & -5.04* & -4.16. \\
## NameWhite:RespWhite - NameBlack:RespChinese & -4.14 & -4.48. & -3.3 \\
## NameWhite:RespWhite - NameChinese:RespChinese & -3.5 & -3.31 & -3.52 \\
## NameWhite:RespWhite - NameIndian:RespChinese & -7.41* & -4.84* & -3.19 \\
## NameBlack:RespWhite - NameChinese:RespWhite & -0.32 & -0.27 & -0.52 \\
## NameBlack:RespWhite - NameIndian:RespWhite & -1.63 & -0.23 & 0.26 \\
## NameBlack:RespWhite - NameWhite:RespChinese & -11.94*** & -6.05* & -5.83* \\
## NameBlack:RespWhite - NameBlack:RespChinese & -6.2* & -5.5* & -4.97* \\
## NameBlack:RespWhite - NameChinese:RespChinese & -5.56. & -4.33. & -5.19* \\
## NameBlack:RespWhite - NameIndian:RespChinese & -9.47** & -5.86* & -4.86* \\
## NameChinese:RespWhite - NameIndian:RespWhite & -1.31 & 0.04 & 0.78 \\
## NameChinese:RespWhite - NameWhite:RespChinese & -11.61*** & -5.79* & -5.3* \\
## NameChinese:RespWhite - NameBlack:RespChinese & -5.88* & -5.23* & -4.44. \\
## NameChinese:RespWhite - NameChinese:RespChinese & -5.24. & -4.06. & -4.66. \\
## NameChinese:RespWhite - NameIndian:RespChinese & -9.15** & -5.59* & -4.34. \\
## NameIndian:RespWhite - NameWhite:RespChinese & -10.31*** & -5.83* & -6.09* \\
## NameIndian:RespWhite - NameBlack:RespChinese & -4.57 & -5.27* & -5.23* \\
## NameIndian:RespWhite - NameChinese:RespChinese & -3.93 & -4.1. & -5.45* \\
## NameIndian:RespWhite - NameIndian:RespChinese & -7.84** & -5.63* & -5.12* \\
## NameWhite:RespChinese - NameBlack:RespChinese & 5.74* & 0.56 & 0.86 \\
## NameWhite:RespChinese - NameChinese:RespChinese & 6.37** & 1.73 & 0.64 \\
## NameWhite:RespChinese - NameIndian:RespChinese & 2.47 & 0.19 & 0.97 \\
## NameBlack:RespChinese - NameChinese:RespChinese & 0.64 & 1.17 & -0.22 \\
## NameBlack:RespChinese - NameIndian:RespChinese & -3.27 & -0.36 & 0.11 \\
## NameChinese:RespChinese - NameIndian:RespChinese & -3.91. & -1.53 & 0.33 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:\$30,000 to \$70,000 & -3.92 & 2.55 & -3.1 \\
## USA:\$30,000 to \$70,000 - Developping Asia:\$30,000 to \$70,000 & 1.23 & 7.44 & 6.44 \\
## USA:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -12.48** & -2.18 & -4.56 \\
## USA:\$30,000 to \$70,000 - USA:\$70,000 or more & -1.02 & 1.91 & 1.37 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -15.94. & -6.34 & -10.89 \\
## USA:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & -0.63 & 7.97 & 5.39 \\
## USA:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -4.65 & 8.55 & 11.52 \\
## USA:\$30,000 to \$70,000 - USA:Less than \$30,000 & -0.32 & -2.36 & -0.99 \\
## USA:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -14.3*** & -5.61 & -8.89* \\
## USA:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 7.56 & 3.18 & 4.1 \\
## USA:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -12.36*** & -4.07 & -5.2 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:\$30,000 to \$70,000 & 5.15 & 4.89 & 9.55 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -8.55 & -4.73 & -1.45 \\
## Central Eastern Europe:\$30,000 to \$70,000 - USA:\$70,000 or more & 2.9 & -0.64 & 4.47 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -12.02 & -8.89 & -7.78 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & 3.29 & 5.42 & 8.49 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -0.73 & 6 & 14.62 \\
## Central Eastern Europe:\$30,000 to \$70,000 - USA:Less than \$30,000 & 3.6 & -4.91 & 2.11 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -10.38. & -8.16 & -5.78 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 11.48 & 0.63 & 7.2 \\
## Central Eastern Europe:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -8.44 & -6.62 & -2.1 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:\$30,000 to \$70,000 & -13.7* & -9.62. & -11. \\
## Developping Asia:\$30,000 to \$70,000 - USA:\$70,000 or more & -2.25 & -5.53 & -5.07 \\
## Developping Asia:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -17.17 & -13.79 & -17.33. \\
## Developping Asia:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & -1.86 & 0.53 & -1.05 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & -5.88 & 1.1 & 5.08 \\
## Developping Asia:\$30,000 to \$70,000 - USA:Less than \$30,000 & -1.55 & -9.8* & -7.43 \\
## Developping Asia:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -15.53* & -13.05* & -15.33** \\
## Developping Asia:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 6.33 & -4.27 & -2.35 \\
## Developping Asia:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & -13.59* & -11.52* & -11.65* \\
## Western Europe:\$30,000 to \$70,000 - USA:\$70,000 or more & 11.46** & 4.09 & 5.93 \\
## Western Europe:\$30,000 to \$70,000 - Central Eastern Europe:\$70,000 or more & -3.46 & -4.16 & -6.33 \\
## Western Europe:\$30,000 to \$70,000 - Developping Asia:\$70,000 or more & 11.85. & 10.15. & 9.95 \\
## Western Europe:\$30,000 to \$70,000 - Western Europe:\$70,000 or more & 7.83 & 10.72 & 16.08. \\
## Western Europe:\$30,000 to \$70,000 - USA:Less than \$30,000 & 12.16** & -0.18 & 3.57 \\
## Western Europe:\$30,000 to \$70,000 - Central Eastern Europe:Less than \$30,000 & -1.83 & -3.43 & -4.33 \\
## Western Europe:\$30,000 to \$70,000 - Developping Asia:Less than \$30,000 & 20.03** & 5.35 & 8.66 \\
## Western Europe:\$30,000 to \$70,000 - Western Europe:Less than \$30,000 & 0.12 & -1.89 & -0.64 \\
## USA:\$70,000 or more - Central Eastern Europe:\$70,000 or more & -14.92 & -8.25 & -12.26 \\
## USA:\$70,000 or more - Developping Asia:\$70,000 or more & 0.39 & 6.06 & 4.02 \\
## USA:\$70,000 or more - Western Europe:\$70,000 or more & -3.63 & 6.64 & 10.15 \\
## USA:\$70,000 or more - USA:Less than \$30,000 & 0.7 & -4.27 & -2.36 \\
## USA:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -13.28*** & -7.52* & -10.26** \\
## USA:\$70,000 or more - Developping Asia:Less than \$30,000 & 8.58 & 1.27 & 2.73 \\
## USA:\$70,000 or more - Western Europe:Less than \$30,000 & -11.34** & -5.98. & -6.57* \\
## Central Eastern Europe:\$70,000 or more - Developping Asia:\$70,000 or more & 15.31 & 14.32 & 16.28 \\
## Central Eastern Europe:\$70,000 or more - Western Europe:\$70,000 or more & 11.29 & 14.89 & 22.41. \\
## Central Eastern Europe:\$70,000 or more - USA:Less than \$30,000 & 15.62 & 3.98 & 9.9 \\
## Central Eastern Europe:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & 1.64 & 0.73 & 2 \\
## Central Eastern Europe:\$70,000 or more - Developping Asia:Less than \$30,000 & 23.5* & 9.52 & 14.99 \\
## Central Eastern Europe:\$70,000 or more - Western Europe:Less than \$30,000 & 3.58 & 2.27 & 5.69 \\
## Developping Asia:\$70,000 or more - Western Europe:\$70,000 or more & -4.02 & 0.57 & 6.13 \\
## Developping Asia:\$70,000 or more - USA:Less than \$30,000 & 0.31 & -10.33. & -6.38 \\
## Developping Asia:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -13.67* & -13.58* & -14.28* \\
## Developping Asia:\$70,000 or more - Developping Asia:Less than \$30,000 & 8.19 & -4.8 & -1.29 \\
## Developping Asia:\$70,000 or more - Western Europe:Less than \$30,000 & -11.73. & -12.05* & -10.59. \\
## Western Europe:\$70,000 or more - USA:Less than \$30,000 & 4.33 & -10.9 & -12.51 \\
## Western Europe:\$70,000 or more - Central Eastern Europe:Less than \$30,000 & -9.65 & -14.16 & -20.41* \\
## Western Europe:\$70,000 or more - Developping Asia:Less than \$30,000 & 12.21 & -5.37 & -7.42 \\
## Western Europe:\$70,000 or more - Western Europe:Less than \$30,000 & -7.71 & -12.62 & -16.72. \\
## USA:Less than \$30,000 - Central Eastern Europe:Less than \$30,000 & -13.99*** & -3.25 & -7.9* \\
## USA:Less than \$30,000 - Developping Asia:Less than \$30,000 & 7.87 & 5.53 & 5.09 \\
## USA:Less than \$30,000 - Western Europe:Less than \$30,000 & -12.04** & -1.71 & -4.21 \\
## Central Eastern Europe:Less than \$30,000 - Developping Asia:Less than \$30,000 & 21.86** & 8.79 & 12.99* \\
## Central Eastern Europe:Less than \$30,000 - Western Europe:Less than \$30,000 & 1.94 & 1.54 & 3.69 \\
## Developping Asia:Less than \$30,000 - Western Europe:Less than \$30,000 & -19.92** & -7.25 & -9.3 \\
## \hline
## \end{tabular}
## \end{table}
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Racenamef*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Racenamef*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Racenamef*V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 8 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 9, Race Name and Respondant, Product and Update presentation")
dff_q %>%
filter(EXPGRP_TEXT=="Chinese",
V_Racenamef=="Black",
V_presentation3=="Defensive",
V_Product=="toiletpaper")
## ID_Q_JS CatchCovid_Change MorallyWrong_Change TransmitCovid_Change X X.5
## 1 129_1_0 -1 1 0 1889 129
## 2 129_1_1 1 1 -1 1890 129
## 3 135_3_0 1 1 1 1989 135
## 4 135_3_1 -1 1 -1 1990 135
## 5 162_2_0 -1 -1 -1 2419 162
## 6 162_2_1 0 -1 0 2420 162
## 7 195_1_0 -1 0 1 2929 195
## 8 195_1_1 1 -1 1 2930 195
## 9 214_3_0 0 0 0 3205 214
## 10 214_3_1 0 0 0 3206 214
## 11 220_3_0 -1 1 -1 3285 220
## 12 220_3_1 -1 -1 1 3286 220
## 13 241_2_0 -1 1 -1 3603 241
## 14 241_2_1 1 -1 1 3604 241
## 15 254_2_0 1 1 1 3779 254
## 16 254_2_1 1 1 1 3780 254
## 17 276_4_0 -1 1 1 4087 276
## 18 276_4_1 0 0 0 4088 276
## 19 289_4_0 -1 1 -1 4247 289
## 20 289_4_1 -1 1 1 4248 289
## 21 292_2_0 0 -1 0 4275 292
## 22 292_2_1 0 0 0 4276 292
## 23 308_3_0 -1 -1 1 4389 308
## 24 308_3_1 -1 -1 1 4390 308
## 25 314_2_0 -1 0 -1 4451 314
## 26 314_2_1 -1 0 -1 4452 314
## 27 329_4_0 -1 1 1 4647 329
## 28 329_4_1 -1 1 -1 4648 329
## 29 337_3_0 0 1 0 4741 337
## 30 337_3_1 0 1 -1 4742 337
## 31 343_4_0 1 0 1 4823 343
## 32 343_4_1 1 1 1 4824 343
## 33 351_2_0 1 -1 1 4899 351
## 34 351_2_1 -1 1 -1 4900 351
## 35 356_3_0 1 -1 -1 4965 356
## 36 356_3_1 -1 -1 -1 4966 356
## 37 367_4_0 1 1 -1 5095 367
## 38 367_4_1 1 -1 1 5096 367
## 39 385_3_0 0 -1 -1 5317 385
## 40 385_3_1 -1 -1 -1 5318 385
## 41 388_1_0 -1 1 -1 5361 388
## 42 388_1_1 1 0 1 5362 388
## 43 643_2_0 0 0 0 9299 643
## 44 643_2_1 0 -1 0 9300 643
## 45 649_4_0 -1 1 -1 9383 649
## 46 649_4_1 1 0 0 9384 649
## X.4 X.3 X.1 X.x Unnamed..0 StartDate EndDate Status
## 1 129 129 129 128 130 6/4/2020 17:58 6/4/2020 18:28 0
## 2 129 129 129 128 130 6/4/2020 17:58 6/4/2020 18:28 0
## 3 135 135 135 134 136 6/4/2020 18:11 6/4/2020 18:30 0
## 4 135 135 135 134 136 6/4/2020 18:11 6/4/2020 18:30 0
## 5 162 162 162 161 163 6/4/2020 17:54 6/4/2020 18:35 0
## 6 162 162 162 161 163 6/4/2020 17:54 6/4/2020 18:35 0
## 7 195 195 195 194 196 6/4/2020 18:23 6/4/2020 18:43 0
## 8 195 195 195 194 196 6/4/2020 18:23 6/4/2020 18:43 0
## 9 214 214 214 213 215 6/4/2020 18:27 6/4/2020 18:54 0
## 10 214 214 214 213 215 6/4/2020 18:27 6/4/2020 18:54 0
## 11 220 220 220 219 221 6/4/2020 18:33 6/4/2020 18:57 0
## 12 220 220 220 219 221 6/4/2020 18:33 6/4/2020 18:57 0
## 13 241 241 241 240 242 6/4/2020 19:11 6/4/2020 19:29 0
## 14 241 241 241 240 242 6/4/2020 19:11 6/4/2020 19:29 0
## 15 254 254 254 253 255 6/4/2020 20:02 6/4/2020 20:24 0
## 16 254 254 254 253 255 6/4/2020 20:02 6/4/2020 20:24 0
## 17 276 276 276 275 277 6/4/2020 21:39 6/4/2020 22:05 0
## 18 276 276 276 275 277 6/4/2020 21:39 6/4/2020 22:05 0
## 19 289 289 289 288 290 6/4/2020 22:41 6/4/2020 23:19 0
## 20 289 289 289 288 290 6/4/2020 22:41 6/4/2020 23:19 0
## 21 292 292 292 291 293 6/4/2020 22:49 6/4/2020 23:37 0
## 22 292 292 292 291 293 6/4/2020 22:49 6/4/2020 23:37 0
## 23 308 308 308 307 309 6/5/2020 2:17 6/5/2020 2:51 0
## 24 308 308 308 307 309 6/5/2020 2:17 6/5/2020 2:51 0
## 25 314 314 314 313 315 6/5/2020 4:54 6/5/2020 5:21 0
## 26 314 314 314 313 315 6/5/2020 4:54 6/5/2020 5:21 0
## 27 329 329 329 328 330 6/5/2020 11:24 6/5/2020 12:15 0
## 28 329 329 329 328 330 6/5/2020 11:24 6/5/2020 12:15 0
## 29 337 337 337 336 338 6/5/2020 14:30 6/5/2020 14:59 0
## 30 337 337 337 336 338 6/5/2020 14:30 6/5/2020 14:59 0
## 31 343 343 343 342 344 6/5/2020 16:45 6/5/2020 16:59 0
## 32 343 343 343 342 344 6/5/2020 16:45 6/5/2020 16:59 0
## 33 351 351 351 350 352 6/5/2020 20:14 6/5/2020 20:38 0
## 34 351 351 351 350 352 6/5/2020 20:14 6/5/2020 20:38 0
## 35 356 356 356 355 357 6/6/2020 2:10 6/6/2020 3:06 0
## 36 356 356 356 355 357 6/6/2020 2:10 6/6/2020 3:06 0
## 37 367 367 367 366 368 6/7/2020 14:00 6/7/2020 14:36 0
## 38 367 367 367 366 368 6/7/2020 14:00 6/7/2020 14:36 0
## 39 385 385 385 384 386 6/10/2020 17:32 6/10/2020 17:50 0
## 40 385 385 385 384 386 6/10/2020 17:32 6/10/2020 17:50 0
## 41 388 388 388 387 389 6/10/2020 22:26 6/10/2020 22:47 0
## 42 388 388 388 387 389 6/10/2020 22:26 6/10/2020 22:47 0
## 43 643 643 643 642 644 6/16/2020 20:31 6/16/2020 21:02 0
## 44 643 643 643 642 644 6/16/2020 20:31 6/16/2020 21:02 0
## 45 649 649 649 648 650 6/24/2020 2:16 6/24/2020 3:07 0
## 46 649 649 649 648 650 6/24/2020 2:16 6/24/2020 3:07 0
## IPAddress Progress Duration..in.seconds. Finished RecordedDate
## 1 64.72.120.218 100 1801 1 6/4/2020 18:28
## 2 64.72.120.218 100 1801 1 6/4/2020 18:28
## 3 50.47.132.181 100 1098 1 6/4/2020 18:30
## 4 50.47.132.181 100 1098 1 6/4/2020 18:30
## 5 69.119.208.250 100 2469 1 6/4/2020 18:35
## 6 69.119.208.250 100 2469 1 6/4/2020 18:35
## 7 68.196.41.79 100 1200 1 6/4/2020 18:43
## 8 68.196.41.79 100 1200 1 6/4/2020 18:43
## 9 173.183.172.235 100 1581 1 6/4/2020 18:54
## 10 173.183.172.235 100 1581 1 6/4/2020 18:54
## 11 50.39.139.102 100 1426 1 6/4/2020 18:57
## 12 50.39.139.102 100 1426 1 6/4/2020 18:57
## 13 47.41.213.92 100 1122 1 6/4/2020 19:29
## 14 47.41.213.92 100 1122 1 6/4/2020 19:29
## 15 73.255.98.3 100 1274 1 6/4/2020 20:24
## 16 73.255.98.3 100 1274 1 6/4/2020 20:24
## 17 98.217.116.106 100 1582 1 6/4/2020 22:05
## 18 98.217.116.106 100 1582 1 6/4/2020 22:05
## 19 67.233.106.151 100 2317 1 6/4/2020 23:19
## 20 67.233.106.151 100 2317 1 6/4/2020 23:19
## 21 101.118.26.172 100 2845 1 6/4/2020 23:37
## 22 101.118.26.172 100 2845 1 6/4/2020 23:37
## 23 2.42.15.125 100 2033 1 6/5/2020 2:51
## 24 2.42.15.125 100 2033 1 6/5/2020 2:51
## 25 76.28.205.183 100 1602 1 6/5/2020 5:21
## 26 76.28.205.183 100 1602 1 6/5/2020 5:21
## 27 213.127.111.151 100 3026 1 6/5/2020 12:15
## 28 213.127.111.151 100 3026 1 6/5/2020 12:15
## 29 24.16.67.159 100 1707 1 6/5/2020 14:59
## 30 24.16.67.159 100 1707 1 6/5/2020 14:59
## 31 76.237.103.229 100 821 1 6/5/2020 16:59
## 32 76.237.103.229 100 821 1 6/5/2020 16:59
## 33 72.226.8.252 100 1448 1 6/5/2020 20:38
## 34 72.226.8.252 100 1448 1 6/5/2020 20:38
## 35 107.77.199.93 100 3385 1 6/6/2020 3:06
## 36 107.77.199.93 100 3385 1 6/6/2020 3:06
## 37 82.37.79.115 100 2172 1 6/7/2020 14:36
## 38 82.37.79.115 100 2172 1 6/7/2020 14:36
## 39 76.216.227.170 100 1074 1 6/10/2020 17:50
## 40 76.216.227.170 100 1074 1 6/10/2020 17:50
## 41 135.180.109.23 100 1274 1 6/10/2020 22:47
## 42 135.180.109.23 100 1274 1 6/10/2020 22:47
## 43 69.248.130.139 100 1860 1 6/16/2020 21:02
## 44 69.248.130.139 100 1860 1 6/16/2020 21:02
## 45 100.14.182.171 100 3055 1 6/24/2020 3:07
## 46 100.14.182.171 100 3055 1 6/24/2020 3:07
## ResponseId RecipientLastName RecipientFirstName RecipientEmail
## 1 R_3HoC9IbDt4mV9ro NA NA NA
## 2 R_3HoC9IbDt4mV9ro NA NA NA
## 3 R_2SAD0QHBIBkzeYF NA NA NA
## 4 R_2SAD0QHBIBkzeYF NA NA NA
## 5 R_1i8MFgPBjoJiR9J NA NA NA
## 6 R_1i8MFgPBjoJiR9J NA NA NA
## 7 R_3CZZBgM0vLHKMnQ NA NA NA
## 8 R_3CZZBgM0vLHKMnQ NA NA NA
## 9 R_2aeNjkswRQzyeR3 NA NA NA
## 10 R_2aeNjkswRQzyeR3 NA NA NA
## 11 R_1kYSwwNUYbEhdR4 NA NA NA
## 12 R_1kYSwwNUYbEhdR4 NA NA NA
## 13 R_5sualx0rkd6eiXf NA NA NA
## 14 R_5sualx0rkd6eiXf NA NA NA
## 15 R_viUAlo58BA1SlkB NA NA NA
## 16 R_viUAlo58BA1SlkB NA NA NA
## 17 R_1ODfbfzol0V6TI7 NA NA NA
## 18 R_1ODfbfzol0V6TI7 NA NA NA
## 19 R_Ry2vNQRl1Vixxhn NA NA NA
## 20 R_Ry2vNQRl1Vixxhn NA NA NA
## 21 R_3nDjKvNpxjn2Yke NA NA NA
## 22 R_3nDjKvNpxjn2Yke NA NA NA
## 23 R_0xFhoHMtWUgLhM5 NA NA NA
## 24 R_0xFhoHMtWUgLhM5 NA NA NA
## 25 R_1IobrLc0n5dDNg8 NA NA NA
## 26 R_1IobrLc0n5dDNg8 NA NA NA
## 27 R_2BznZQlgTBOB7VV NA NA NA
## 28 R_2BznZQlgTBOB7VV NA NA NA
## 29 R_3PC3EW6d9nEmZde NA NA NA
## 30 R_3PC3EW6d9nEmZde NA NA NA
## 31 R_1o6exah9HMdT6kB NA NA NA
## 32 R_1o6exah9HMdT6kB NA NA NA
## 33 R_1i34oL6FgoeRmrc NA NA NA
## 34 R_1i34oL6FgoeRmrc NA NA NA
## 35 R_1pQnWp2Uu3rTKMK NA NA NA
## 36 R_1pQnWp2Uu3rTKMK NA NA NA
## 37 R_2xEJsLekJXGv11v NA NA NA
## 38 R_2xEJsLekJXGv11v NA NA NA
## 39 R_1mK6edHHqq6QA76 NA NA NA
## 40 R_1mK6edHHqq6QA76 NA NA NA
## 41 R_ZmFHMAN48NVK39T NA NA NA
## 42 R_ZmFHMAN48NVK39T NA NA NA
## 43 R_3iVZ2kZp21jqpIF NA NA NA
## 44 R_3iVZ2kZp21jqpIF NA NA NA
## 45 R_246oqvjjKgShgVI NA NA NA
## 46 R_246oqvjjKgShgVI NA NA NA
## ExternalReference LocationLatitude LocationLongitude DistributionChannel
## 1 NA 44.00900 -92.393402 anonymous
## 2 NA 44.00900 -92.393402 anonymous
## 3 NA 47.79460 -122.219299 anonymous
## 4 NA 47.79460 -122.219299 anonymous
## 5 NA 40.61790 -73.985603 anonymous
## 6 NA 40.61790 -73.985603 anonymous
## 7 NA 40.61790 -73.985603 anonymous
## 8 NA 40.61790 -73.985603 anonymous
## 9 NA 51.12601 -114.143700 anonymous
## 10 NA 51.12601 -114.143700 anonymous
## 11 NA 45.45490 -122.801697 anonymous
## 12 NA 45.45490 -122.801697 anonymous
## 13 NA 34.06480 -118.085999 anonymous
## 14 NA 34.06480 -118.085999 anonymous
## 15 NA 29.57990 -95.608498 anonymous
## 16 NA 29.57990 -95.608498 anonymous
## 17 NA 42.24631 -70.997200 anonymous
## 18 NA 42.24631 -70.997200 anonymous
## 19 NA 37.89310 -78.338600 anonymous
## 20 NA 37.89310 -78.338600 anonymous
## 21 NA -31.96741 115.862091 anonymous
## 22 NA -31.96741 115.862091 anonymous
## 23 NA 45.54311 11.541504 anonymous
## 24 NA 45.54311 11.541504 anonymous
## 25 NA 47.55791 -122.163300 anonymous
## 26 NA 47.55791 -122.163300 anonymous
## 27 NA 52.36400 4.865997 anonymous
## 28 NA 52.36400 4.865997 anonymous
## 29 NA 47.61310 -122.205299 anonymous
## 30 NA 47.61310 -122.205299 anonymous
## 31 NA 37.73531 -122.373199 anonymous
## 32 NA 37.73531 -122.373199 anonymous
## 33 NA 40.74651 -73.908997 anonymous
## 34 NA 40.74651 -73.908997 anonymous
## 35 NA 32.97200 -96.791397 anonymous
## 36 NA 32.97200 -96.791397 anonymous
## 37 NA 51.45351 -2.591705 anonymous
## 38 NA 51.45351 -2.591705 anonymous
## 39 NA 33.86040 -117.754501 anonymous
## 40 NA 33.86040 -117.754501 anonymous
## 41 NA 37.72009 -122.441399 anonymous
## 42 NA 37.72009 -122.441399 anonymous
## 43 NA 40.43060 -74.402000 anonymous
## 44 NA 40.43060 -74.402000 anonymous
## 45 NA 40.12151 -75.326897 anonymous
## 46 NA 40.12151 -75.326897 anonymous
## UserLanguage Q_RecaptchaScore PROLIFICID CONSENT EXPGRP
## 1 EN 0.9 58e68cb97a5a2e00019f3a72 1 2
## 2 EN 0.9 58e68cb97a5a2e00019f3a72 1 2
## 3 EN 0.9 5ec08db7e8622c49c753f34e 1 2
## 4 EN 0.9 5ec08db7e8622c49c753f34e 1 2
## 5 EN 0.9 5ded4bab1edb794081b3378e 1 2
## 6 EN 0.9 5ded4bab1edb794081b3378e 1 2
## 7 EN 0.9 5dd9d8c07af66197bd21b910 1 2
## 8 EN 0.9 5dd9d8c07af66197bd21b910 1 2
## 9 EN 0.9 5ec85e84b11a173447d76ecd 1 2
## 10 EN 0.9 5ec85e84b11a173447d76ecd 1 2
## 11 EN 0.9 5ed67cbe121a540bac7cad09 1 2
## 12 EN 0.9 5ed67cbe121a540bac7cad09 1 2
## 13 EN 0.9 5ae15492eb6040000153ca53 1 2
## 14 EN 0.9 5ae15492eb6040000153ca53 1 2
## 15 EN 0.9 5ed91329121d6e0a30cfdc14 1 2
## 16 EN 0.9 5ed91329121d6e0a30cfdc14 1 2
## 17 EN 0.9 5e794f94cd742b5121734d4c 1 2
## 18 EN 0.9 5e794f94cd742b5121734d4c 1 2
## 19 EN 0.9 5e91350e16b81046df5dcf52 1 2
## 20 EN 0.9 5e91350e16b81046df5dcf52 1 2
## 21 EN 0.9 5e7382f938f24403681defcf 1 2
## 22 EN 0.9 5e7382f938f24403681defcf 1 2
## 23 EN 0.9 5e527156e1cbcd271e5444ee 1 2
## 24 EN 0.9 5e527156e1cbcd271e5444ee 1 2
## 25 EN 0.9 5ece39fa54acea1c404409ab 1 2
## 26 EN 0.9 5ece39fa54acea1c404409ab 1 2
## 27 EN 0.9 5ce4172f5ffd39001a61bb95 1 2
## 28 EN 0.9 5ce4172f5ffd39001a61bb95 1 2
## 29 EN 0.9 5d5ecd0a97f8b6001aee95ab 1 2
## 30 EN 0.9 5d5ecd0a97f8b6001aee95ab 1 2
## 31 EN 0.9 5e8e8f9c7bdc2e155159a4b5 1 2
## 32 EN 0.9 5e8e8f9c7bdc2e155159a4b5 1 2
## 33 EN 0.9 5e42d1503711310179bb6ba2 1 2
## 34 EN 0.9 5e42d1503711310179bb6ba2 1 2
## 35 EN 0.9 5bcfd5c90f10750001d8860e 1 2
## 36 EN 0.9 5bcfd5c90f10750001d8860e 1 2
## 37 EN 0.9 5c92cbb87a7067000190b8e6 1 2
## 38 EN 0.9 5c92cbb87a7067000190b8e6 1 2
## 39 EN 0.9 5e9c1b040ea62712948bb1fd 1 2
## 40 EN 0.9 5e9c1b040ea62712948bb1fd 1 2
## 41 EN 0.9 5ebccf55e32fec1243355046 1 2
## 42 EN 0.9 5ebccf55e32fec1243355046 1 2
## 43 EN 0.9 5e8ec73efa10f000090fcc1c 1 2
## 44 EN 0.9 5e8ec73efa10f000090fcc1c 1 2
## 45 EN 0.9 5ebc4d1ecf44f0076a398cd5 1 2
## 46 EN 0.9 5ebc4d1ecf44f0076a398cd5 1 2
## CHIN_SPECIFIC CHIN_SPECIFIC_6_TEXT NONASIA_SPECIFIC
## 1 1 -99 NA
## 2 1 -99 NA
## 3 1 -99 NA
## 4 1 -99 NA
## 5 1 -99 NA
## 6 1 -99 NA
## 7 1 -99 NA
## 8 1 -99 NA
## 9 1 -99 NA
## 10 1 -99 NA
## 11 6 American NA
## 12 6 American NA
## 13 1 -99 NA
## 14 1 -99 NA
## 15 4 -99 NA
## 16 4 -99 NA
## 17 6 Fuzhounese NA
## 18 6 Fuzhounese NA
## 19 1 -99 NA
## 20 1 -99 NA
## 21 6 American born Chinese NA
## 22 6 American born Chinese NA
## 23 1 -99 NA
## 24 1 -99 NA
## 25 6 American Born Chinese NA
## 26 6 American Born Chinese NA
## 27 1 -99 NA
## 28 1 -99 NA
## 29 2 -99 NA
## 30 2 -99 NA
## 31 6 Chinese American NA
## 32 6 Chinese American NA
## 33 6 Chinese Indonesian NA
## 34 6 Chinese Indonesian NA
## 35 1 -99 NA
## 36 1 -99 NA
## 37 1 -99 NA
## 38 1 -99 NA
## 39 2 -99 NA
## 40 2 -99 NA
## 41 1 -99 NA
## 42 1 -99 NA
## 43 1 -99 NA
## 44 1 -99 NA
## 45 1 -99 NA
## 46 1 -99 NA
## NONASIA_SPECIFIC_19_TEXT NonWNonA_Specific NonWNonA_Specific_7_TEXT
## 1 NA NA NA
## 2 NA NA NA
## 3 NA NA NA
## 4 NA NA NA
## 5 NA NA NA
## 6 NA NA NA
## 7 NA NA NA
## 8 NA NA NA
## 9 NA NA NA
## 10 NA NA NA
## 11 NA NA NA
## 12 NA NA NA
## 13 NA NA NA
## 14 NA NA NA
## 15 NA NA NA
## 16 NA NA NA
## 17 NA NA NA
## 18 NA NA NA
## 19 NA NA NA
## 20 NA NA NA
## 21 NA NA NA
## 22 NA NA NA
## 23 NA NA NA
## 24 NA NA NA
## 25 NA NA NA
## 26 NA NA NA
## 27 NA NA NA
## 28 NA NA NA
## 29 NA NA NA
## 30 NA NA NA
## 31 NA NA NA
## 32 NA NA NA
## 33 NA NA NA
## 34 NA NA NA
## 35 NA NA NA
## 36 NA NA NA
## 37 NA NA NA
## 38 NA NA NA
## 39 NA NA NA
## 40 NA NA NA
## 41 NA NA NA
## 42 NA NA NA
## 43 NA NA NA
## 44 NA NA NA
## 45 NA NA NA
## 46 NA NA NA
## NonWNonA_Specific_14_TEXT OTHER_RACE_1 OTHER_RACE_2 OTHER_RACE_3
## 1 NA -99 -99 -99
## 2 NA -99 -99 -99
## 3 NA -99 -99 -99
## 4 NA -99 -99 -99
## 5 NA -99 -99 -99
## 6 NA -99 -99 -99
## 7 NA -99 -99 -99
## 8 NA -99 -99 -99
## 9 NA 0 0 1
## 10 NA 0 0 1
## 11 NA 0 0 1
## 12 NA 0 0 1
## 13 NA -99 -99 -99
## 14 NA -99 -99 -99
## 15 NA -99 -99 -99
## 16 NA -99 -99 -99
## 17 NA -99 -99 -99
## 18 NA -99 -99 -99
## 19 NA -99 -99 -99
## 20 NA -99 -99 -99
## 21 NA 0 0 1
## 22 NA 0 0 1
## 23 NA -99 -99 -99
## 24 NA -99 -99 -99
## 25 NA -99 -99 -99
## 26 NA -99 -99 -99
## 27 NA -99 -99 -99
## 28 NA -99 -99 -99
## 29 NA 0 0 1
## 30 NA 0 0 1
## 31 NA -99 -99 -99
## 32 NA -99 -99 -99
## 33 NA 0 0 1
## 34 NA 0 0 1
## 35 NA 0 0 1
## 36 NA 0 0 1
## 37 NA -99 -99 -99
## 38 NA -99 -99 -99
## 39 NA -99 -99 -99
## 40 NA -99 -99 -99
## 41 NA -99 -99 -99
## 42 NA -99 -99 -99
## 43 NA -99 -99 -99
## 44 NA -99 -99 -99
## 45 NA -99 -99 -99
## 46 NA -99 -99 -99
## OTHER_RACE_4 OTHER_RACE_5 OTHER_RACE_6 OTHER_RACE_7 OTHER_RACE_4_TEXT
## 1 -99 -99 -99 -99 -99
## 2 -99 -99 -99 -99 -99
## 3 -99 -99 -99 -99 -99
## 4 -99 -99 -99 -99 -99
## 5 -99 -99 -99 -99 -99
## 6 -99 -99 -99 -99 -99
## 7 -99 -99 -99 -99 -99
## 8 -99 -99 -99 -99 -99
## 9 0 0 0 0 -99
## 10 0 0 0 0 -99
## 11 0 0 0 0 -99
## 12 0 0 0 0 -99
## 13 -99 -99 -99 -99 -99
## 14 -99 -99 -99 -99 -99
## 15 -99 -99 -99 -99 -99
## 16 -99 -99 -99 -99 -99
## 17 -99 -99 -99 -99 -99
## 18 -99 -99 -99 -99 -99
## 19 -99 -99 -99 -99 -99
## 20 -99 -99 -99 -99 -99
## 21 0 0 0 0 -99
## 22 0 0 0 0 -99
## 23 -99 -99 -99 -99 -99
## 24 -99 -99 -99 -99 -99
## 25 -99 -99 -99 -99 -99
## 26 -99 -99 -99 -99 -99
## 27 -99 -99 -99 -99 -99
## 28 -99 -99 -99 -99 -99
## 29 0 0 0 0 -99
## 30 0 0 0 0 -99
## 31 -99 -99 -99 -99 -99
## 32 -99 -99 -99 -99 -99
## 33 0 1 1 0 -99
## 34 0 1 1 0 -99
## 35 0 0 0 0 -99
## 36 0 0 0 0 -99
## 37 -99 -99 -99 -99 -99
## 38 -99 -99 -99 -99 -99
## 39 -99 -99 -99 -99 -99
## 40 -99 -99 -99 -99 -99
## 41 -99 -99 -99 -99 -99
## 42 -99 -99 -99 -99 -99
## 43 -99 -99 -99 -99 -99
## 44 -99 -99 -99 -99 -99
## 45 -99 -99 -99 -99 -99
## 46 -99 -99 -99 -99 -99
## OTHER_RACE_5_TEXT OTHER_RACE_6_TEXT OTHER_RACE_7_TEXT DOB_1 DOB_2 DOB_3 SEX
## 1 -99 -99 -99 6 5 95 2
## 2 -99 -99 -99 6 5 95 2
## 3 -99 -99 -99 10 8 102 2
## 4 -99 -99 -99 10 8 102 2
## 5 -99 -99 -99 11 27 95 2
## 6 -99 -99 -99 11 27 95 2
## 7 -99 -99 -99 12 20 95 2
## 8 -99 -99 -99 12 20 95 2
## 9 -99 -99 -99 3 9 101 1
## 10 -99 -99 -99 3 9 101 1
## 11 -99 -99 -99 1 21 93 2
## 12 -99 -99 -99 1 21 93 2
## 13 -99 -99 -99 11 10 97 1
## 14 -99 -99 -99 11 10 97 1
## 15 -99 -99 -99 3 31 103 1
## 16 -99 -99 -99 3 31 103 1
## 17 -99 -99 -99 3 11 101 1
## 18 -99 -99 -99 3 11 101 1
## 19 -99 -99 -99 2 6 102 1
## 20 -99 -99 -99 2 6 102 1
## 21 -99 -99 -99 1 18 88 1
## 22 -99 -99 -99 1 18 88 1
## 23 -99 -99 -99 9 4 100 1
## 24 -99 -99 -99 9 4 100 1
## 25 -99 -99 -99 10 4 101 1
## 26 -99 -99 -99 10 4 101 1
## 27 -99 -99 -99 1 5 94 2
## 28 -99 -99 -99 1 5 94 2
## 29 -99 -99 -99 6 8 101 1
## 30 -99 -99 -99 6 8 101 1
## 31 -99 -99 -99 5 16 91 1
## 32 -99 -99 -99 5 16 91 1
## 33 -99 -99 -99 4 18 97 2
## 34 -99 -99 -99 4 18 97 2
## 35 -99 -99 -99 6 5 100 1
## 36 -99 -99 -99 6 5 100 1
## 37 -99 -99 -99 10 7 97 2
## 38 -99 -99 -99 10 7 97 2
## 39 -99 -99 -99 9 4 102 2
## 40 -99 -99 -99 9 4 102 2
## 41 -99 -99 -99 2 14 93 2
## 42 -99 -99 -99 2 14 93 2
## 43 -99 -99 -99 7 26 98 2
## 44 -99 -99 -99 7 26 98 2
## 45 -99 -99 -99 6 7 102 1
## 46 -99 -99 -99 6 7 102 1
## SEX_4_TEXT EDUCATION_1 EDUCATION_2 EDUCATION_3 COUNTRY_BORN
## 1 -99 8 6 5 2
## 2 -99 8 6 5 2
## 3 -99 3 2 4 1
## 4 -99 3 2 4 1
## 5 -99 5 2 2 1
## 6 -99 5 2 2 1
## 7 -99 7 6 6 1
## 8 -99 7 6 6 1
## 9 -99 3 7 6 2
## 10 -99 3 7 6 2
## 11 -99 6 1 1 1
## 12 -99 6 1 1 1
## 13 -99 5 2 2 1
## 14 -99 5 2 2 1
## 15 -99 2 1 2 1
## 16 -99 2 1 2 1
## 17 -99 3 1 1 1
## 18 -99 3 1 1 1
## 19 -99 4 1 1 1
## 20 -99 4 1 1 1
## 21 -99 5 2 2 1
## 22 -99 5 2 2 1
## 23 -99 3 1 2 2
## 24 -99 3 1 2 2
## 25 -99 3 5 8 1
## 26 -99 3 5 8 1
## 27 -99 6 2 2 2
## 28 -99 6 2 2 2
## 29 -99 3 5 5 1
## 30 -99 3 5 5 1
## 31 -99 5 2 2 1
## 32 -99 5 2 2 1
## 33 -99 5 6 8 1
## 34 -99 5 6 8 1
## 35 -99 3 4 7 1
## 36 -99 3 4 7 1
## 37 -99 5 3 5 2
## 38 -99 5 3 5 2
## 39 -99 3 5 5 1
## 40 -99 3 5 5 1
## 41 -99 8 2 2 1
## 42 -99 8 2 2 1
## 43 -99 2 5 7 1
## 44 -99 2 5 7 1
## 45 -99 3 6 7 1
## 46 -99 3 6 7 1
## COUNTRY_BORN_2_TEXT BIRTHCTRY_RESIDENCE OTHER_COUNTRIES.1_1_TEXT
## 1 CHINA 4.0 USA
## 2 CHINA 4.0 USA
## 3 -99 18.0 -99
## 4 -99 18.0 -99
## 5 -99 25.0 -99
## 6 -99 25.0 -99
## 7 -99 25.0 -99
## 8 -99 25.0 -99
## 9 CHINA 6.0 USA
## 10 CHINA 6.0 USA
## 11 -99 28.0 -99
## 12 -99 28.0 -99
## 13 -99 23.0 -99
## 14 -99 23.0 -99
## 15 -99 18.0 -99
## 16 -99 18.0 -99
## 17 -99 20.0 -99
## 18 -99 20.0 -99
## 19 -99 15.0 CHINA
## 20 -99 15.0 CHINA
## 21 -99 33.0 -99
## 22 -99 33.0 -99
## 23 ITALY 20.0 -99
## 24 ITALY 20.0 -99
## 25 -99 19.0 CHINA
## 26 -99 19.0 CHINA
## 27 CHINA 22.0 NETHERLANDS
## 28 CHINA 22.0 NETHERLANDS
## 29 -99 19.0 -99
## 30 -99 19.0 -99
## 31 -99 30.0 -99
## 32 -99 30.0 -99
## 33 -99 23.0 INDONESIA
## 34 -99 23.0 INDONESIA
## 35 -99 21.0 -99
## 36 -99 21.0 -99
## 37 CHINA 16.0 SWEDEN
## 38 CHINA 16.0 SWEDEN
## 39 -99 18.0 -99
## 40 -99 18.0 -99
## 41 -99 27.5 AUSTRALIA
## 42 -99 27.5 AUSTRALIA
## 43 -99 19.0 CHINA
## 44 -99 19.0 CHINA
## 45 -99 19.0 -99
## 46 -99 19.0 -99
## OTHER_COUNTRIES.1_1_1 OTHER_COUNTRIES.1_2_TEXT OTHER_COUNTRIES.1_2_1
## 1 21.0 -99 -99.0
## 2 21.0 -99 -99.0
## 3 -99.0 -99 -99.0
## 4 -99.0 -99 -99.0
## 5 -99.0 -99 -99.0
## 6 -99.0 -99 -99.0
## 7 -99.0 -99 -99.0
## 8 -99.0 -99 -99.0
## 9 6.0 CANADA 8.0
## 10 6.0 CANADA 8.0
## 11 -99.0 -99 -99.0
## 12 -99.0 -99 -99.0
## 13 -99.0 -99 -99.0
## 14 -99.0 -99 -99.0
## 15 -99.0 -99 -99.0
## 16 -99.0 -99 -99.0
## 17 -99.0 -99 -99.0
## 18 -99.0 -99 -99.0
## 19 4.0 -99 -99.0
## 20 4.0 -99 -99.0
## 21 -99.0 -99 -99.0
## 22 -99.0 -99 -99.0
## 23 -99.0 -99 -99.0
## 24 -99.0 -99 -99.0
## 25 0.5 -99 -99.0
## 26 0.5 -99 -99.0
## 27 5.5 -99 -99.0
## 28 5.5 -99 -99.0
## 29 -99.0 -99 -99.0
## 30 -99.0 -99 -99.0
## 31 -99.0 -99 -99.0
## 32 -99.0 -99 -99.0
## 33 1.0 -99 -99.0
## 34 1.0 -99 -99.0
## 35 -99.0 -99 -99.0
## 36 -99.0 -99 -99.0
## 37 1.0 UNITED KINGDOM 5.5
## 38 1.0 UNITED KINGDOM 5.5
## 39 -99.0 -99 -99.0
## 40 -99.0 -99 -99.0
## 41 0.5 -99 -99.0
## 42 0.5 -99 -99.0
## 43 3.0 -99 -99.0
## 44 3.0 -99 -99.0
## 45 -99.0 -99 -99.0
## 46 -99.0 -99 -99.0
## OTHER_COUNTRIES.1_3_TEXT OTHER_COUNTRIES.1_3_1 OTHER_COUNTRIES.1_4_TEXT
## 1 -99 -99 -99
## 2 -99 -99 -99
## 3 -99 -99 -99
## 4 -99 -99 -99
## 5 -99 -99 -99
## 6 -99 -99 -99
## 7 -99 -99 -99
## 8 -99 -99 -99
## 9 -99 -99 -99
## 10 -99 -99 -99
## 11 -99 -99 -99
## 12 -99 -99 -99
## 13 -99 -99 -99
## 14 -99 -99 -99
## 15 -99 -99 -99
## 16 -99 -99 -99
## 17 -99 -99 -99
## 18 -99 -99 -99
## 19 -99 -99 -99
## 20 -99 -99 -99
## 21 -99 -99 -99
## 22 -99 -99 -99
## 23 -99 -99 -99
## 24 -99 -99 -99
## 25 -99 -99 -99
## 26 -99 -99 -99
## 27 -99 -99 -99
## 28 -99 -99 -99
## 29 -99 -99 -99
## 30 -99 -99 -99
## 31 -99 -99 -99
## 32 -99 -99 -99
## 33 -99 -99 -99
## 34 -99 -99 -99
## 35 -99 -99 -99
## 36 -99 -99 -99
## 37 -99 -99 -99
## 38 -99 -99 -99
## 39 -99 -99 -99
## 40 -99 -99 -99
## 41 -99 -99 -99
## 42 -99 -99 -99
## 43 -99 -99 -99
## 44 -99 -99 -99
## 45 -99 -99 -99
## 46 -99 -99 -99
## OTHER_COUNTRIES.1_4_1 OTHER_COUNTRIES.1_5_TEXT OTHER_COUNTRIES.1_5_1
## 1 -99 -99 -99
## 2 -99 -99 -99
## 3 -99 -99 -99
## 4 -99 -99 -99
## 5 -99 -99 -99
## 6 -99 -99 -99
## 7 -99 -99 -99
## 8 -99 -99 -99
## 9 -99 -99 -99
## 10 -99 -99 -99
## 11 -99 -99 -99
## 12 -99 -99 -99
## 13 -99 -99 -99
## 14 -99 -99 -99
## 15 -99 -99 -99
## 16 -99 -99 -99
## 17 -99 -99 -99
## 18 -99 -99 -99
## 19 -99 -99 -99
## 20 -99 -99 -99
## 21 -99 -99 -99
## 22 -99 -99 -99
## 23 -99 -99 -99
## 24 -99 -99 -99
## 25 -99 -99 -99
## 26 -99 -99 -99
## 27 -99 -99 -99
## 28 -99 -99 -99
## 29 -99 -99 -99
## 30 -99 -99 -99
## 31 -99 -99 -99
## 32 -99 -99 -99
## 33 -99 -99 -99
## 34 -99 -99 -99
## 35 -99 -99 -99
## 36 -99 -99 -99
## 37 -99 -99 -99
## 38 -99 -99 -99
## 39 -99 -99 -99
## 40 -99 -99 -99
## 41 -99 -99 -99
## 42 -99 -99 -99
## 43 -99 -99 -99
## 44 -99 -99 -99
## 45 -99 -99 -99
## 46 -99 -99 -99
## OTHER_COUNTRIES.1_6_TEXT OTHER_COUNTRIES.1_6_1 OTHER_COUNTRIES.1_7_TEXT
## 1 -99 -99 -99
## 2 -99 -99 -99
## 3 -99 -99 -99
## 4 -99 -99 -99
## 5 -99 -99 -99
## 6 -99 -99 -99
## 7 -99 -99 -99
## 8 -99 -99 -99
## 9 -99 -99 -99
## 10 -99 -99 -99
## 11 -99 -99 -99
## 12 -99 -99 -99
## 13 -99 -99 -99
## 14 -99 -99 -99
## 15 -99 -99 -99
## 16 -99 -99 -99
## 17 -99 -99 -99
## 18 -99 -99 -99
## 19 -99 -99 -99
## 20 -99 -99 -99
## 21 -99 -99 -99
## 22 -99 -99 -99
## 23 -99 -99 -99
## 24 -99 -99 -99
## 25 -99 -99 -99
## 26 -99 -99 -99
## 27 -99 -99 -99
## 28 -99 -99 -99
## 29 -99 -99 -99
## 30 -99 -99 -99
## 31 -99 -99 -99
## 32 -99 -99 -99
## 33 -99 -99 -99
## 34 -99 -99 -99
## 35 -99 -99 -99
## 36 -99 -99 -99
## 37 -99 -99 -99
## 38 -99 -99 -99
## 39 -99 -99 -99
## 40 -99 -99 -99
## 41 -99 -99 -99
## 42 -99 -99 -99
## 43 -99.0 -99 -99.0
## 44 -99.0 -99 -99.0
## 45 -99.0 -99 -99.0
## 46 -99.0 -99 -99.0
## OTHER_COUNTRIES.1_7_1 OTHER_COUNTRIES.1_8_TEXT OTHER_COUNTRIES.1_8_1
## 1 -99 -99 -99
## 2 -99 -99 -99
## 3 -99 -99 -99
## 4 -99 -99 -99
## 5 -99 -99 -99
## 6 -99 -99 -99
## 7 -99 -99 -99
## 8 -99 -99 -99
## 9 -99 -99 -99
## 10 -99 -99 -99
## 11 -99 -99 -99
## 12 -99 -99 -99
## 13 -99 -99 -99
## 14 -99 -99 -99
## 15 -99 -99 -99
## 16 -99 -99 -99
## 17 -99 -99 -99
## 18 -99 -99 -99
## 19 -99 -99 -99
## 20 -99 -99 -99
## 21 -99 -99 -99
## 22 -99 -99 -99
## 23 -99 -99 -99
## 24 -99 -99 -99
## 25 -99 -99 -99
## 26 -99 -99 -99
## 27 -99 -99 -99
## 28 -99 -99 -99
## 29 -99 -99 -99
## 30 -99 -99 -99
## 31 -99 -99 -99
## 32 -99 -99 -99
## 33 -99 -99 -99
## 34 -99 -99 -99
## 35 -99 -99 -99
## 36 -99 -99 -99
## 37 -99 -99 -99
## 38 -99 -99 -99
## 39 -99 -99 -99
## 40 -99 -99 -99
## 41 -99 -99 -99
## 42 -99 -99 -99
## 43 -99 -99.0 -99
## 44 -99 -99.0 -99
## 45 -99 -99.0 -99
## 46 -99 -99.0 -99
## FIRST_LANGUAGE FIRST_LANGUAGE_2_TEXT
## 1 2 Mandarin Chinese
## 2 2 Mandarin Chinese
## 3 2 Chinese
## 4 2 Chinese
## 5 1 -99
## 6 1 -99
## 7 1 -99
## 8 1 -99
## 9 2 Mandarin
## 10 2 Mandarin
## 11 1 -99
## 12 1 -99
## 13 1 -99
## 14 1 -99
## 15 2 Cantonese
## 16 2 Cantonese
## 17 2 mandarin
## 18 2 mandarin
## 19 1 -99
## 20 1 -99
## 21 2 Mandarin
## 22 2 Mandarin
## 23 2 Italian
## 24 2 Italian
## 25 2 Chinese
## 26 2 Chinese
## 27 2 Chinese
## 28 2 Chinese
## 29 1 -99
## 30 1 -99
## 31 1 -99
## 32 1 -99
## 33 2 Indonesian
## 34 2 Indonesian
## 35 1 -99
## 36 1 -99
## 37 2 Mandarin
## 38 2 Mandarin
## 39 1 -99
## 40 1 -99
## 41 2 Chinese
## 42 2 Chinese
## 43 2 Chinese
## 44 2 Chinese
## 45 2 Chinese
## 46 2 Chinese
## OTHER_LANGUAGES
## 1 English
## 2 English
## 3 -99
## 4 -99
## 5 Chinese
## 6 Chinese
## 7 cantonese
## 8 cantonese
## 9 Mandarin, English
## 10 Mandarin, English
## 11 none
## 12 none
## 13 Cantonese
## 14 Cantonese
## 15 English
## 16 English
## 17 english
## 18 english
## 19 Chinese
## 20 Chinese
## 21 -99
## 22 -99
## 23 Chinese, English
## 24 Chinese, English
## 25 English
## 26 English
## 27 English, Italian
## 28 English, Italian
## 29 Chinese
## 30 Chinese
## 31 Cantonese
## 32 Cantonese
## 33 English, Mandarin
## 34 English, Mandarin
## 35 Chinese
## 36 Chinese
## 37 English
## 38 English
## 39 Mandarin
## 40 Mandarin
## 41 Taishanese Chinese, Cantonese Chinese, English
## 42 Taishanese Chinese, Cantonese Chinese, English
## 43 Chinese
## 44 Chinese
## 45 English
## 46 English
## OCCUPATION HH_INCOME COVSCRN01 COVSCRN02_P COVSCRN03
## 1 Pharmacist 4 3 NA NA
## 2 Pharmacist 4 3 NA NA
## 3 Math Instructor 5 3 NA NA
## 4 Math Instructor 5 3 NA NA
## 5 Data analyst 5 3 NA NA
## 6 Data analyst 5 3 NA NA
## 7 physical therapist 5 3 NA NA
## 8 physical therapist 5 3 NA NA
## 9 Student and Engineering Intern 2 3 NA NA
## 10 Student and Engineering Intern 2 3 NA NA
## 11 contract admin 5 3 NA NA
## 12 contract admin 5 3 NA NA
## 13 Medical assistant 4 3 NA NA
## 14 Medical assistant 4 3 NA NA
## 15 Student 4 3 NA NA
## 16 Student 4 3 NA NA
## 17 Student 2 3 NA NA
## 18 Student 2 3 NA NA
## 19 Student 2 3 NA NA
## 20 Student 2 3 NA NA
## 21 Employed 5 3 NA NA
## 22 Employed 5 3 NA NA
## 23 Unemployed 3 3 NA NA
## 24 Unemployed 3 3 NA NA
## 25 Student 6 3 NA NA
## 26 Student 6 3 NA NA
## 27 Graduate Student 2 3 NA NA
## 28 Graduate Student 2 3 NA NA
## 29 Student 5 3 NA NA
## 30 Student 5 3 NA NA
## 31 Analyst 7 3 NA NA
## 32 Analyst 7 3 NA NA
## 33 Senior Data Analyst 5 3 NA NA
## 34 Senior Data Analyst 5 3 NA NA
## 35 Student 5 3 NA NA
## 36 Student 5 3 NA NA
## 37 Auditor 2 3 NA NA
## 38 Auditor 2 3 NA NA
## 39 Student 4 3 NA NA
## 40 Student 4 3 NA NA
## 41 Lawyer 5 3 NA NA
## 42 Lawyer 5 3 NA NA
## 43 Student 5 3 NA NA
## 44 Student 5 3 NA NA
## 45 Student 6 3 NA NA
## 46 Student 6 3 NA NA
## COVSCRN04 COVSCRN04_1_TEXT COVSCRN05 COVSCRN05_1_TEXT COVSCRN02_N
## 1 NA NA NA NA NA
## 2 NA NA NA NA NA
## 3 NA NA NA NA NA
## 4 NA NA NA NA NA
## 5 NA NA NA NA NA
## 6 NA NA NA NA NA
## 7 NA NA NA NA NA
## 8 NA NA NA NA NA
## 9 NA NA NA NA NA
## 10 NA NA NA NA NA
## 11 NA NA NA NA NA
## 12 NA NA NA NA NA
## 13 NA NA NA NA NA
## 14 NA NA NA NA NA
## 15 NA NA NA NA NA
## 16 NA NA NA NA NA
## 17 NA NA NA NA NA
## 18 NA NA NA NA NA
## 19 NA NA NA NA NA
## 20 NA NA NA NA NA
## 21 NA NA NA NA NA
## 22 NA NA NA NA NA
## 23 NA NA NA NA NA
## 24 NA NA NA NA NA
## 25 NA NA NA NA NA
## 26 NA NA NA NA NA
## 27 NA NA NA NA NA
## 28 NA NA NA NA NA
## 29 NA NA NA NA NA
## 30 NA NA NA NA NA
## 31 NA NA NA NA NA
## 32 NA NA NA NA NA
## 33 NA NA NA NA NA
## 34 NA NA NA NA NA
## 35 NA NA NA NA NA
## 36 NA NA NA NA NA
## 37 NA NA NA NA NA
## 38 NA NA NA NA NA
## 39 NA NA NA NA NA
## 40 NA NA NA NA NA
## 41 NA NA NA NA NA
## 42 NA NA NA NA NA
## 43 NA NA NA NA NA
## 44 NA NA NA NA NA
## 45 NA NA NA NA NA
## 46 NA NA NA NA NA
## BAI_TIME_First.Click BAI_TIME_Last.Click BAI_TIME_Page.Submit
## 1 2.434 57.004 57.765
## 2 2.434 57.004 57.765
## 3 7.785 35.692 36.893
## 4 7.785 35.692 36.893
## 5 44.913 63.494 66.028
## 6 44.913 63.494 66.028
## 7 9.405 33.024 33.938
## 8 9.405 33.024 33.938
## 9 6.210 31.485 34.875
## 10 6.210 31.485 34.875
## 11 4.125 28.901 29.827
## 12 4.125 28.901 29.827
## 13 4.876 29.099 29.809
## 14 4.876 29.099 29.809
## 15 1.870 26.889 27.689
## 16 1.870 26.889 27.689
## 17 1.547 10.066 16.845
## 18 1.547 10.066 16.845
## 19 1.086 48.758 49.658
## 20 1.086 48.758 49.658
## 21 1.889 43.210 48.484
## 22 1.889 43.210 48.484
## 23 2.319 20.759 24.622
## 24 2.319 20.759 24.622
## 25 10.539 78.661 80.621
## 26 10.539 78.661 80.621
## 27 14.886 61.494 62.894
## 28 14.886 61.494 62.894
## 29 7.139 38.054 48.141
## 30 7.139 38.054 48.141
## 31 3.506 20.770 21.411
## 32 3.506 20.770 21.411
## 33 6.235 51.374 52.916
## 34 6.235 51.374 52.916
## 35 2.497 160.759 161.977
## 36 2.497 160.759 161.977
## 37 1.094 84.709 86.481
## 38 1.094 84.709 86.481
## 39 7.356 33.183 34.122
## 40 7.356 33.183 34.122
## 41 1.001 42.922 45.746
## 42 1.001 42.922 45.746
## 43 10.505 90.218 91.662
## 44 10.505 90.218 91.662
## 45 0.655 44.716 46.189
## 46 0.655 44.716 46.189
## BAI_TIME_Click.Count BAI_1 BAI_2 BAI_3 BAI_4 BAI_5 BAI_6 BAI_7 BAI_8 BAI_9
## 1 44 2 1 1 2 2 2 1 2 1
## 2 44 2 1 1 2 2 2 1 2 1
## 3 22 3 1 1 3 1 1 2 2 1
## 4 22 3 1 1 3 1 1 2 2 1
## 5 21 2 1 1 2 2 2 1 1 2
## 6 21 2 1 1 2 2 2 1 1 2
## 7 22 1 2 1 2 3 1 1 1 2
## 8 22 1 2 1 2 3 1 1 1 2
## 9 24 1 1 1 2 1 1 1 1 1
## 10 24 1 1 1 2 1 1 1 1 1
## 11 26 1 1 1 3 3 1 1 1 1
## 12 26 1 1 1 3 3 1 1 1 1
## 13 28 1 1 1 2 1 1 2 1 1
## 14 28 1 1 1 2 1 1 2 1 1
## 15 35 1 1 1 1 1 1 1 1 1
## 16 35 1 1 1 1 1 1 1 1 1
## 17 23 1 1 1 1 1 1 1 1 1
## 18 23 1 1 1 1 1 1 1 1 1
## 19 33 1 4 1 2 1 2 2 1 1
## 20 33 1 4 1 2 1 2 2 1 1
## 21 26 2 1 1 2 1 2 1 1 1
## 22 26 2 1 1 2 1 2 1 1 1
## 23 22 1 1 1 2 1 1 1 1 1
## 24 22 1 1 1 2 1 1 1 1 1
## 25 22 2 3 2 3 4 1 1 2 2
## 26 22 2 3 2 3 4 1 1 2 2
## 27 21 1 1 1 2 3 2 1 1 3
## 28 21 1 1 1 2 3 2 1 1 3
## 29 22 1 1 1 2 1 1 1 1 1
## 30 22 1 1 1 2 1 1 1 1 1
## 31 21 1 1 1 1 2 2 1 1 1
## 32 21 1 1 1 1 2 2 1 1 1
## 33 23 1 2 1 2 3 2 3 2 4
## 34 23 1 2 1 2 3 2 3 2 4
## 35 37 1 2 1 4 4 1 4 3 4
## 36 37 1 2 1 4 4 1 4 3 4
## 37 66 1 2 1 3 2 1 1 3 2
## 38 66 1 2 1 3 2 1 1 3 2
## 39 21 3 3 3 3 4 3 3 3 3
## 40 21 3 3 3 3 4 3 3 3 3
## 41 31 1 2 1 4 3 1 2 2 1
## 42 31 1 2 1 4 3 1 2 2 1
## 43 26 1 2 1 4 2 1 2 1 2
## 44 26 1 2 1 4 2 1 2 1 2
## 45 68 1 2 1 1 1 1 1 1 1
## 46 68 1 2 1 1 1 1 1 1 1
## BAI_10 BAI_11 BAI_12 BAI_13 BAI_14 BAI_15 BAI_16 BAI_17 BAI_18 BAI_19 BAI_20
## 1 2 1 1 1 1 1 1 1 2 1 2
## 2 2 1 1 1 1 1 1 1 2 1 2
## 3 2 2 2 2 2 2 1 1 1 1 1
## 4 2 2 2 2 2 2 1 1 1 1 1
## 5 2 1 1 1 1 1 1 2 1 1 1
## 6 2 1 1 1 1 1 1 2 1 1 1
## 7 2 1 1 1 2 1 1 2 1 1 1
## 8 2 1 1 1 2 1 1 2 1 1 1
## 9 1 1 1 1 1 1 1 1 2 1 1
## 10 1 1 1 1 1 1 1 1 2 1 1
## 11 1 1 1 1 2 1 1 1 1 1 1
## 12 1 1 1 1 2 1 1 1 1 1 1
## 13 1 1 1 1 1 2 1 1 1 1 1
## 14 1 1 1 1 1 2 1 1 1 1 1
## 15 2 1 1 1 1 1 1 1 1 1 1
## 16 2 1 1 1 1 1 1 1 1 1 1
## 17 1 1 1 1 1 1 1 1 1 1 1
## 18 1 1 1 1 1 1 1 1 1 1 1
## 19 1 1 1 1 1 1 1 1 2 2 1
## 20 1 1 1 1 1 1 1 1 2 2 1
## 21 1 1 1 1 1 1 1 1 2 1 1
## 22 1 1 1 1 1 1 1 1 2 1 1
## 23 2 1 1 1 1 1 1 1 1 1 1
## 24 2 1 1 1 1 1 1 1 1 1 1
## 25 3 1 1 1 3 1 1 1 1 2 1
## 26 3 1 1 1 3 1 1 1 1 2 1
## 27 3 1 1 1 2 1 1 2 1 2 1
## 28 3 1 1 1 2 1 1 2 1 2 1
## 29 2 1 1 1 1 1 1 1 1 1 1
## 30 2 1 1 1 1 1 1 1 1 1 1
## 31 2 1 1 1 1 1 2 1 1 2 1
## 32 2 1 1 1 1 1 2 1 1 2 1
## 33 4 1 1 2 3 1 1 4 1 2 1
## 34 4 1 1 2 3 1 1 4 1 2 1
## 35 4 3 1 3 4 3 1 4 4 3 4
## 36 4 3 1 3 4 3 1 4 4 3 4
## 37 3 1 1 1 2 1 1 2 1 1 1
## 38 3 1 1 1 2 1 1 2 1 1 1
## 39 3 2 2 3 3 3 3 3 3 3 3
## 40 3 2 2 3 3 3 3 3 3 3 3
## 41 4 1 1 1 4 2 1 2 2 1 1
## 42 4 1 1 1 4 2 1 2 2 1 1
## 43 3 1 1 1 3 1 1 2 2 1 1
## 44 3 1 1 1 3 1 1 2 2 1 1
## 45 2 1 1 1 1 1 1 2 2 1 1
## 46 2 1 1 1 1 1 1 2 2 1 1
## BAI_21 BDI_TIME_First.Click BDI_TIME_Last.Click BDI_TIME_Page.Submit
## 1 1 4.051 91.834 92.764
## 2 1 4.051 91.834 92.764
## 3 1 6.259 85.336 86.222
## 4 1 6.259 85.336 86.222
## 5 1 419.410 469.346 470.279
## 6 1 419.410 469.346 470.279
## 7 1 9.006 118.214 119.073
## 8 1 9.006 118.214 119.073
## 9 1 4.898 72.950 74.387
## 10 1 4.898 72.950 74.387
## 11 1 5.501 41.998 44.186
## 12 1 5.501 41.998 44.186
## 13 1 11.946 90.210 91.809
## 14 1 11.946 90.210 91.809
## 15 1 1.318 66.259 67.399
## 16 1 1.318 66.259 67.399
## 17 1 3.828 91.275 92.915
## 18 1 3.828 91.275 92.915
## 19 2 4.504 148.956 150.443
## 20 2 4.504 148.956 150.443
## 21 1 1.408 229.886 231.267
## 22 1 1.408 229.886 231.267
## 23 1 3.892 70.652 71.509
## 24 1 3.892 70.652 71.509
## 25 1 13.671 110.412 114.895
## 26 1 13.671 110.412 114.895
## 27 1 19.342 109.612 110.923
## 28 1 19.342 109.612 110.923
## 29 1 5.344 79.234 80.684
## 30 1 5.344 79.234 80.684
## 31 1 7.096 77.251 77.908
## 32 1 7.096 77.251 77.908
## 33 2 2.279 103.692 104.994
## 34 2 2.279 103.692 104.994
## 35 2 6.969 171.135 171.687
## 36 2 6.969 171.135 171.687
## 37 1 1.169 104.379 106.516
## 38 1 1.169 104.379 106.516
## 39 2 4.161 64.224 65.683
## 40 2 4.161 64.224 65.683
## 41 2 2.817 91.702 92.423
## 42 2 2.817 91.702 92.423
## 43 1 3.231 151.553 152.746
## 44 1 3.231 151.553 152.746
## 45 1 0.744 69.730 70.901
## 46 1 0.744 69.730 70.901
## BDI_TIME_Click.Count BDI01 BDI02 BDI03 BDI04 BDI05 BDI06 BDI07 BDI08 BDI09
## 1 68 1 2 3 2 2 1 2 2 1
## 2 68 1 2 3 2 2 1 2 2 1
## 3 28 2 3 2 2 1 1 2 2 2
## 4 28 2 3 2 2 1 1 2 2 2
## 5 22 1 1 1 1 1 1 1 1 1
## 6 22 1 1 1 1 1 1 1 1 1
## 7 27 1 3 1 1 2 1 2 2 1
## 8 27 1 3 1 1 2 1 2 2 1
## 9 22 1 1 1 1 1 1 1 1 1
## 10 22 1 1 1 1 1 1 1 1 1
## 11 26 2 1 1 1 1 1 1 1 1
## 12 26 2 1 1 1 1 1 1 1 1
## 13 27 1 2 1 2 1 1 2 2 1
## 14 27 1 2 1 2 1 1 2 2 1
## 15 64 1 1 2 1 1 1 2 2 1
## 16 64 1 1 2 1 1 1 2 2 1
## 17 23 1 2 2 1 1 1 1 2 1
## 18 23 1 2 2 1 1 1 1 2 1
## 19 67 2 1 1 1 1 1 1 1 1
## 20 67 2 1 1 1 1 1 1 1 1
## 21 57 1 1 1 1 1 1 1 1 1
## 22 57 1 1 1 1 1 1 1 1 1
## 23 31 1 3 3 1 1 1 1 1 1
## 24 31 1 3 3 1 1 1 1 1 1
## 25 24 1 2 1 2 2 1 2 3 2
## 26 24 1 2 1 2 2 1 2 3 2
## 27 27 2 2 1 2 2 2 2 1 1
## 28 27 2 2 1 2 2 2 2 1 1
## 29 23 1 1 1 1 1 1 1 1 1
## 30 23 1 1 1 1 1 1 1 1 1
## 31 26 1 1 1 1 1 1 1 1 1
## 32 26 1 1 1 1 1 1 1 1 1
## 33 22 2 2 2 2 2 1 2 2 1
## 34 22 2 2 2 2 2 1 2 2 1
## 35 74 3 2 3 3 3 4 3 4 2
## 36 74 3 2 3 3 3 4 3 4 2
## 37 83 1 2 2 2 1 1 2 2 1
## 38 83 1 2 2 2 1 1 2 2 1
## 39 24 2 2 1 1 1 1 1 2 1
## 40 24 2 2 1 1 1 1 1 2 1
## 41 73 2 2 1 2 2 2 2 2 2
## 42 73 2 2 1 2 2 2 2 2 2
## 43 35 2 2 2 3 1 2 2 2 2
## 44 35 2 2 2 3 1 2 2 2 2
## 45 60 1 2 1 1 1 1 2 2 1
## 46 60 1 2 1 1 1 1 2 2 1
## BDI10 BDI11 BDI12 BDI13 BDI14 BDI15 BDI16 BDI17 BDI18 BDI19 BDI19a BDI20
## 1 4 2 1 2 1 2 3 1 1 2 1 2
## 2 4 2 1 2 1 2 3 1 1 2 1 2
## 3 2 3 4 3 4 3 4 2 1 1 2 1
## 4 2 3 4 3 4 3 4 2 1 1 2 1
## 5 1 2 1 1 1 1 1 1 1 1 2 1
## 6 1 2 1 1 1 1 1 1 1 1 2 1
## 7 1 1 1 1 3 3 2 2 1 2 1 2
## 8 1 1 1 1 3 3 2 2 1 2 1 2
## 9 1 1 2 2 1 2 1 1 2 1 1 1
## 10 1 1 2 2 1 2 1 1 2 1 1 1
## 11 1 3 1 1 1 1 1 2 1 1 2 1
## 12 1 3 1 1 1 1 1 2 1 1 2 1
## 13 1 2 1 2 1 2 2 2 1 1 2 1
## 14 1 2 1 2 1 2 2 2 1 1 2 1
## 15 1 1 2 1 2 2 1 1 1 1 2 1
## 16 1 1 2 1 2 2 1 1 1 1 2 1
## 17 1 1 2 1 1 3 1 2 1 1 1 1
## 18 1 1 2 1 1 3 1 2 1 1 1 1
## 19 1 2 1 1 1 1 3 2 2 1 2 1
## 20 1 2 1 1 1 1 3 2 2 1 2 1
## 21 1 1 1 2 1 2 1 2 1 1 2 1
## 22 1 1 1 2 1 2 1 2 1 1 2 1
## 23 1 2 3 1 1 1 1 2 1 1 2 1
## 24 1 2 3 1 1 1 1 2 1 1 2 1
## 25 1 2 2 3 1 3 4 2 2 4 1 1
## 26 1 2 2 3 1 3 4 2 2 4 1 1
## 27 1 1 2 1 1 1 1 2 2 1 2 1
## 28 1 1 2 1 1 1 1 2 2 1 2 1
## 29 1 1 1 1 1 2 1 1 1 1 2 1
## 30 1 1 1 1 1 2 1 1 1 1 2 1
## 31 1 1 2 1 1 1 2 1 1 1 2 1
## 32 1 1 2 1 1 1 2 1 1 1 2 1
## 33 2 2 1 1 2 2 3 2 2 1 1 2
## 34 2 2 1 1 2 2 3 2 2 1 1 2
## 35 1 3 2 3 3 3 4 4 4 1 2 3
## 36 1 3 2 3 3 3 4 4 4 1 2 3
## 37 1 1 1 1 2 2 1 1 1 1 2 1
## 38 1 1 1 1 2 2 1 1 1 1 2 1
## 39 1 2 2 2 2 3 2 2 1 1 2 1
## 40 1 2 2 2 2 3 2 2 1 1 2 1
## 41 1 2 2 3 4 3 2 3 1 1 2 2
## 42 1 2 2 3 4 3 2 3 1 1 2 2
## 43 2 3 3 2 3 4 2 3 1 1 2 2
## 44 2 3 3 2 3 4 2 3 1 1 2 2
## 45 1 1 1 2 1 2 1 1 1 1 2 1
## 46 1 1 1 2 1 2 1 1 1 1 2 1
## BDI21 COVATT_1 COVATT_2 COVATT_3 COVATT_4 COVATT_5 COVCONSP_1 COVCONSP_2
## 1 2 2 5 2 1 4 1 1
## 2 2 2 5 2 1 4 1 1
## 3 1 5 4 3 2 4 1 1
## 4 1 5 4 3 2 4 1 1
## 5 1 2 3 2 2 5 2 1
## 6 1 2 3 2 2 5 2 1
## 7 2 1 6 1 1 4 1 1
## 8 2 1 6 1 1 4 1 1
## 9 1 1 1 1 1 6 1 4
## 10 1 1 1 1 1 6 1 4
## 11 1 1 3 3 1 4 1 5
## 12 1 1 3 3 1 4 1 5
## 13 1 2 3 1 1 4 2 2
## 14 1 2 3 1 1 4 2 2
## 15 1 1 3 1 1 6 1 1
## 16 1 1 3 1 1 6 1 1
## 17 1 1 2 1 1 6 1 2
## 18 1 1 2 1 1 6 1 2
## 19 1 4 1 3 2 3 1 2
## 20 1 4 1 3 2 3 1 2
## 21 1 3 3 1 3 4 1 3
## 22 1 3 3 1 3 4 1 3
## 23 1 6 1 2 1 5 1 1
## 24 1 6 1 2 1 5 1 1
## 25 1 6 6 1 1 6 1 2
## 26 1 6 6 1 1 6 1 2
## 27 3 1 4 1 1 6 1 1
## 28 3 1 4 1 1 6 1 1
## 29 1 1 5 1 1 6 1 1
## 30 1 1 5 1 1 6 1 1
## 31 1 1 5 2 2 5 4 2
## 32 1 1 5 2 2 5 4 2
## 33 2 2 3 2 3 6 1 4
## 34 2 2 3 2 3 6 1 4
## 35 2 1 5 1 1 6 2 2
## 36 2 1 5 1 1 6 2 2
## 37 1 1 5 1 1 4 1 2
## 38 1 1 5 1 1 4 1 2
## 39 1 6 6 2 1 6 3 5
## 40 1 6 6 2 1 6 3 5
## 41 2 1 3 1 1 6 1 1
## 42 2 1 3 1 1 6 1 1
## 43 3 1 4 2 1 5 2 1
## 44 3 1 4 2 1 5 2 1
## 45 1 5 3 3 2 3 2 4
## 46 1 5 3 3 2 3 2 4
## COVCONSP_3 COVCONSP_4 COVORIGIN_1 COVORIGIN_2 COVORIGIN_3 COVORIGIN_4
## 1 1 4 1 5 2 1
## 2 1 4 1 5 2 1
## 3 1 6 1 6 1 1
## 4 1 6 1 6 1 1
## 5 2 5 2 5 2 2
## 6 2 5 2 5 2 2
## 7 1 5 1 4 2 3
## 8 1 5 1 4 2 3
## 9 3 6 1 6 1 1
## 10 3 6 1 6 1 1
## 11 1 1 1 6 1 1
## 12 1 1 1 6 1 1
## 13 2 6 2 5 2 2
## 14 2 6 2 5 2 2
## 15 1 5 1 5 1 1
## 16 1 5 1 5 1 1
## 17 1 4 1 5 2 2
## 18 1 4 1 5 2 2
## 19 2 2 2 5 2 2
## 20 2 2 2 5 2 2
## 21 1 6 1 6 1 1
## 22 1 6 1 6 1 1
## 23 1 3 1 6 1 1
## 24 1 3 1 6 1 1
## 25 1 5 1 5 1 1
## 26 1 5 1 5 1 1
## 27 1 6 1 6 1 1
## 28 1 6 1 6 1 1
## 29 1 3 1 6 1 1
## 30 1 3 1 6 1 1
## 31 2 5 2 3 2 2
## 32 2 5 2 3 2 2
## 33 1 6 1 3 1 3
## 34 1 6 1 3 1 3
## 35 5 6 4 6 1 1
## 36 5 6 4 6 1 1
## 37 3 6 1 4 1 3
## 38 3 6 1 4 1 3
## 39 4 6 2 5 2 2
## 40 4 6 2 5 2 2
## 41 1 6 1 5 1 1
## 42 1 6 1 5 1 1
## 43 2 6 1 5 1 1
## 44 2 6 1 5 1 1
## 45 4 3 1 5 2 1
## 46 4 3 1 5 2 1
## COVPOLITICS_1 COVPOLITICS_2 COVPOLITICS_3 COVCOVERAGE_1 COVCOVERAGE_2
## 1 6 1 5 2 3
## 2 6 1 5 2 3
## 3 5 2 6 4 3
## 4 5 2 6 4 3
## 5 2 2 5 2 5
## 6 2 2 5 2 5
## 7 4 2 6 4 2
## 8 4 2 6 4 2
## 9 1 1 6 3 6
## 10 1 1 6 3 6
## 11 1 1 4 1 4
## 12 1 1 4 1 4
## 13 2 1 6 2 4
## 14 2 1 6 2 4
## 15 5 1 6 4 4
## 16 5 1 6 4 4
## 17 2 1 6 1 5
## 18 2 1 6 1 5
## 19 3 4 4 4 5
## 20 3 4 4 4 5
## 21 6 2 6 5 2
## 22 6 2 6 5 2
## 23 1 1 6 2 5
## 24 1 1 6 2 5
## 25 6 4 6 4 6
## 26 6 4 6 4 6
## 27 1 1 6 1 4
## 28 1 1 6 1 4
## 29 1 1 5 2 6
## 30 1 1 5 2 6
## 31 2 2 2 2 3
## 32 2 2 2 2 3
## 33 6 1 5 3 3
## 34 6 1 5 3 3
## 35 4 1 6 2 1
## 36 4 1 6 2 1
## 37 5 2 6 1 2
## 38 5 2 6 1 2
## 39 2 2 6 1 4
## 40 2 2 6 1 4
## 41 4 1 6 1 4
## 42 4 1 6 1 4
## 43 4 1 6 1 3
## 44 4 1 6 1 3
## 45 4 3 5 3 5
## 46 4 3 5 3 5
## COVCOVERAGE_3 COVANTIVACC_1 COVANTIVACC_2 COVANTIVACC_3 COVMEDSKEP_1
## 1 4 1 1 5 1
## 2 4 1 1 5 1
## 3 2 1 1 6 1
## 4 2 1 1 6 1
## 5 2 2 2 5 4
## 6 2 2 2 5 4
## 7 5 1 1 5 2
## 8 5 1 1 5 2
## 9 1 1 1 6 1
## 10 1 1 1 6 1
## 11 2 1 1 4 1
## 12 2 1 1 4 1
## 13 1 1 1 5 1
## 14 1 1 1 5 1
## 15 4 2 1 6 1
## 16 4 2 1 6 1
## 17 2 1 1 6 1
## 18 2 1 1 6 1
## 19 4 1 1 5 1
## 20 4 1 1 5 1
## 21 2 2 1 5 1
## 22 2 2 1 5 1
## 23 1 1 1 6 1
## 24 1 1 1 6 1
## 25 4 1 1 6 1
## 26 4 1 1 6 1
## 27 1 1 1 6 1
## 28 1 1 1 6 1
## 29 1 1 1 6 1
## 30 1 1 1 6 1
## 31 2 2 3 3 4
## 32 2 2 3 3 4
## 33 3 1 1 6 3
## 34 3 1 1 6 3
## 35 3 1 1 6 3
## 36 3 1 1 6 3
## 37 4 5 1 4 2
## 38 4 5 1 4 2
## 39 2 2 1 5 2
## 40 2 2 1 5 2
## 41 1 1 1 6 1
## 42 1 1 1 6 1
## 43 1 3 1 6 2
## 44 1 3 1 6 2
## 45 3 3 2 5 2
## 46 3 3 2 5 2
## COVMEDSKEP_2 COVMEDSKEP_3 COVMEDSKEP_4 CHECK1 CHECK1_DO_1 CHECK1_DO_2
## 1 1 6 5 1 3 4
## 2 1 6 5 1 3 4
## 3 1 6 6 1 1 3
## 4 1 6 6 1 1 3
## 5 2 3 3 1 4 2
## 6 2 3 3 1 4 2
## 7 2 5 5 1 1 4
## 8 2 5 5 1 1 4
## 9 3 6 6 1 4 1
## 10 3 6 6 1 4 1
## 11 1 5 4 1 3 5
## 12 1 5 4 1 3 5
## 13 1 6 6 1 2 3
## 14 1 6 6 1 2 3
## 15 1 6 6 1 3 1
## 16 1 6 6 1 3 1
## 17 1 5 5 1 1 4
## 18 1 5 5 1 1 4
## 19 1 6 6 1 2 3
## 20 1 6 6 1 2 3
## 21 1 6 6 1 1 2
## 22 1 6 6 1 1 2
## 23 1 6 6 1 1 3
## 24 1 6 6 1 1 3
## 25 1 6 6 1 2 1
## 26 1 6 6 1 2 1
## 27 1 6 6 1 5 2
## 28 1 6 6 1 5 2
## 29 1 6 6 1 2 4
## 30 1 6 6 1 2 4
## 31 3 2 4 1 2 5
## 32 3 2 4 1 2 5
## 33 2 3 4 1 1 4
## 34 2 3 4 1 1 4
## 35 1 4 6 1 2 1
## 36 1 4 6 1 2 1
## 37 1 5 5 1 4 5
## 38 1 5 5 1 4 5
## 39 2 5 5 1 3 1
## 40 2 5 5 1 3 1
## 41 1 6 6 1 2 1
## 42 1 6 6 1 2 1
## 43 1 5 5 1 4 5
## 44 1 5 5 1 4 5
## 45 2 6 5 1 4 2
## 46 2 6 5 1 4 2
## CHECK1_DO_3 CHECK1_DO_4 CHECK1_DO_5 CHECK2 CHECK2_DO_1 CHECK2_DO_2
## 1 5 1 2 1 4 3
## 2 5 1 2 1 4 3
## 3 4 2 5 1 1 3
## 4 4 2 5 1 1 3
## 5 1 5 3 1 4 1
## 6 1 5 3 1 4 1
## 7 2 5 3 1 4 1
## 8 2 5 3 1 4 1
## 9 5 3 2 1 4 2
## 10 5 3 2 1 4 2
## 11 4 1 2 1 3 1
## 12 4 1 2 1 3 1
## 13 4 5 1 1 1 2
## 14 4 5 1 1 1 2
## 15 4 2 5 1 1 4
## 16 4 2 5 1 1 4
## 17 5 3 2 1 4 2
## 18 5 3 2 1 4 2
## 19 5 1 4 1 1 4
## 20 5 1 4 1 1 4
## 21 3 4 5 1 4 3
## 22 3 4 5 1 4 3
## 23 4 2 5 1 3 1
## 24 4 2 5 1 3 1
## 25 3 4 5 1 2 1
## 26 3 4 5 1 2 1
## 27 4 1 3 1 1 3
## 28 4 1 3 1 1 3
## 29 1 5 3 1 4 1
## 30 1 5 3 1 4 1
## 31 4 3 1 1 3 2
## 32 4 3 1 1 3 2
## 33 2 5 3 1 3 2
## 34 2 5 3 1 3 2
## 35 5 3 4 1 4 3
## 36 5 3 4 1 4 3
## 37 1 3 2 1 3 4
## 38 1 3 2 1 3 4
## 39 2 5 4 1 3 1
## 40 2 5 4 1 3 1
## 41 5 3 4 1 4 1
## 42 5 3 4 1 4 1
## 43 1 3 2 1 1 2
## 44 1 3 2 1 1 2
## 45 1 3 5 1 4 2
## 46 1 3 5 1 4 2
## CHECK2_DO_3 CHECK2_DO_4 CHECK3 CHECK3_DO_1 CHECK3_DO_2 CHECK3_DO_3
## 1 1 2 1 4 3 5
## 2 1 2 1 4 3 5
## 3 2 4 1 3 4 5
## 4 2 4 1 3 4 5
## 5 2 3 1 3 2 1
## 6 2 3 1 3 2 1
## 7 2 3 1 5 2 4
## 8 2 3 1 5 2 4
## 9 1 3 1 5 1 3
## 10 1 3 1 5 1 3
## 11 2 4 1 5 1 3
## 12 2 4 1 5 1 3
## 13 3 4 1 4 1 2
## 14 3 4 1 4 1 2
## 15 3 2 1 4 1 2
## 16 3 2 1 4 1 2
## 17 1 3 1 1 5 4
## 18 1 3 1 1 5 4
## 19 2 3 1 4 2 5
## 20 2 3 1 4 2 5
## 21 2 1 1 5 2 4
## 22 2 1 1 5 2 4
## 23 2 4 1 2 5 4
## 24 2 4 1 2 5 4
## 25 3 4 1 3 4 2
## 26 3 4 1 3 4 2
## 27 4 2 1 5 3 1
## 28 4 2 1 5 3 1
## 29 2 3 1 1 4 2
## 30 2 3 1 1 4 2
## 31 1 4 1 2 3 5
## 32 1 4 1 2 3 5
## 33 1 4 1 2 3 1
## 34 1 4 1 2 3 1
## 35 1 2 1 5 2 3
## 36 1 2 1 5 2 3
## 37 2 1 1 4 3 2
## 38 2 1 1 4 3 2
## 39 2 4 1 5 4 2
## 40 2 4 1 5 4 2
## 41 3 2 1 3 4 5
## 42 3 2 1 3 4 5
## 43 4 3 1 5 1 2
## 44 4 3 1 5 1 2
## 45 1 3 1 1 5 2
## 46 1 3 1 1 5 2
## CHECK3_DO_4 CHECK3_DO_5
## 1 1 2
## 2 1 2
## 3 1 2
## 4 1 2
## 5 4 5
## 6 4 5
## 7 1 3
## 8 1 3
## 9 2 4
## 10 2 4
## 11 2 4
## 12 2 4
## 13 3 5
## 14 3 5
## 15 5 3
## 16 5 3
## 17 2 3
## 18 2 3
## 19 1 3
## 20 1 3
## 21 1 3
## 22 1 3
## 23 1 3
## 24 1 3
## 25 5 1
## 26 5 1
## 27 4 2
## 28 4 2
## 29 3 5
## 30 3 5
## 31 1 4
## 32 1 4
## 33 4 5
## 34 4 5
## 35 1 4
## 36 1 4
## 37 5 1
## 38 5 1
## 39 3 1
## 40 3 1
## 41 1 2
## 42 1 2
## 43 4 3
## 44 4 3
## 45 3 4
## 46 3 4
## DEB1
## 1 Moral sense of people's actions in the public in terms of covid
## 2 Moral sense of people's actions in the public in terms of covid
## 3 -99
## 4 -99
## 5 My moral view on people's behavior during the COVID-19
## 6 My moral view on people's behavior during the COVID-19
## 7 my perception of how safe people are being when they go outside
## 8 my perception of how safe people are being when they go outside
## 9 I think this study was about personality/emotion and how different people's perceptions of morals differ in regards to Covid-19. The scenarios suggested that different people might view the shopping scenarios as morally incorrect because of COVID-19 whereas normally without COVID 19 people would not find this morally incorrect at all.
## 10 I think this study was about personality/emotion and how different people's perceptions of morals differ in regards to Covid-19. The scenarios suggested that different people might view the shopping scenarios as morally incorrect because of COVID-19 whereas normally without COVID 19 people would not find this morally incorrect at all.
## 11 different views about covid 19
## 12 different views about covid 19
## 13 How the perceived ethnicity of a person changed how one sees the morality of their actions
## 14 How the perceived ethnicity of a person changed how one sees the morality of their actions
## 15 How does the common american view the coronavirus? Do they think the virus is really that big of a deal, or do they think it has been blown out of proportion? Does the common american think the virus is easily transmissible, and does age play a factor in transmission?
## 16 How does the common american view the coronavirus? Do they think the virus is really that big of a deal, or do they think it has been blown out of proportion? Does the common american think the virus is easily transmissible, and does age play a factor in transmission?
## 17 personality traits and reactions on situations
## 18 personality traits and reactions on situations
## 19 Personality and morals
## 20 Personality and morals
## 21 No idea
## 22 No idea
## 23 I think this study is about how COVID-19 changed how people view the world.
## 24 I think this study is about how COVID-19 changed how people view the world.
## 25 Opinions on how others are behaving during Corona, as well as questions about how I perceive myself.
## 26 Opinions on how others are behaving during Corona, as well as questions about how I perceive myself.
## 27 People's perception of race and covid-19 related problems
## 28 People's perception of race and covid-19 related problems
## 29 How people perceive Covid-19 Actions and why
## 30 How people perceive Covid-19 Actions and why
## 31 how we react to people and what we think our morals are
## 32 how we react to people and what we think our morals are
## 33 Morality and societal judgement during the time of COVID.
## 34 Morality and societal judgement during the time of COVID.
## 35 Rating knowledge of coronavirus and assessing community response to it
## 36 Rating knowledge of coronavirus and assessing community response to it
## 37
## 38
## 39 I think this study aimed to investigate how people view going out and what actions they believe are morally wrong based on their character.
## 40 I think this study aimed to investigate how people view going out and what actions they believe are morally wrong based on their character.
## 41 Perceptions and beliefs about coronavirus and the current pandemic situation
## 42 Perceptions and beliefs about coronavirus and the current pandemic situation
## 43 The perception of people going outside for essential/non-essential items.
## 44 The perception of people going outside for essential/non-essential items.
## 45 Covid 19
## 46 Covid 19
## DEB2_1 DEB2_2 DEB2_3 DEB2_4 DEB2_5 DEB2_6 DEB2_7 DEB2_8 DEB2_9 DEB2_10
## 1 0 0 0 0 0 1 0 1 1 1
## 2 0 0 0 0 0 1 0 1 1 1
## 3 1 0 1 1 1 0 0 0 1 1
## 4 1 0 1 1 1 0 0 0 1 1
## 5 1 0 1 0 0 0 0 0 1 0
## 6 1 0 1 0 0 0 0 0 1 0
## 7 1 0 0 0 0 0 1 1 0 1
## 8 1 0 0 0 0 0 1 1 0 1
## 9 1 0 0 0 1 0 0 0 1 0
## 10 1 0 0 0 1 0 0 0 1 0
## 11 0 0 0 0 1 1 0 1 0 0
## 12 0 0 0 0 1 1 0 1 0 0
## 13 1 0 0 0 1 0 0 1 1 0
## 14 1 0 0 0 1 0 0 1 1 0
## 15 1 0 1 1 1 1 0 1 1 1
## 16 1 0 1 1 1 1 0 1 1 1
## 17 1 0 1 0 0 0 0 0 1 0
## 18 1 0 1 0 0 0 0 0 1 0
## 19 1 1 0 0 0 0 0 1 1 1
## 20 1 1 0 0 0 0 0 1 1 1
## 21 1 0 1 0 1 0 0 0 1 1
## 22 1 0 1 0 1 0 0 0 1 1
## 23 1 0 1 1 1 1 0 1 1 1
## 24 1 0 1 1 1 1 0 1 1 1
## 25 1 0 1 1 1 0 0 1 1 1
## 26 1 0 1 1 1 0 0 1 1 1
## 27 0 0 0 0 1 0 0 0 0 0
## 28 0 0 0 0 1 0 0 0 0 0
## 29 1 0 0 0 0 0 0 0 1 1
## 30 1 0 0 0 0 0 0 0 1 1
## 31 0 0 1 1 0 1 0 0 0 0
## 32 0 0 1 1 0 1 0 0 0 0
## 33 1 0 1 0 1 1 0 0 0 0
## 34 1 0 1 0 1 1 0 0 0 0
## 35 1 1 1 0 1 0 0 1 1 1
## 36 1 1 1 0 1 0 0 1 1 1
## 37 1 0 0 0 1 0 0 0 0 1
## 38 1 0 0 0 1 0 0 0 0 1
## 39 1 0 0 0 1 1 0 0 1 0
## 40 1 0 0 0 1 1 0 0 1 0
## 41 1 0 0 0 1 1 1 0 1 1
## 42 1 0 0 0 1 1 1 0 1 1
## 43 1 0 0 0 0 0 0 1 1 0
## 44 1 0 0 0 0 0 0 1 1 0
## 45 1 1 1 1 1 1 0 1 1 1
## 46 1 1 1 1 1 1 0 1 1 1
## DEB2_11 DEB2_12 DEB2_12_TEXT DEB2_DO_1 DEB2_DO_2 DEB2_DO_3 DEB2_DO_4
## 1 0 0 -99 5 4 2 6
## 2 0 0 -99 5 4 2 6
## 3 1 0 -99 4 9 11 7
## 4 1 0 -99 4 9 11 7
## 5 0 0 -99 6 9 2 7
## 6 0 0 -99 6 9 2 7
## 7 0 0 -99 8 2 11 12
## 8 0 0 -99 8 2 11 12
## 9 1 0 -99 7 1 12 9
## 10 1 0 -99 7 1 12 9
## 11 0 0 -99 2 4 10 3
## 12 0 0 -99 2 4 10 3
## 13 0 0 -99 1 5 6 7
## 14 0 0 -99 1 5 6 7
## 15 0 0 -99 1 10 8 9
## 16 0 0 -99 1 10 8 9
## 17 1 0 -99 1 10 4 9
## 18 1 0 -99 1 10 4 9
## 19 1 0 -99 1 6 8 2
## 20 1 0 -99 1 6 8 2
## 21 1 0 -99 11 2 7 3
## 22 1 0 -99 11 2 7 3
## 23 1 0 -99 12 5 3 7
## 24 1 0 -99 12 5 3 7
## 25 1 0 -99 9 10 5 4
## 26 1 0 -99 9 10 5 4
## 27 0 0 -99 1 12 6 9
## 28 0 0 -99 1 12 6 9
## 29 0 0 -99 9 5 4 3
## 30 0 0 -99 9 5 4 3
## 31 0 0 -99 8 3 11 6
## 32 0 0 -99 8 3 11 6
## 33 1 0 -99 5 11 9 4
## 34 1 0 -99 5 11 9 4
## 35 1 0 -99 9 7 8 1
## 36 1 0 -99 9 7 8 1
## 37 0 0 -99 1 10 5 7
## 38 0 0 -99 1 10 5 7
## 39 1 0 -99 1 10 12 6
## 40 1 0 -99 1 10 12 6
## 41 1 0 -99 1 12 7 11
## 42 1 0 -99 1 12 7 11
## 43 1 0 -99 12 1 10 7
## 44 1 0 -99 12 1 10 7
## 45 1 0 -99 10 4 9 11
## 46 1 0 -99 10 4 9 11
## DEB2_DO_5 DEB2_DO_6 DEB2_DO_7 DEB2_DO_8 DEB2_DO_9 DEB2_DO_10 DEB2_DO_11
## 1 1 11 3 7 10 8 9
## 2 1 11 3 7 10 8 9
## 3 6 12 3 2 10 5 8
## 4 6 12 3 2 10 5 8
## 5 12 1 5 10 11 4 3
## 6 12 1 5 10 11 4 3
## 7 1 6 4 9 5 7 3
## 8 1 6 4 9 5 7 3
## 9 4 11 6 3 10 2 5
## 10 4 11 6 3 10 2 5
## 11 7 9 12 1 11 5 6
## 12 7 9 12 1 11 5 6
## 13 4 11 9 10 3 2 12
## 14 4 11 9 10 3 2 12
## 15 3 4 5 7 12 11 6
## 16 3 4 5 7 12 11 6
## 17 8 2 3 11 12 7 5
## 18 8 2 3 11 12 7 5
## 19 4 5 10 9 12 7 11
## 20 4 5 10 9 12 7 11
## 21 12 10 8 5 9 6 1
## 22 12 10 8 5 9 6 1
## 23 2 1 9 6 4 11 8
## 24 2 1 9 6 4 11 8
## 25 6 7 11 1 3 2 8
## 26 6 7 11 1 3 2 8
## 27 10 8 4 5 11 2 7
## 28 10 8 4 5 11 2 7
## 29 7 12 10 2 1 11 8
## 30 7 12 10 2 1 11 8
## 31 4 10 9 12 5 2 7
## 32 4 10 9 12 5 2 7
## 33 7 1 6 3 12 10 8
## 34 7 1 6 3 12 10 8
## 35 6 10 3 4 11 12 2
## 36 6 10 3 4 11 12 2
## 37 4 3 6 11 8 12 9
## 38 4 3 6 11 8 12 9
## 39 4 3 5 11 7 8 9
## 40 4 3 5 11 7 8 9
## 41 4 6 3 8 10 5 2
## 42 4 6 3 8 10 5 2
## 43 5 11 2 3 8 9 4
## 44 5 11 2 3 8 9 4
## 45 6 12 2 1 3 5 7
## 46 6 12 2 1 3 5 7
## DEB2_DO_12 DEB3_1 DEB3_2 DEB3_3 DEB3_4 DEB3_5 DEB3_6 DEB3_7 DEB3_8 DEB3_9
## 1 12 NA NA NA NA NA 3 NA 2 1
## 2 12 NA NA NA NA NA 3 NA 2 1
## 3 1 1 NA 6 7 3 NA NA NA 5
## 4 1 1 NA 6 7 3 NA NA NA 5
## 5 8 1 NA 3 NA NA NA NA NA 2
## 6 8 1 NA 3 NA NA NA NA NA 2
## 7 10 3 NA NA NA NA NA 2 4 NA
## 8 10 3 NA NA NA NA NA 2 4 NA
## 9 8 2 NA NA NA 4 NA NA NA 1
## 10 8 2 NA NA NA 4 NA NA NA 1
## 11 8 NA NA NA NA 1 3 NA 2 NA
## 12 8 NA NA NA NA 1 3 NA 2 NA
## 13 8 3 NA NA NA 1 NA NA 4 2
## 14 8 3 NA NA NA 1 NA NA 4 2
## 15 2 1 NA 8 4 6 5 NA 7 3
## 16 2 1 NA 8 4 6 5 NA 7 3
## 17 6 3 NA 4 NA NA NA NA NA 2
## 18 6 3 NA 4 NA NA NA NA NA 2
## 19 3 4 6 NA NA NA NA NA 3 1
## 20 3 4 6 NA NA NA NA NA 3 1
## 21 4 3 NA 2 NA 1 NA NA NA 6
## 22 4 3 NA 2 NA 1 NA NA NA 6
## 23 10 1 NA 5 4 2 3 NA 7 6
## 24 10 1 NA 5 4 2 3 NA 7 6
## 25 12 1 NA 7 4 2 NA NA 6 5
## 26 12 1 NA 7 4 2 NA NA 6 5
## 27 3 NA NA NA NA -99 NA NA NA NA
## 28 3 NA NA NA NA -99 NA NA NA NA
## 29 6 1 NA NA NA NA NA NA NA 3
## 30 6 1 NA NA NA NA NA NA NA 3
## 31 1 NA NA -99 -99 NA -99 NA NA NA
## 32 1 NA NA -99 -99 NA -99 NA NA NA
## 33 2 1 NA 2 NA 5 4 NA NA NA
## 34 2 1 NA 2 NA 5 4 NA NA NA
## 35 5 4 3 2 NA 5 NA NA 8 6
## 36 5 4 3 2 NA 5 NA NA 8 6
## 37 2 -99 NA NA NA -99 NA NA NA NA
## 38 2 -99 NA NA NA -99 NA NA NA NA
## 39 2 1 NA NA NA 5 3 NA NA 2
## 40 2 1 NA NA NA 5 3 NA NA 2
## 41 9 1 NA NA NA 6 4 7 NA 3
## 42 9 1 NA NA NA 6 4 7 NA 3
## 43 6 3 NA NA NA NA NA NA 4 1
## 44 6 3 NA NA NA NA NA NA 4 1
## 45 8 1 7 8 9 10 6 NA 5 4
## 46 8 1 7 8 9 10 6 NA 5 4
## DEB3_10 DEB3_11 DEB3_12 DEB3_12_TEXT
## 1 4 NA NA
## 2 4 NA NA
## 3 2 4 NA
## 4 2 4 NA
## 5 NA NA NA
## 6 NA NA NA
## 7 1 NA NA
## 8 1 NA NA
## 9 NA 3 NA
## 10 NA 3 NA
## 11 NA NA NA
## 12 NA NA NA
## 13 NA NA NA
## 14 NA NA NA
## 15 2 NA NA
## 16 2 NA NA
## 17 NA 1 NA
## 18 NA 1 NA
## 19 5 2 NA
## 20 5 2 NA
## 21 4 5 NA
## 22 4 5 NA
## 23 8 9 NA
## 24 8 9 NA
## 25 3 8 NA
## 26 3 8 NA
## 27 NA NA NA
## 28 NA NA NA
## 29 2 NA NA
## 30 2 NA NA
## 31 NA NA NA
## 32 NA NA NA
## 33 NA 3 NA
## 34 NA 3 NA
## 35 1 7 NA
## 36 1 7 NA
## 37 -99 NA NA
## 38 -99 NA NA
## 39 NA 4 NA
## 40 NA 4 NA
## 41 2 5 NA
## 42 2 5 NA
## 43 NA 2 NA
## 44 NA 2 NA
## 45 3 2 NA
## 46 3 2 NA
## DEB4
## 1 -99
## 2 -99
## 3 -99
## 4 -99
## 5 -99
## 6 -99
## 7 -99
## 8 -99
## 9 The scenarios are very interesting and I look forward to doing more studies or learning of the results.
## 10 The scenarios are very interesting and I look forward to doing more studies or learning of the results.
## 11 -99
## 12 -99
## 13 -99
## 14 -99
## 15 -99
## 16 -99
## 17 -99
## 18 -99
## 19 -99
## 20 -99
## 21 None
## 22 None
## 23 -99
## 24 -99
## 25 Great experience.
## 26 Great experience.
## 27 -99
## 28 -99
## 29 -99
## 30 -99
## 31 nice survey
## 32 nice survey
## 33 -99
## 34 -99
## 35 -99
## 36 -99
## 37
## 38
## 39 -99
## 40 -99
## 41 -99
## 42 -99
## 43 -99
## 44 -99
## 45 -99
## 46 -99
## Q_BallotBoxStuffing Q_RelevantIDDuplicate Q_RelevantIDDuplicateScore
## 1 NA NA NA
## 2 NA NA NA
## 3 NA NA NA
## 4 NA NA NA
## 5 NA NA NA
## 6 NA NA NA
## 7 NA NA NA
## 8 NA NA NA
## 9 NA NA NA
## 10 NA NA NA
## 11 NA NA NA
## 12 NA NA NA
## 13 NA NA NA
## 14 NA NA NA
## 15 NA NA NA
## 16 NA NA NA
## 17 NA NA NA
## 18 NA NA NA
## 19 NA NA NA
## 20 NA NA NA
## 21 NA NA NA
## 22 NA NA NA
## 23 NA NA NA
## 24 NA NA NA
## 25 NA NA NA
## 26 NA NA NA
## 27 NA NA NA
## 28 NA NA NA
## 29 NA NA NA
## 30 NA NA NA
## 31 NA NA NA
## 32 NA NA NA
## 33 NA NA NA
## 34 NA NA NA
## 35 NA NA NA
## 36 NA NA NA
## 37 NA NA NA
## 38 NA NA NA
## 39 NA NA NA
## 40 NA NA NA
## 41 NA NA NA
## 42 NA NA NA
## 43 NA NA NA
## 44 NA NA NA
## 45 NA NA NA
## 46 NA NA NA
## Q_RelevantIDFraudScore PROLIFIC_PID V_EthnicityOrder.x V1_Age.x
## 1 NA 58e68cb97a5a2e00019f3a72 2 41
## 2 NA 58e68cb97a5a2e00019f3a72 2 41
## 3 NA 5ec08db7e8622c49c753f34e 4 44
## 4 NA 5ec08db7e8622c49c753f34e 4 44
## 5 NA 5ded4bab1edb794081b3378e 1 44
## 6 NA 5ded4bab1edb794081b3378e 1 44
## 7 NA 5dd9d8c07af66197bd21b910 2 49
## 8 NA 5dd9d8c07af66197bd21b910 2 49
## 9 NA 5ec85e84b11a173447d76ecd 4 41
## 10 NA 5ec85e84b11a173447d76ecd 4 41
## 11 NA 5ed67cbe121a540bac7cad09 4 49
## 12 NA 5ed67cbe121a540bac7cad09 4 49
## 13 NA 5ae15492eb6040000153ca53 1 32
## 14 NA 5ae15492eb6040000153ca53 1 32
## 15 NA 5ed91329121d6e0a30cfdc14 1 46
## 16 NA 5ed91329121d6e0a30cfdc14 1 46
## 17 NA 5e794f94cd742b5121734d4c 3 36
## 18 NA 5e794f94cd742b5121734d4c 3 36
## 19 NA 5e91350e16b81046df5dcf52 3 32
## 20 NA 5e91350e16b81046df5dcf52 3 32
## 21 NA 5e7382f938f24403681defcf 1 36
## 22 NA 5e7382f938f24403681defcf 1 36
## 23 NA 5e527156e1cbcd271e5444ee 4 45
## 24 NA 5e527156e1cbcd271e5444ee 4 45
## 25 NA 5ece39fa54acea1c404409ab 1 41
## 26 NA 5ece39fa54acea1c404409ab 1 41
## 27 NA 5ce4172f5ffd39001a61bb95 3 42
## 28 NA 5ce4172f5ffd39001a61bb95 3 42
## 29 NA 5d5ecd0a97f8b6001aee95ab 4 35
## 30 NA 5d5ecd0a97f8b6001aee95ab 4 35
## 31 NA 5e8e8f9c7bdc2e155159a4b5 3 48
## 32 NA 5e8e8f9c7bdc2e155159a4b5 3 48
## 33 NA 5e42d1503711310179bb6ba2 1 46
## 34 NA 5e42d1503711310179bb6ba2 1 46
## 35 NA 5bcfd5c90f10750001d8860e 4 40
## 36 NA 5bcfd5c90f10750001d8860e 4 40
## 37 NA 5c92cbb87a7067000190b8e6 3 40
## 38 NA 5c92cbb87a7067000190b8e6 3 40
## 39 NA 5e9c1b040ea62712948bb1fd 4 39
## 40 NA 5e9c1b040ea62712948bb1fd 4 39
## 41 NA 5ebccf55e32fec1243355046 2 32
## 42 NA 5ebccf55e32fec1243355046 2 32
## 43 NA 5e8ec73efa10f000090fcc1c 1 31
## 44 NA 5e8ec73efa10f000090fcc1c 1 31
## 45 NA 5ebc4d1ecf44f0076a398cd5 3 42
## 46 NA 5ebc4d1ecf44f0076a398cd5 3 42
## V2_Age.x V3_Age.x V4_Age.x V1_Location.x V2_Location.x
## 1 46 34 46 nearby in the city
## 2 46 34 46 nearby in the city
## 3 36 32 48 nearby nearby
## 4 36 32 48 nearby nearby
## 5 41 44 42 in the city in the city
## 6 41 44 42 in the city in the city
## 7 33 36 33 in another part of town nearby
## 8 33 36 33 in another part of town nearby
## 9 45 47 47 nearby nearby
## 10 45 47 47 nearby nearby
## 11 46 46 46 nearby in another part of town
## 12 46 46 46 nearby in another part of town
## 13 41 39 44 nearby in the city
## 14 41 39 44 nearby in the city
## 15 43 35 48 nearby in another part of town
## 16 43 35 48 nearby in another part of town
## 17 46 49 46 nearby in the city
## 18 46 49 46 nearby in the city
## 19 40 36 48 in the city nearby
## 20 40 36 48 in the city nearby
## 21 40 43 40 in another part of town in the city
## 22 40 43 40 in another part of town in the city
## 23 47 41 48 nearby nearby
## 24 47 41 48 nearby nearby
## 25 45 35 32 in another part of town in the city
## 26 45 35 32 in another part of town in the city
## 27 44 40 46 in another part of town in another part of town
## 28 44 40 46 in another part of town in another part of town
## 29 42 46 34 in another part of town in the city
## 30 42 46 34 in another part of town in the city
## 31 36 42 46 in the city nearby
## 32 36 42 46 in the city nearby
## 33 48 48 47 in the city nearby
## 34 48 48 47 in the city nearby
## 35 49 36 36 nearby in another part of town
## 36 49 36 36 nearby in another part of town
## 37 46 32 31 in the city in the city
## 38 46 32 31 in the city in the city
## 39 45 36 44 in another part of town in the city
## 40 45 36 44 in another part of town in the city
## 41 40 42 36 in the city in the city
## 42 40 42 36 in the city in the city
## 43 46 44 37 nearby in another part of town
## 44 46 44 37 nearby in another part of town
## 45 35 35 31 nearby in the city
## 46 35 35 31 nearby in the city
## V3_Location.x V4_Location.x V1_StoreType.x
## 1 in another part of town in another part of town supermarket
## 2 in another part of town in another part of town supermarket
## 3 in another part of town in another part of town supermarket
## 4 in another part of town in another part of town supermarket
## 5 in the city in the city supermarket
## 6 in the city in the city supermarket
## 7 nearby in another part of town supermarket
## 8 nearby in another part of town supermarket
## 9 in another part of town in another part of town convenience store
## 10 in another part of town in another part of town convenience store
## 11 in another part of town in the city convenience store
## 12 in another part of town in the city convenience store
## 13 in the city in the city department store
## 14 in the city in the city department store
## 15 in another part of town in the city supermarket
## 16 in another part of town in the city supermarket
## 17 in another part of town in the city department store
## 18 in another part of town in the city department store
## 19 in the city nearby department store
## 20 in the city nearby department store
## 21 in the city in the city supermarket
## 22 in the city in the city supermarket
## 23 nearby in the city department store
## 24 nearby in the city department store
## 25 in the city in the city department store
## 26 in the city in the city department store
## 27 in the city in another part of town department store
## 28 in the city in another part of town department store
## 29 in the city in the city convenience store
## 30 in the city in the city convenience store
## 31 nearby in another part of town supermarket
## 32 nearby in another part of town supermarket
## 33 nearby in another part of town supermarket
## 34 nearby in another part of town supermarket
## 35 in another part of town in the city supermarket
## 36 in another part of town in the city supermarket
## 37 in the city in the city department store
## 38 in the city in the city department store
## 39 in another part of town in another part of town department store
## 40 in another part of town in another part of town department store
## 41 in another part of town nearby department store
## 42 in another part of town nearby department store
## 43 in another part of town nearby department store
## 44 in another part of town nearby department store
## 45 in another part of town in the city department store
## 46 in another part of town in the city department store
## V2_StoreType.x V3_StoreType.x V4_StoreType.x V1_Name.x V2_Name.x
## 1 department store department store convenience store Melva Peng
## 2 department store department store convenience store Melva Peng
## 3 department store convenience store convenience store James Kandiah
## 4 department store convenience store convenience store James Kandiah
## 5 convenience store supermarket department store Qun Melva
## 6 convenience store supermarket department store Qun Melva
## 7 convenience store department store supermarket Jacinta Chao
## 8 convenience store department store supermarket Jacinta Chao
## 9 convenience store department store department store Carey Vidya
## 10 convenience store department store department store Carey Vidya
## 11 department store supermarket department store Alex Jaswant
## 12 department store supermarket department store Alex Jaswant
## 13 supermarket convenience store supermarket Xiao-Ping Jarvis
## 14 supermarket convenience store supermarket Xiao-Ping Jarvis
## 15 supermarket supermarket supermarket Xuan Latoya
## 16 supermarket supermarket supermarket Xuan Latoya
## 17 supermarket convenience store department store Jyoti Shawn
## 18 supermarket convenience store department store Jyoti Shawn
## 19 department store convenience store department store Shashi Carey
## 20 department store convenience store department store Shashi Carey
## 21 department store supermarket convenience store Yan Lakisha
## 22 department store supermarket convenience store Yan Lakisha
## 23 convenience store convenience store supermarket Connie Ravinder
## 24 convenience store convenience store supermarket Connie Ravinder
## 25 department store supermarket department store Xia Wilbert
## 26 department store supermarket department store Xia Wilbert
## 27 supermarket department store supermarket Ashwani Terry
## 28 supermarket department store supermarket Ashwani Terry
## 29 supermarket department store supermarket Michelle Krishna
## 30 supermarket department store supermarket Michelle Krishna
## 31 department store department store convenience store Rasiah Shannon
## 32 department store department store convenience store Rasiah Shannon
## 33 supermarket supermarket department store Xiao-Dong Shelton
## 34 supermarket supermarket department store Xiao-Dong Shelton
## 35 convenience store supermarket department store Courtney Shakti
## 36 convenience store supermarket department store Courtney Shakti
## 37 supermarket supermarket supermarket Parimal John
## 38 supermarket supermarket supermarket Parimal John
## 39 department store department store convenience store Timothy Jaswinder
## 40 department store department store convenience store Timothy Jaswinder
## 41 supermarket supermarket convenience store Earline Kun
## 42 supermarket supermarket convenience store Earline Kun
## 43 convenience store convenience store convenience store Jian-Guo Kenya
## 44 convenience store convenience store convenience store Jian-Guo Kenya
## 45 department store supermarket supermarket Asha Pamela
## 46 department store supermarket supermarket Asha Pamela
## V3_Name.x V4_Name.x
## 1 Billy Arun
## 2 Billy Arun
## 3 Hattie Zhi
## 4 Hattie Zhi
## 5 Sangeeta Richard
## 6 Sangeeta Richard
## 7 Willie Dhian
## 8 Willie Dhian
## 9 Latonya Gang
## 10 Latonya Gang
## 11 Bessie Xi
## 12 Bessie Xi
## 13 Gunjan Stephanie
## 14 Gunjan Stephanie
## 15 Seema Nancy
## 16 Seema Nancy
## 17 Chao Jermaine
## 18 Chao Jermaine
## 19 Qing Errol
## 20 Qing Errol
## 21 Seema Kelly
## 22 Seema Kelly
## 23 Earnestine Feng
## 24 Earnestine Feng
## 25 Jyoti Rene
## 26 Jyoti Rene
## 27 Jiang Sammie
## 28 Jiang Sammie
## 29 Felecia Chen
## 30 Felecia Chen
## 31 Yin Anderson
## 32 Yin Anderson
## 33 Vandana Stephanie
## 34 Vandana Stephanie
## 35 Amina Xiang
## 36 Amina Xiang
## 37 Yuan Mae
## 38 Yuan Mae
## 39 Alonzo Xin
## 40 Alonzo Xin
## 41 Billy Usha
## 42 Billy Usha
## 43 Anju Sandra
## 44 Anju Sandra
## 45 Fei Shelton
## 46 Fei Shelton
## V1_Framing.x
## 1 They explain to you that they are buying a large amount of
## 2 They explain to you that they are buying a large amount of
## 3 Anticipating your reaction, they explain that they are buying a large amount of
## 4 Anticipating your reaction, they explain that they are buying a large amount of
## 5 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 6 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 7 Anticipating your reaction, they explain that they are buying a large amount of
## 8 Anticipating your reaction, they explain that they are buying a large amount of
## 9 Anticipating your reaction, they explain that they are buying a large amount of
## 10 Anticipating your reaction, they explain that they are buying a large amount of
## 11 They explain to you that they are buying a large amount of
## 12 They explain to you that they are buying a large amount of
## 13 They wave to you and say that they are buying a large amount of
## 14 They wave to you and say that they are buying a large amount of
## 15 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 16 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 17 They explain to you that they are buying a large amount of
## 18 They explain to you that they are buying a large amount of
## 19 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 20 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 21 They explain to you that they are buying a large amount of
## 22 They explain to you that they are buying a large amount of
## 23 Anticipating your reaction, they explain that they are buying a large amount of
## 24 Anticipating your reaction, they explain that they are buying a large amount of
## 25 Anticipating your reaction, they explain that they are buying a large amount of
## 26 Anticipating your reaction, they explain that they are buying a large amount of
## 27 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 28 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 29 They wave to you and say that they are buying a large amount of
## 30 They wave to you and say that they are buying a large amount of
## 31 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 32 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 33 They wave to you and say that they are buying a large amount of
## 34 They wave to you and say that they are buying a large amount of
## 35 They explain to you that they are buying a large amount of
## 36 They explain to you that they are buying a large amount of
## 37 They wave to you and say that they are buying a large amount of
## 38 They wave to you and say that they are buying a large amount of
## 39 They wave to you and say that they are buying a large amount of
## 40 They wave to you and say that they are buying a large amount of
## 41 They explain to you that they are buying a large amount of
## 42 They explain to you that they are buying a large amount of
## 43 They explain to you that they are buying a large amount of
## 44 They explain to you that they are buying a large amount of
## 45 They wave to you and say that they are buying a large amount of
## 46 They wave to you and say that they are buying a large amount of
## V2_Framing.x
## 1 They wave to you and say that they are buying a large amount of
## 2 They wave to you and say that they are buying a large amount of
## 3 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 4 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 5 They explain to you that they are buying a large amount of
## 6 They explain to you that they are buying a large amount of
## 7 Anticipating your reaction, they explain that they are buying a large amount of
## 8 Anticipating your reaction, they explain that they are buying a large amount of
## 9 Anticipating your reaction, they explain that they are buying a large amount of
## 10 Anticipating your reaction, they explain that they are buying a large amount of
## 11 Anticipating your reaction, they explain that they are buying a large amount of
## 12 Anticipating your reaction, they explain that they are buying a large amount of
## 13 They explain to you that they are buying a large amount of
## 14 They explain to you that they are buying a large amount of
## 15 They explain to you that they are buying a large amount of
## 16 They explain to you that they are buying a large amount of
## 17 They explain to you that they are buying a large amount of
## 18 They explain to you that they are buying a large amount of
## 19 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 20 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 21 They explain to you that they are buying a large amount of
## 22 They explain to you that they are buying a large amount of
## 23 They wave to you and say that they are buying a large amount of
## 24 They wave to you and say that they are buying a large amount of
## 25 They explain to you that they are buying a large amount of
## 26 They explain to you that they are buying a large amount of
## 27 They wave to you and say that they are buying a large amount of
## 28 They wave to you and say that they are buying a large amount of
## 29 They wave to you and say that they are buying a large amount of
## 30 They wave to you and say that they are buying a large amount of
## 31 They explain to you that they are buying a large amount of
## 32 They explain to you that they are buying a large amount of
## 33 They wave to you and say that they are buying a large amount of
## 34 They wave to you and say that they are buying a large amount of
## 35 Anticipating your reaction, they explain that they are buying a large amount of
## 36 Anticipating your reaction, they explain that they are buying a large amount of
## 37 They explain to you that they are buying a large amount of
## 38 They explain to you that they are buying a large amount of
## 39 Anticipating your reaction, they explain that they are buying a large amount of
## 40 Anticipating your reaction, they explain that they are buying a large amount of
## 41 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 42 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 43 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 44 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 45 They explain to you that they are buying a large amount of
## 46 They explain to you that they are buying a large amount of
## V3_Framing.x
## 1 Anticipating your reaction, they explain that they are buying a large amount of
## 2 Anticipating your reaction, they explain that they are buying a large amount of
## 3 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 4 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 5 Anticipating your reaction, they explain that they are buying a large amount of
## 6 Anticipating your reaction, they explain that they are buying a large amount of
## 7 They explain to you that they are buying a large amount of
## 8 They explain to you that they are buying a large amount of
## 9 Anticipating your reaction, they explain that they are buying a large amount of
## 10 Anticipating your reaction, they explain that they are buying a large amount of
## 11 They wave to you and say that they are buying a large amount of
## 12 They wave to you and say that they are buying a large amount of
## 13 They explain to you that they are buying a large amount of
## 14 They explain to you that they are buying a large amount of
## 15 They explain to you that they are buying a large amount of
## 16 They explain to you that they are buying a large amount of
## 17 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 18 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 19 They explain to you that they are buying a large amount of
## 20 They explain to you that they are buying a large amount of
## 21 They explain to you that they are buying a large amount of
## 22 They explain to you that they are buying a large amount of
## 23 They explain to you that they are buying a large amount of
## 24 They explain to you that they are buying a large amount of
## 25 Anticipating your reaction, they explain that they are buying a large amount of
## 26 Anticipating your reaction, they explain that they are buying a large amount of
## 27 Anticipating your reaction, they explain that they are buying a large amount of
## 28 Anticipating your reaction, they explain that they are buying a large amount of
## 29 Anticipating your reaction, they explain that they are buying a large amount of
## 30 Anticipating your reaction, they explain that they are buying a large amount of
## 31 They wave to you and say that they are buying a large amount of
## 32 They wave to you and say that they are buying a large amount of
## 33 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 34 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 35 They wave to you and say that they are buying a large amount of
## 36 They wave to you and say that they are buying a large amount of
## 37 They wave to you and say that they are buying a large amount of
## 38 They wave to you and say that they are buying a large amount of
## 39 They explain to you that they are buying a large amount of
## 40 They explain to you that they are buying a large amount of
## 41 They explain to you that they are buying a large amount of
## 42 They explain to you that they are buying a large amount of
## 43 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 44 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 45 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 46 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## V4_Framing.x
## 1 Anticipating your reaction, they explain that they are buying a large amount of
## 2 Anticipating your reaction, they explain that they are buying a large amount of
## 3 They wave to you and say that they are buying a large amount of
## 4 They wave to you and say that they are buying a large amount of
## 5 Anticipating your reaction, they explain that they are buying a large amount of
## 6 Anticipating your reaction, they explain that they are buying a large amount of
## 7 Anticipating your reaction, they explain that they are buying a large amount of
## 8 Anticipating your reaction, they explain that they are buying a large amount of
## 9 They wave to you and say that they are buying a large amount of
## 10 They wave to you and say that they are buying a large amount of
## 11 They wave to you and say that they are buying a large amount of
## 12 They wave to you and say that they are buying a large amount of
## 13 Anticipating your reaction, they explain that they are buying a large amount of
## 14 Anticipating your reaction, they explain that they are buying a large amount of
## 15 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 16 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 17 They explain to you that they are buying a large amount of
## 18 They explain to you that they are buying a large amount of
## 19 They wave to you and say that they are buying a large amount of
## 20 They wave to you and say that they are buying a large amount of
## 21 They wave to you and say that they are buying a large amount of
## 22 They wave to you and say that they are buying a large amount of
## 23 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 24 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 25 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 26 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 27 They explain to you that they are buying a large amount of
## 28 They explain to you that they are buying a large amount of
## 29 Anticipating your reaction, they explain that they are buying a large amount of
## 30 Anticipating your reaction, they explain that they are buying a large amount of
## 31 They wave to you and say that they are buying a large amount of
## 32 They wave to you and say that they are buying a large amount of
## 33 They explain to you that they are buying a large amount of
## 34 They explain to you that they are buying a large amount of
## 35 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 36 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 37 They explain to you that they are buying a large amount of
## 38 They explain to you that they are buying a large amount of
## 39 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 40 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 41 They explain to you that they are buying a large amount of
## 42 They explain to you that they are buying a large amount of
## 43 They wave to you and say that they are buying a large amount of
## 44 They wave to you and say that they are buying a large amount of
## 45 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## 46 They happen to strike up a conversation with you, explaining to you that they are buying a large amount of
## V_Pethnicity.x V_MainOrder.x V1_Product.x
## 1 Mainland Chinese TCBH1122 toilet paper
## 2 Mainland Chinese TCBH1122 toilet paper
## 3 Mainland Chinese CBTH1212 cigarettes
## 4 Mainland Chinese CBTH1212 cigarettes
## 5 Mainland Chinese CTHB1122 cigarettes
## 6 Mainland Chinese CTHB1122 cigarettes
## 7 Mainland Chinese TBHC1122 toilet paper
## 8 Mainland Chinese TBHC1122 toilet paper
## 9 Mainland Chinese CBTH1212 cigarettes
## 10 Mainland Chinese CBTH1212 cigarettes
## 11 Other CHTB2211 cigarettes
## 12 Other CHTB2211 cigarettes
## 13 Mainland Chinese HTBC2121 hardware supplies
## 14 Mainland Chinese HTBC2121 hardware supplies
## 15 Hongkongese BTCH1122 baby formula
## 16 Hongkongese BTCH1122 baby formula
## 17 Other CHBT2211 cigarettes
## 18 Other CHBT2211 cigarettes
## 19 Mainland Chinese CHBT2121 cigarettes
## 20 Mainland Chinese CHBT2121 cigarettes
## 21 Other HTBC2121 hardware supplies
## 22 Other HTBC2121 hardware supplies
## 23 Mainland Chinese HCTB2211 hardware supplies
## 24 Mainland Chinese HCTB2211 hardware supplies
## 25 Other BTHC1122 baby formula
## 26 Other BTHC1122 baby formula
## 27 Mainland Chinese HBCT2211 hardware supplies
## 28 Mainland Chinese HBCT2211 hardware supplies
## 29 Taiwanese CBTH2211 cigarettes
## 30 Taiwanese CBTH2211 cigarettes
## 31 Other BHCT2121 baby formula
## 32 Other BHCT2121 baby formula
## 33 Other BTHC1122 baby formula
## 34 Other BTHC1122 baby formula
## 35 Mainland Chinese BHTC1212 baby formula
## 36 Mainland Chinese BHTC1212 baby formula
## 37 Mainland Chinese CHBT2211 cigarettes
## 38 Mainland Chinese CHBT2211 cigarettes
## 39 Taiwanese BCTH1212 baby formula
## 40 Taiwanese BCTH1212 baby formula
## 41 Mainland Chinese TCHB1212 toilet paper
## 42 Mainland Chinese TCHB1212 toilet paper
## 43 Mainland Chinese HTCB1122 hardware supplies
## 44 Mainland Chinese HTCB1122 hardware supplies
## 45 Mainland Chinese HCBT2211 hardware supplies
## 46 Mainland Chinese HCBT2211 hardware supplies
## V1_Presentation.x
## 1 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 2 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 3 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 4 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 5 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 6 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 7 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 8 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 9 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 10 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 11 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 12 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 13 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 14 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 15 even though they already have some at home, it pays to be cautious
## 16 even though they already have some at home, it pays to be cautious
## 17 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 18 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 19 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 20 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 21 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 22 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 23 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 24 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 25 even though they already have some at home, it pays to be cautious
## 26 even though they already have some at home, it pays to be cautious
## 27 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 28 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 29 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 30 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 31 they are out of formula and their baby cannot eat otherwise
## 32 they are out of formula and their baby cannot eat otherwise
## 33 even though they already have some at home, it pays to be cautious
## 34 even though they already have some at home, it pays to be cautious
## 35 even though they already have some at home, it pays to be cautious
## 36 even though they already have some at home, it pays to be cautious
## 37 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 38 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 39 even though they already have some at home, it pays to be cautious
## 40 even though they already have some at home, it pays to be cautious
## 41 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 42 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 43 even though they already have hardware supplies at home, it pays to be cautious
## 44 even though they already have hardware supplies at home, it pays to be cautious
## 45 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 46 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## V2_Product.x
## 1 cigarettes
## 2 cigarettes
## 3 baby formula
## 4 baby formula
## 5 toilet paper
## 6 toilet paper
## 7 baby formula
## 8 baby formula
## 9 baby formula
## 10 baby formula
## 11 hardware supplies
## 12 hardware supplies
## 13 toilet paper
## 14 toilet paper
## 15 toilet paper
## 16 toilet paper
## 17 hardware supplies
## 18 hardware supplies
## 19 hardware supplies
## 20 hardware supplies
## 21 toilet paper
## 22 toilet paper
## 23 cigarettes
## 24 cigarettes
## 25 toilet paper
## 26 toilet paper
## 27 baby formula
## 28 baby formula
## 29 baby formula
## 30 baby formula
## 31 hardware supplies
## 32 hardware supplies
## 33 toilet paper
## 34 toilet paper
## 35 hardware supplies
## 36 hardware supplies
## 37 hardware supplies
## 38 hardware supplies
## 39 cigarettes
## 40 cigarettes
## 41 cigarettes
## 42 cigarettes
## 43 toilet paper
## 44 toilet paper
## 45 cigarettes
## 46 cigarettes
## V2_Presentation.x
## 1 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 2 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 3 they are out of formula and their baby cannot eat otherwise
## 4 they are out of formula and their baby cannot eat otherwise
## 5 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 6 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 7 even though they already have some at home, it pays to be cautious
## 8 even though they already have some at home, it pays to be cautious
## 9 they are out of formula and their baby cannot eat otherwise
## 10 they are out of formula and their baby cannot eat otherwise
## 11 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 12 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 13 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 14 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 15 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 16 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 17 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 18 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 19 even though they already have hardware supplies at home, it pays to be cautious
## 20 even though they already have hardware supplies at home, it pays to be cautious
## 21 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 22 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 23 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 24 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 25 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 26 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 27 they are out of formula and their baby cannot eat otherwise
## 28 they are out of formula and their baby cannot eat otherwise
## 29 they are out of formula and their baby cannot eat otherwise
## 30 they are out of formula and their baby cannot eat otherwise
## 31 even though they already have hardware supplies at home, it pays to be cautious
## 32 even though they already have hardware supplies at home, it pays to be cautious
## 33 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 34 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 35 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 36 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 37 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 38 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 39 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 40 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 41 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 42 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 43 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 44 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 45 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 46 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## V3_Product.x
## 1 baby formula
## 2 baby formula
## 3 toilet paper
## 4 toilet paper
## 5 hardware supplies
## 6 hardware supplies
## 7 hardware supplies
## 8 hardware supplies
## 9 toilet paper
## 10 toilet paper
## 11 toilet paper
## 12 toilet paper
## 13 baby formula
## 14 baby formula
## 15 cigarettes
## 16 cigarettes
## 17 baby formula
## 18 baby formula
## 19 baby formula
## 20 baby formula
## 21 baby formula
## 22 baby formula
## 23 toilet paper
## 24 toilet paper
## 25 hardware supplies
## 26 hardware supplies
## 27 cigarettes
## 28 cigarettes
## 29 toilet paper
## 30 toilet paper
## 31 cigarettes
## 32 cigarettes
## 33 hardware supplies
## 34 hardware supplies
## 35 toilet paper
## 36 toilet paper
## 37 baby formula
## 38 baby formula
## 39 toilet paper
## 40 toilet paper
## 41 hardware supplies
## 42 hardware supplies
## 43 cigarettes
## 44 cigarettes
## 45 baby formula
## 46 baby formula
## V3_Presentation.x
## 1 they are out of formula and their baby cannot eat otherwise
## 2 they are out of formula and their baby cannot eat otherwise
## 3 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 4 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 5 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 6 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 7 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 8 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 9 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 10 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 11 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 12 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 13 they are out of formula and their baby cannot eat otherwise
## 14 they are out of formula and their baby cannot eat otherwise
## 15 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 16 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 17 even though they already have some at home, it pays to be cautious
## 18 even though they already have some at home, it pays to be cautious
## 19 they are out of formula and their baby cannot eat otherwise
## 20 they are out of formula and their baby cannot eat otherwise
## 21 they are out of formula and their baby cannot eat otherwise
## 22 they are out of formula and their baby cannot eat otherwise
## 23 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 24 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 25 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 26 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 27 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 28 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 29 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 30 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 31 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 32 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 33 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 34 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 35 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 36 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 37 even though they already have some at home, it pays to be cautious
## 38 even though they already have some at home, it pays to be cautious
## 39 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 40 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 41 even though they already have hardware supplies at home, it pays to be cautious
## 42 even though they already have hardware supplies at home, it pays to be cautious
## 43 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 44 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 45 even though they already have some at home, it pays to be cautious
## 46 even though they already have some at home, it pays to be cautious
## V4_Product.x
## 1 hardware supplies
## 2 hardware supplies
## 3 hardware supplies
## 4 hardware supplies
## 5 baby formula
## 6 baby formula
## 7 cigarettes
## 8 cigarettes
## 9 hardware supplies
## 10 hardware supplies
## 11 baby formula
## 12 baby formula
## 13 cigarettes
## 14 cigarettes
## 15 hardware supplies
## 16 hardware supplies
## 17 toilet paper
## 18 toilet paper
## 19 toilet paper
## 20 toilet paper
## 21 cigarettes
## 22 cigarettes
## 23 baby formula
## 24 baby formula
## 25 cigarettes
## 26 cigarettes
## 27 toilet paper
## 28 toilet paper
## 29 hardware supplies
## 30 hardware supplies
## 31 toilet paper
## 32 toilet paper
## 33 cigarettes
## 34 cigarettes
## 35 cigarettes
## 36 cigarettes
## 37 toilet paper
## 38 toilet paper
## 39 hardware supplies
## 40 hardware supplies
## 41 baby formula
## 42 baby formula
## 43 baby formula
## 44 baby formula
## 45 toilet paper
## 46 toilet paper
## V4_Presentation.x
## 1 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 2 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 3 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 4 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 5 they are out of formula and their baby cannot eat otherwise
## 6 they are out of formula and their baby cannot eat otherwise
## 7 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 8 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 9 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 10 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 11 even though they already have some at home, it pays to be cautious
## 12 even though they already have some at home, it pays to be cautious
## 13 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 14 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 15 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 16 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 17 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 18 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 19 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 20 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 21 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 22 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 23 even though they already have some at home, it pays to be cautious
## 24 even though they already have some at home, it pays to be cautious
## 25 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 26 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 27 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 28 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 29 even though they already have hardware supplies at home, it pays to be cautious
## 30 even though they already have hardware supplies at home, it pays to be cautious
## 31 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 32 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 33 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 34 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 35 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 36 their aged parents are prone to panic attacks while staying indoors and the cigarettes will keep them calm
## 37 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 38 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 39 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 40 their house has poor insulation and their roof is leaking, which is not safe for their family who are spending all of their time indoors
## 41 they are out of formula and their baby cannot eat otherwise
## 42 they are out of formula and their baby cannot eat otherwise
## 43 they are out of formula and their baby cannot eat otherwise
## 44 they are out of formula and their baby cannot eat otherwise
## 45 they are stocking up for what they expect to be an anxiety-ridden couple of months
## 46 they are stocking up for what they expect to be an anxiety-ridden couple of months
## SurveyID OTHER_COUNTRIES.1_13_TEXT...Parent.Topics
## 1 SV_3pZs8qIp1fybqV7 NA
## 2 SV_3pZs8qIp1fybqV7 NA
## 3 SV_3pZs8qIp1fybqV7 NA
## 4 SV_3pZs8qIp1fybqV7 NA
## 5 SV_3pZs8qIp1fybqV7 NA
## 6 SV_3pZs8qIp1fybqV7 NA
## 7 SV_3pZs8qIp1fybqV7 NA
## 8 SV_3pZs8qIp1fybqV7 NA
## 9 SV_3pZs8qIp1fybqV7 NA
## 10 SV_3pZs8qIp1fybqV7 NA
## 11 SV_3pZs8qIp1fybqV7 NA
## 12 SV_3pZs8qIp1fybqV7 NA
## 13 SV_3pZs8qIp1fybqV7 NA
## 14 SV_3pZs8qIp1fybqV7 NA
## 15 SV_3pZs8qIp1fybqV7 NA
## 16 SV_3pZs8qIp1fybqV7 NA
## 17 SV_3pZs8qIp1fybqV7 NA
## 18 SV_3pZs8qIp1fybqV7 NA
## 19 SV_3pZs8qIp1fybqV7 NA
## 20 SV_3pZs8qIp1fybqV7 NA
## 21 SV_3pZs8qIp1fybqV7 NA
## 22 SV_3pZs8qIp1fybqV7 NA
## 23 SV_3pZs8qIp1fybqV7 NA
## 24 SV_3pZs8qIp1fybqV7 NA
## 25 SV_3pZs8qIp1fybqV7 NA
## 26 SV_3pZs8qIp1fybqV7 NA
## 27 SV_3pZs8qIp1fybqV7 NA
## 28 SV_3pZs8qIp1fybqV7 NA
## 29 SV_3pZs8qIp1fybqV7 NA
## 30 SV_3pZs8qIp1fybqV7 NA
## 31 SV_3pZs8qIp1fybqV7 NA
## 32 SV_3pZs8qIp1fybqV7 NA
## 33 SV_3pZs8qIp1fybqV7 NA
## 34 SV_3pZs8qIp1fybqV7 NA
## 35 SV_3pZs8qIp1fybqV7 NA
## 36 SV_3pZs8qIp1fybqV7 NA
## 37 SV_3pZs8qIp1fybqV7 NA
## 38 SV_3pZs8qIp1fybqV7 NA
## 39 SV_3pZs8qIp1fybqV7 NA
## 40 SV_3pZs8qIp1fybqV7 NA
## 41 SV_3pZs8qIp1fybqV7 NA
## 42 SV_3pZs8qIp1fybqV7 NA
## 43 SV_3pZs8qIp1fybqV7 NA
## 44 SV_3pZs8qIp1fybqV7 NA
## 45 SV_3pZs8qIp1fybqV7 NA
## 46 SV_3pZs8qIp1fybqV7 NA
## OTHER_COUNTRIES.1_13_TEXT...Sentiment.Score
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
## 7 NA
## 8 NA
## 9 NA
## 10 NA
## 11 NA
## 12 NA
## 13 NA
## 14 NA
## 15 NA
## 16 NA
## 17 NA
## 18 NA
## 19 NA
## 20 NA
## 21 NA
## 22 NA
## 23 NA
## 24 NA
## 25 NA
## 26 NA
## 27 NA
## 28 NA
## 29 NA
## 30 NA
## 31 NA
## 32 NA
## 33 NA
## 34 NA
## 35 NA
## 36 NA
## 37 NA
## 38 NA
## 39 NA
## 40 NA
## 41 NA
## 42 NA
## 43 NA
## 44 NA
## 45 NA
## 46 NA
## OTHER_COUNTRIES.1_13_TEXT...Sentiment OTHER_COUNTRIES.1_13_TEXT...Topics
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
## 7 NA
## 8 NA
## 9 NA
## 10 NA
## 11 NA
## 12 NA
## 13 NA
## 14 NA
## 15 NA
## 16 NA
## 17 NA
## 18 NA
## 19 NA
## 20 NA
## 21 NA
## 22 NA
## 23 NA
## 24 NA
## 25 NA
## 26 NA
## 27 NA
## 28 NA
## 29 NA
## 30 NA
## 31 NA
## 32 NA
## 33 NA
## 34 NA
## 35 NA
## 36 NA
## 37 NA
## 38 NA
## 39 NA
## 40 NA
## 41 NA
## 42 NA
## 43 NA
## 44 NA
## 45 NA
## 46 NA
## OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Label
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
## 7 NA
## 8 NA
## 9 NA
## 10 NA
## 11 NA
## 12 NA
## 13 NA
## 14 NA
## 15 NA
## 16 NA
## 17 NA
## 18 NA
## 19 NA
## 20 NA
## 21 NA
## 22 NA
## 23 NA
## 24 NA
## 25 NA
## 26 NA
## 27 NA
## 28 NA
## 29 NA
## 30 NA
## 31 NA
## 32 NA
## 33 NA
## 34 NA
## 35 NA
## 36 NA
## 37 NA
## 38 NA
## 39 NA
## 40 NA
## 41 NA
## 42 NA
## 43 NA
## 44 NA
## 45 NA
## 46 NA
## OTHER_COUNTRIES.1_13_TEXT...Topic.Sentiment.Score EXPGRP_TEXT
## 1 NA Chinese
## 2 NA Chinese
## 3 NA Chinese
## 4 NA Chinese
## 5 NA Chinese
## 6 NA Chinese
## 7 NA Chinese
## 8 NA Chinese
## 9 NA Chinese
## 10 NA Chinese
## 11 NA Chinese
## 12 NA Chinese
## 13 NA Chinese
## 14 NA Chinese
## 15 NA Chinese
## 16 NA Chinese
## 17 NA Chinese
## 18 NA Chinese
## 19 NA Chinese
## 20 NA Chinese
## 21 NA Chinese
## 22 NA Chinese
## 23 NA Chinese
## 24 NA Chinese
## 25 NA Chinese
## 26 NA Chinese
## 27 NA Chinese
## 28 NA Chinese
## 29 NA Chinese
## 30 NA Chinese
## 31 NA Chinese
## 32 NA Chinese
## 33 NA Chinese
## 34 NA Chinese
## 35 NA Chinese
## 36 NA Chinese
## 37 NA Chinese
## 38 NA Chinese
## 39 NA Chinese
## 40 NA Chinese
## 41 NA Chinese
## 42 NA Chinese
## 43 NA Chinese
## 44 NA Chinese
## 45 NA Chinese
## 46 NA Chinese
## CHIN_SPECIFIC_TEXT CONTINENT_BORN_TEXT_1 CONTINENT_BORN_TEXT_2
## 1 Mainland Chinese Developping Asia Asia
## 2 Mainland Chinese Developping Asia Asia
## 3 Mainland Chinese USA USA
## 4 Mainland Chinese USA USA
## 5 Mainland Chinese USA USA
## 6 Mainland Chinese USA USA
## 7 Mainland Chinese USA USA
## 8 Mainland Chinese USA USA
## 9 Mainland Chinese Developping Asia Asia
## 10 Mainland Chinese Developping Asia Asia
## 11 Other USA USA
## 12 Other USA USA
## 13 Mainland Chinese USA USA
## 14 Mainland Chinese USA USA
## 15 Hongkongese USA USA
## 16 Hongkongese USA USA
## 17 Other USA USA
## 18 Other USA USA
## 19 Mainland Chinese USA USA
## 20 Mainland Chinese USA USA
## 21 Other USA USA
## 22 Other USA USA
## 23 Mainland Chinese Western Europe Europe
## 24 Mainland Chinese Western Europe Europe
## 25 Other USA USA
## 26 Other USA USA
## 27 Mainland Chinese Developping Asia Asia
## 28 Mainland Chinese Developping Asia Asia
## 29 Taiwanese USA USA
## 30 Taiwanese USA USA
## 31 Other USA USA
## 32 Other USA USA
## 33 Other USA USA
## 34 Other USA USA
## 35 Mainland Chinese USA USA
## 36 Mainland Chinese USA USA
## 37 Mainland Chinese Developping Asia Asia
## 38 Mainland Chinese Developping Asia Asia
## 39 Taiwanese USA USA
## 40 Taiwanese USA USA
## 41 Mainland Chinese USA USA
## 42 Mainland Chinese USA USA
## 43 Mainland Chinese USA USA
## 44 Mainland Chinese USA USA
## 45 Mainland Chinese USA USA
## 46 Mainland Chinese USA USA
## CONTINENT_BORN_TEXT_3 HAS_LIVED_USA HH_INCOME_TEXT DOB_YEAR
## 1 Southern Country (Poorer) TRUE $50,000 to $70,000 1995
## 2 Southern Country (Poorer) TRUE $50,000 to $70,000 1995
## 3 USA TRUE $70,000 to $100,000 2002
## 4 USA TRUE $70,000 to $100,000 2002
## 5 USA TRUE $70,000 to $100,000 1995
## 6 USA TRUE $70,000 to $100,000 1995
## 7 USA TRUE $70,000 to $100,000 1995
## 8 USA TRUE $70,000 to $100,000 1995
## 9 Southern Country (Poorer) TRUE $10,000 to $30,000 2001
## 10 Southern Country (Poorer) TRUE $10,000 to $30,000 2001
## 11 USA TRUE $70,000 to $100,000 1993
## 12 USA TRUE $70,000 to $100,000 1993
## 13 USA TRUE $50,000 to $70,000 1997
## 14 USA TRUE $50,000 to $70,000 1997
## 15 USA TRUE $50,000 to $70,000 2003
## 16 USA TRUE $50,000 to $70,000 2003
## 17 USA TRUE $10,000 to $30,000 2001
## 18 USA TRUE $10,000 to $30,000 2001
## 19 USA TRUE $10,000 to $30,000 2002
## 20 USA TRUE $10,000 to $30,000 2002
## 21 USA TRUE $70,000 to $100,000 1988
## 22 USA TRUE $70,000 to $100,000 1988
## 23 Northern Country (Richer) FALSE $30,000 to $50,000 2000
## 24 Northern Country (Richer) FALSE $30,000 to $50,000 2000
## 25 USA TRUE $100,000 to $200,000 2001
## 26 USA TRUE $100,000 to $200,000 2001
## 27 Southern Country (Poorer) FALSE $10,000 to $30,000 1994
## 28 Southern Country (Poorer) FALSE $10,000 to $30,000 1994
## 29 USA TRUE $70,000 to $100,000 2001
## 30 USA TRUE $70,000 to $100,000 2001
## 31 USA TRUE $200,000 to $500,000 1991
## 32 USA TRUE $200,000 to $500,000 1991
## 33 USA TRUE $70,000 to $100,000 1997
## 34 USA TRUE $70,000 to $100,000 1997
## 35 USA TRUE $70,000 to $100,000 2000
## 36 USA TRUE $70,000 to $100,000 2000
## 37 Southern Country (Poorer) FALSE $10,000 to $30,000 1997
## 38 Southern Country (Poorer) FALSE $10,000 to $30,000 1997
## 39 USA TRUE $50,000 to $70,000 2002
## 40 USA TRUE $50,000 to $70,000 2002
## 41 USA TRUE $70,000 to $100,000 1993
## 42 USA TRUE $70,000 to $100,000 1993
## 43 USA TRUE $70,000 to $100,000 1998
## 44 USA TRUE $70,000 to $100,000 1998
## 45 USA TRUE $100,000 to $200,000 2002
## 46 USA TRUE $100,000 to $200,000 2002
## DOB_YEAR_PERIODE EDUCATION_1_TEXT SEX_TEXT demo_class X.2
## 1 (1985,1995] Professional degree (JD, MD) Female 3 129
## 2 (1985,1995] Professional degree (JD, MD) Female 3 129
## 3 (1995,2005] Some college but no degree Female 2 135
## 4 (1995,2005] Some college but no degree Female 2 135
## 5 (1985,1995] Bachelor's degree in college Female 1 162
## 6 (1985,1995] Bachelor's degree in college Female 1 162
## 7 (1985,1995] Doctoral degree Female 1 195
## 8 (1985,1995] Doctoral degree Female 1 195
## 9 (1995,2005] Some college but no degree Male 3 214
## 10 (1995,2005] Some college but no degree Male 3 214
## 11 (1985,1995] Master's degree Female 1 220
## 12 (1985,1995] Master's degree Female 1 220
## 13 (1995,2005] Bachelor's degree in college Male 2 241
## 14 (1995,2005] Bachelor's degree in college Male 2 241
## 15 (1995,2005] High school graduate Male 2 254
## 16 (1995,2005] High school graduate Male 2 254
## 17 (1995,2005] Some college but no degree Male 2 276
## 18 (1995,2005] Some college but no degree Male 2 276
## 19 (1995,2005] Associate degree in college Male 2 289
## 20 (1995,2005] Associate degree in college Male 2 289
## 21 (1985,1995] Bachelor's degree in college Male 1 292
## 22 (1985,1995] Bachelor's degree in college Male 1 292
## 23 (1995,2005] Some college but no degree Male 6 308
## 24 (1995,2005] Some college but no degree Male 6 308
## 25 (1995,2005] Some college but no degree Male 2 314
## 26 (1995,2005] Some college but no degree Male 2 314
## 27 (1985,1995] Master's degree Female 3 329
## 28 (1985,1995] Master's degree Female 3 329
## 29 (1995,2005] Some college but no degree Male 2 337
## 30 (1995,2005] Some college but no degree Male 2 337
## 31 (1985,1995] Bachelor's degree in college Male 2 343
## 32 (1985,1995] Bachelor's degree in college Male 2 343
## 33 (1995,2005] Bachelor's degree in college Female 2 351
## 34 (1995,2005] Bachelor's degree in college Female 2 351
## 35 (1995,2005] Some college but no degree Male 2 356
## 36 (1995,2005] Some college but no degree Male 2 356
## 37 (1995,2005] Bachelor's degree in college Female 3 367
## 38 (1995,2005] Bachelor's degree in college Female 3 367
## 39 (1995,2005] Some college but no degree Female 2 385
## 40 (1995,2005] Some college but no degree Female 2 385
## 41 (1985,1995] Professional degree (JD, MD) Female 1 388
## 42 (1985,1995] Professional degree (JD, MD) Female 1 388
## 43 (1995,2005] High school graduate Female 2 643
## 44 (1995,2005] High school graduate Female 2 643
## 45 (1995,2005] Some college but no degree Male 2 649
## 46 (1995,2005] Some college but no degree Male 2 649
## AMBI_MSR_EFA_ULS1 AMBI_MSR_EFA_ULS2 AMBI_MSR_EFA_ULS3 AMBI_MSR_EFA_ULS5
## 1 -0.0021926612 2.576709e-04 -0.0020959824 -0.0021755360
## 2 -0.0021926612 2.576709e-04 -0.0020959824 -0.0021755360
## 3 -0.0188449621 -6.103516e-04 -0.0040668547 -0.0097151697
## 4 -0.0188449621 -6.103516e-04 -0.0040668547 -0.0097151697
## 5 0.0085999966 1.465526e-02 0.0030022226 0.0116558690
## 6 0.0085999966 1.465526e-02 0.0030022226 0.0116558690
## 7 -0.0008899197 9.124279e-03 -0.0075598210 0.0031879470
## 8 -0.0008899197 9.124279e-03 -0.0075598210 0.0031879470
## 9 0.0162716806 6.948352e-03 0.0049336851 0.0061504319
## 10 0.0162716806 6.948352e-03 0.0049336851 0.0061504319
## 11 0.0032240003 9.579062e-03 -0.0012917966 0.0066849962
## 12 0.0032240003 9.579062e-03 -0.0012917966 0.0066849962
## 13 0.0087380707 3.203011e-02 -0.0022127628 0.0146410689
## 14 0.0087380707 3.203011e-02 -0.0022127628 0.0146410689
## 15 0.0010852516 -1.122013e-02 -0.0019739121 -0.0082739368
## 16 0.0010852516 -1.122013e-02 -0.0019739121 -0.0082739368
## 17 0.0100069046 -2.151239e-02 -0.0137747526 -0.0073686391
## 18 0.0100069046 -2.151239e-02 -0.0137747526 -0.0073686391
## 19 0.0077003688 5.042553e-05 0.0031630769 0.0051686205
## 20 0.0077003688 5.042553e-05 0.0031630769 0.0051686205
## 21 0.0074512213 1.505315e-03 0.0022714622 0.0018637050
## 22 0.0074512213 1.505315e-03 0.0022714622 0.0018637050
## 23 0.0020832568 -2.765083e-02 -0.0069923699 -0.0181151330
## 24 0.0020832568 -2.765083e-02 -0.0069923699 -0.0181151330
## 25 -0.0133790076 2.347112e-03 -0.0084928423 -0.0032060295
## 26 -0.0133790076 2.347112e-03 -0.0084928423 -0.0032060295
## 27 0.0037850831 1.282702e-02 0.0027650911 0.0033848900
## 28 0.0037850831 1.282702e-02 0.0027650911 0.0033848900
## 29 0.0170511007 -7.389903e-03 0.0026791394 0.0066444874
## 30 0.0170511007 -7.389903e-03 0.0026791394 0.0066444874
## 31 0.0027434677 -1.693159e-03 -0.0032919720 -0.0018332638
## 32 0.0027434677 -1.693159e-03 -0.0032919720 -0.0018332638
## 33 -0.0079968870 1.689756e-02 0.0096839368 0.0091550946
## 34 -0.0079968870 1.689756e-02 0.0096839368 0.0091550946
## 35 -0.0198915750 1.593828e-02 0.0021609217 0.0047510862
## 36 -0.0198915750 1.593828e-02 0.0021609217 0.0047510862
## 37 -0.0011175033 -1.117276e-02 -0.0058283713 -0.0032097828
## 38 -0.0011175033 -1.117276e-02 -0.0058283713 -0.0032097828
## 39 -0.0037608892 1.486444e-02 0.0029229559 0.0082056914
## 40 -0.0037608892 1.486444e-02 0.0029229559 0.0082056914
## 41 -0.0107296109 5.301833e-04 -0.0026883930 0.0001606457
## 42 -0.0107296109 5.301833e-04 -0.0026883930 0.0001606457
## 43 -0.0143898726 -3.751516e-04 0.0001946092 -0.0012823045
## 44 -0.0143898726 -3.751516e-04 0.0001946092 -0.0012823045
## 45 0.0042023957 -1.278043e-03 -0.0057991892 0.0047474056
## 46 0.0042023957 -1.278043e-03 -0.0057991892 0.0047474056
## AMBI_MSR_EFA_ULS4 AMBI_MSR_EFA_ULS6 AMBI_MSR_EFA_ULS9 AMBI_MSR_EFA_ULS8
## 1 1.065917e-03 0.0038859844 0.0157582462 0.0130094737
## 2 1.065917e-03 0.0038859844 0.0157582462 0.0130094737
## 3 -7.943068e-03 -0.0157390684 -0.0119058117 -0.0178276151
## 4 -7.943068e-03 -0.0157390684 -0.0119058117 -0.0178276151
## 5 -4.097578e-03 0.0065253861 0.0011899434 0.0039711129
## 6 -4.097578e-03 0.0065253861 0.0011899434 0.0039711129
## 7 -1.821687e-02 -0.0036778599 -0.0065778047 -0.0025732629
## 8 -1.821687e-02 -0.0036778599 -0.0065778047 -0.0025732629
## 9 5.389005e-03 0.0067899078 0.0055656508 0.0116260052
## 10 5.389005e-03 0.0067899078 0.0055656508 0.0116260052
## 11 -7.010389e-03 -0.0007359982 -0.0091369897 -0.0115455762
## 12 -7.010389e-03 -0.0007359982 -0.0091369897 -0.0115455762
## 13 4.613210e-03 0.0132283121 -0.0074678957 0.0190039575
## 14 4.613210e-03 0.0132283121 -0.0074678957 0.0190039575
## 15 -6.875284e-03 -0.0024984926 -0.0051097050 -0.0044669881
## 16 -6.875284e-03 -0.0024984926 -0.0051097050 -0.0044669881
## 17 -1.347498e-02 0.0010918975 -0.0121248066 -0.0211128592
## 18 -1.347498e-02 0.0010918975 -0.0121248066 -0.0211128592
## 19 -8.783937e-04 0.0029431805 0.0052172504 0.0066931695
## 20 -8.783937e-04 0.0029431805 0.0052172504 0.0066931695
## 21 1.719687e-05 0.0048497953 -0.0078738518 -0.0063939672
## 22 1.719687e-05 0.0048497953 -0.0078738518 -0.0063939672
## 23 -1.360720e-02 -0.0032532066 -0.0041712448 -0.0282599404
## 24 -1.360720e-02 -0.0032532066 -0.0041712448 -0.0282599404
## 25 -9.680027e-03 -0.0107393116 -0.0080542862 0.0006741285
## 26 -9.680027e-03 -0.0107393116 -0.0080542862 0.0006741285
## 27 4.151302e-03 0.0019518621 0.0010588104 0.0097989952
## 28 4.151302e-03 0.0019518621 0.0010588104 0.0097989952
## 29 6.469971e-03 0.0121678561 0.0104164630 0.0047610998
## 30 6.469971e-03 0.0121678561 0.0104164630 0.0047610998
## 31 -3.711167e-03 -0.0030209571 -0.0121393204 -0.0205864608
## 32 -3.711167e-03 -0.0030209571 -0.0121393204 -0.0205864608
## 33 8.665979e-03 -0.0042869449 0.0023344010 0.0150204599
## 34 8.665979e-03 -0.0042869449 0.0023344010 0.0150204599
## 35 4.680851e-03 -0.0041518062 -0.0188396052 -0.0002746731
## 36 4.680851e-03 -0.0041518062 -0.0188396052 -0.0002746731
## 37 -5.446133e-03 0.0010385551 0.0117150107 -0.0004073130
## 38 -5.446133e-03 0.0010385551 0.0117150107 -0.0004073130
## 39 -1.622387e-03 0.0038748868 -0.0012039579 0.0087026376
## 40 -1.622387e-03 0.0038748868 -0.0012039579 0.0087026376
## 41 2.816899e-03 -0.0046072155 0.0014629439 0.0006890148
## 42 2.816899e-03 -0.0046072155 0.0014629439 0.0006890148
## 43 6.451473e-03 -0.0072888136 -0.0007907152 0.0083718151
## 44 6.451473e-03 -0.0072888136 -0.0007907152 0.0083718151
## 45 -8.977048e-03 0.0008065403 -0.0031953305 -0.0030656457
## 46 -8.977048e-03 0.0008065403 -0.0031953305 -0.0030656457
## AMBI_MSR_EFA_ULS13 AMBI_MSR_EFA_ULS10 AMBI_MSR_EFA_ULS7 AMBI_MSR_EFA_ULS11
## 1 -0.0093313456 2.452642e-03 0.0158161521 2.558254e-03
## 2 -0.0093313456 2.452642e-03 0.0158161521 2.558254e-03
## 3 -0.0062271357 -2.868965e-03 0.0060849786 1.426175e-03
## 4 -0.0062271357 -2.868965e-03 0.0060849786 1.426175e-03
## 5 0.0019556955 4.138377e-03 0.0105369538 3.544016e-03
## 6 0.0019556955 4.138377e-03 0.0105369538 3.544016e-03
## 7 -0.0055174679 -1.018252e-03 0.0057491064 7.183626e-04
## 8 -0.0055174679 -1.018252e-03 0.0057491064 7.183626e-04
## 9 0.0095233917 6.560422e-03 0.0046083331 3.572091e-03
## 10 0.0095233917 6.560422e-03 0.0046083331 3.572091e-03
## 11 -0.0029485226 -1.552910e-03 -0.0100761056 -2.606139e-03
## 12 -0.0029485226 -1.552910e-03 -0.0100761056 -2.606139e-03
## 13 0.0062099993 -1.465626e-03 0.0209065080 3.788024e-04
## 14 0.0062099993 -1.465626e-03 0.0209065080 3.788024e-04
## 15 0.0035616159 -4.048992e-03 -0.0024044961 2.920177e-03
## 16 0.0035616159 -4.048992e-03 -0.0024044961 2.920177e-03
## 17 -0.0060951710 -6.483912e-03 -0.0260094404 -9.299874e-03
## 18 -0.0060951710 -6.483912e-03 -0.0260094404 -9.299874e-03
## 19 0.0041964054 3.884815e-03 0.0082547218 5.308036e-03
## 20 0.0041964054 3.884815e-03 0.0082547218 5.308036e-03
## 21 0.0059677735 -2.137713e-03 -0.0044488907 -1.102017e-03
## 22 0.0059677735 -2.137713e-03 -0.0044488907 -1.102017e-03
## 23 -0.0029748976 -4.633479e-03 -0.0086016357 -1.048408e-03
## 24 -0.0029748976 -4.633479e-03 -0.0086016357 -1.048408e-03
## 25 -0.0094487071 -1.483342e-02 -0.0053756535 9.845197e-05
## 26 -0.0094487071 -1.483342e-02 -0.0053756535 9.845197e-05
## 27 -0.0013937354 -3.203703e-03 0.0001587160 -1.158127e-03
## 28 -0.0013937354 -3.203703e-03 0.0001587160 -1.158127e-03
## 29 0.0015072823 5.837396e-03 0.0069795251 3.481194e-03
## 30 0.0015072823 5.837396e-03 0.0069795251 3.481194e-03
## 31 -0.0007634163 3.407996e-03 -0.0097820610 -4.721586e-03
## 32 -0.0007634163 3.407996e-03 -0.0097820610 -4.721586e-03
## 33 0.0053263903 1.253161e-02 0.0145407915 4.801646e-03
## 34 0.0053263903 1.253161e-02 0.0145407915 4.801646e-03
## 35 0.0100470185 -6.816290e-03 0.0068058968 -2.446257e-03
## 36 0.0100470185 -6.816290e-03 0.0068058968 -2.446257e-03
## 37 -0.0096791834 -5.291216e-05 0.0078313239 -1.886138e-03
## 38 -0.0096791834 -5.291216e-05 0.0078313239 -1.886138e-03
## 39 -0.0012806281 8.339062e-03 0.0154139996 1.023097e-03
## 40 -0.0012806281 8.339062e-03 0.0154139996 1.023097e-03
## 41 -0.0056080818 -2.708741e-03 0.0063576698 7.895604e-04
## 42 -0.0056080818 -2.708741e-03 0.0063576698 7.895604e-04
## 43 -0.0024213195 5.567372e-04 0.0130569339 2.510697e-04
## 44 -0.0024213195 5.567372e-04 0.0130569339 2.510697e-04
## 45 -0.0021579266 -2.710529e-03 0.0003185868 8.866787e-04
## 46 -0.0021579266 -2.710529e-03 0.0003185868 8.866787e-04
## AMBI_MSR_EFA_ULS12 AMBI_BIG5_Neuroticism AMBI_BIG5_Extraversion
## 1 -0.0031729639 0.88404163 -0.5383143
## 2 -0.0031729639 0.88404163 -0.5383143
## 3 0.0055215955 1.45616509 -1.2485902
## 4 0.0055215955 1.45616509 -1.2485902
## 5 -0.0017335936 -0.74634830 1.1266282
## 6 -0.0017335936 -0.74634830 1.1266282
## 7 0.0033848733 -0.23288925 0.3657238
## 8 0.0033848733 -0.23288925 0.3657238
## 9 -0.0024389327 -1.80809796 1.0580114
## 10 -0.0024389327 -1.80809796 1.0580114
## 11 0.0021360219 -0.05131053 1.4049966
## 12 0.0021360219 -0.05131053 1.4049966
## 13 -0.0101137459 -0.96221052 1.2122433
## 14 -0.0101137459 -0.96221052 1.2122433
## 15 0.0037374943 -0.63319491 -0.6423265
## 16 0.0037374943 -0.63319491 -0.6423265
## 17 0.0034726858 -1.04196386 -0.8589013
## 18 0.0034726858 -1.04196386 -0.8589013
## 19 0.0006868690 -0.72980241 0.4794657
## 20 0.0006868690 -0.72980241 0.4794657
## 21 0.0013812706 -1.17284208 0.6177964
## 22 0.0013812706 -1.17284208 0.6177964
## 23 0.0116030574 -0.52951421 -1.8982372
## 24 0.0116030574 -0.52951421 -1.8982372
## 25 -0.0002765357 1.06133510 -0.4483760
## 26 -0.0002765357 1.06133510 -0.4483760
## 27 -0.0075078346 -0.68055314 0.3599153
## 28 -0.0075078346 -0.68055314 0.3599153
## 29 -0.0007642210 -1.17350834 0.2390676
## 30 -0.0007642210 -1.17350834 0.2390676
## 31 0.0036805272 -0.20168186 0.5164350
## 32 0.0036805272 -0.20168186 0.5164350
## 33 -0.0074949861 0.73334389 0.6230602
## 34 -0.0074949861 0.73334389 0.6230602
## 35 0.0032406449 2.30840068 0.1621210
## 36 0.0032406449 2.30840068 0.1621210
## 37 0.0046206824 0.53239897 -0.8231105
## 38 0.0046206824 0.53239897 -0.8231105
## 39 -0.0001286641 0.84084734 0.7716436
## 40 -0.0001286641 0.84084734 0.7716436
## 41 0.0013557673 1.19640745 -0.7805124
## 42 0.0013557673 1.19640745 -0.7805124
## 43 -0.0036160946 1.63009407 -1.7244887
## 44 -0.0036160946 1.63009407 -1.7244887
## 45 -0.0010954738 -0.62644216 0.2008705
## 46 -0.0010954738 -0.62644216 0.2008705
## AMBI_BIG5_Openness AMBI_BIG5_Agreeableness AMBI_BIG5_Conscientiousness
## 1 -0.23818805 0.7466754 -0.12343961
## 2 -0.23818805 0.7466754 -0.12343961
## 3 -1.75207485 -1.4886156 0.23173595
## 4 -1.75207485 -1.4886156 0.23173595
## 5 -0.04646121 -0.1795182 0.65375765
## 6 -0.04646121 -0.1795182 0.65375765
## 7 -1.15556527 -0.6553173 -0.42361154
## 8 -1.15556527 -0.6553173 -0.42361154
## 9 0.35379538 1.3295687 0.36855989
## 10 0.35379538 1.3295687 0.36855989
## 11 -1.67989266 -0.5598053 -0.05996745
## 12 -1.67989266 -0.5598053 -0.05996745
## 13 1.43484151 1.0657894 -0.63187568
## 14 1.43484151 1.0657894 -0.63187568
## 15 -0.97946960 -0.1108764 -0.04610786
## 16 -0.97946960 -0.1108764 -0.04610786
## 17 -2.13341637 0.4959266 -2.13225345
## 18 -2.13341637 0.4959266 -2.13225345
## 19 -0.39150728 1.1475030 0.25095545
## 20 -0.39150728 1.1475030 0.25095545
## 21 0.11008395 0.5463990 0.34107818
## 22 0.11008395 0.5463990 0.34107818
## 23 -2.06413439 -0.7431791 -0.35604449
## 24 -2.06413439 -0.7431791 -0.35604449
## 25 -0.56719155 -0.7701490 -0.09630342
## 26 -0.56719155 -0.7701490 -0.09630342
## 27 1.07890711 0.2028556 0.44382571
## 28 1.07890711 0.2028556 0.44382571
## 29 0.31338371 1.1855064 0.57409175
## 30 0.31338371 1.1855064 0.57409175
## 31 -1.11434280 -1.1546777 -0.14174130
## 32 -1.11434280 -1.1546777 -0.14174130
## 33 0.60859042 -0.6008011 0.55652295
## 34 0.60859042 -0.6008011 0.55652295
## 35 1.27508594 -1.0184962 -0.77122483
## 36 1.27508594 -1.0184962 -0.77122483
## 37 -0.40584605 0.4253495 -0.33834890
## 38 -0.40584605 0.4253495 -0.33834890
## 39 -0.10513528 0.2756017 0.63744766
## 40 -0.10513528 0.2756017 0.63744766
## 41 0.55335694 -0.8581187 0.00672254
## 42 0.55335694 -0.8581187 0.00672254
## 43 0.28151095 -1.0038245 -0.01623922
## 44 0.28151095 -1.0038245 -0.01623922
## 45 -1.04667066 0.1656794 -1.02945280
## 46 -1.04667066 0.1656794 -1.02945280
## cov_class covqual_class age_education neuroticism_qual
## 1 3 1 25 - 45y_Graduate degree high
## 2 3 1 25 - 45y_Graduate degree high
## 3 3 1 -25y_No college degree high
## 4 3 1 -25y_No college degree high
## 5 2 1 25 - 45y_College degree middle
## 6 2 1 25 - 45y_College degree middle
## 7 2 1 25 - 45y_Graduate degree middle
## 8 2 1 25 - 45y_Graduate degree middle
## 9 1 1 -25y_No college degree weak
## 10 1 1 -25y_No college degree weak
## 11 1 1 25 - 45y_Graduate degree middle
## 12 1 1 25 - 45y_Graduate degree middle
## 13 1 1 -25y_College degree middle
## 14 1 1 -25y_College degree middle
## 15 3 1 -25y_No college degree middle
## 16 3 1 -25y_No college degree middle
## 17 1 1 -25y_No college degree middle
## 18 1 1 -25y_No college degree middle
## 19 3 2 -25y_College degree middle
## 20 3 2 -25y_College degree middle
## 21 3 1 25 - 45y_College degree weak
## 22 3 1 25 - 45y_College degree weak
## 23 1 1 -25y_No college degree middle
## 24 1 1 -25y_No college degree middle
## 25 3 1 -25y_No college degree high
## 26 3 1 -25y_No college degree high
## 27 1 1 25 - 45y_Graduate degree middle
## 28 1 1 25 - 45y_Graduate degree middle
## 29 1 1 -25y_No college degree weak
## 30 1 1 -25y_No college degree weak
## 31 2 1 25 - 45y_College degree middle
## 32 2 1 25 - 45y_College degree middle
## 33 3 2 -25y_College degree high
## 34 3 2 -25y_College degree high
## 35 2 1 -25y_No college degree high
## 36 2 1 -25y_No college degree high
## 37 2 1 -25y_College degree middle
## 38 2 1 -25y_College degree middle
## 39 2 1 -25y_No college degree high
## 40 2 1 -25y_No college degree high
## 41 1 1 25 - 45y_Graduate degree high
## 42 1 1 25 - 45y_Graduate degree high
## 43 1 1 -25y_No college degree high
## 44 1 1 -25y_No college degree high
## 45 3 2 -25y_No college degree middle
## 46 3 2 -25y_No college degree middle
## extraversion_qual openness_qual conscientiousness_qual agreeableness_qual
## 1 middle middle middle high
## 2 middle middle middle high
## 3 weak weak middle middle
## 4 weak weak middle middle
## 5 high middle high middle
## 6 high middle high middle
## 7 middle middle middle middle
## 8 middle middle middle middle
## 9 middle middle middle high
## 10 middle middle middle high
## 11 high weak middle middle
## 12 high weak middle middle
## 13 high high middle high
## 14 high high middle high
## 15 middle middle middle middle
## 16 middle middle middle middle
## 17 middle weak weak middle
## 18 middle weak weak middle
## 19 middle middle middle high
## 20 middle middle middle high
## 21 middle middle middle middle
## 22 middle middle middle middle
## 23 weak weak middle middle
## 24 weak weak middle middle
## 25 middle middle middle middle
## 26 middle middle middle middle
## 27 middle high middle middle
## 28 middle high middle middle
## 29 middle middle middle high
## 30 middle middle middle high
## 31 middle middle middle middle
## 32 middle middle middle middle
## 33 middle high middle middle
## 34 middle high middle middle
## 35 middle high middle middle
## 36 middle high middle middle
## 37 middle middle middle middle
## 38 middle middle middle middle
## 39 middle middle middle middle
## 40 middle middle middle middle
## 41 middle high middle middle
## 42 middle high middle middle
## 43 weak middle middle middle
## 44 weak middle middle middle
## 45 middle middle middle middle
## 46 middle middle middle middle
## covqual_class_2 EDUCATION_2_TEXT DOB_AGE_BRACKET HH_INCOME_TEXT2
## 1 Believers Graduate degree 25 - 35y $30,000 to $70,000
## 2 Believers Graduate degree 25 - 35y $30,000 to $70,000
## 3 Believers No college degree -25y $70,000 or more
## 4 Believers No college degree -25y $70,000 or more
## 5 Believers College degree 25 - 35y $70,000 or more
## 6 Believers College degree 25 - 35y $70,000 or more
## 7 Believers Graduate degree 25 - 35y $70,000 or more
## 8 Believers Graduate degree 25 - 35y $70,000 or more
## 9 Believers No college degree -25y Less than $30,000
## 10 Believers No college degree -25y Less than $30,000
## 11 Believers Graduate degree 25 - 35y $70,000 or more
## 12 Believers Graduate degree 25 - 35y $70,000 or more
## 13 Believers College degree -25y $30,000 to $70,000
## 14 Believers College degree -25y $30,000 to $70,000
## 15 Believers No college degree -25y $30,000 to $70,000
## 16 Believers No college degree -25y $30,000 to $70,000
## 17 Believers No college degree -25y Less than $30,000
## 18 Believers No college degree -25y Less than $30,000
## 19 Believers College degree -25y Less than $30,000
## 20 Believers College degree -25y Less than $30,000
## 21 Believers College degree 25 - 35y $70,000 or more
## 22 Believers College degree 25 - 35y $70,000 or more
## 23 Believers No college degree -25y $30,000 to $70,000
## 24 Believers No college degree -25y $30,000 to $70,000
## 25 Believers No college degree -25y $70,000 or more
## 26 Believers No college degree -25y $70,000 or more
## 27 Believers Graduate degree 25 - 35y Less than $30,000
## 28 Believers Graduate degree 25 - 35y Less than $30,000
## 29 Believers No college degree -25y $70,000 or more
## 30 Believers No college degree -25y $70,000 or more
## 31 Believers College degree 25 - 35y $70,000 or more
## 32 Believers College degree 25 - 35y $70,000 or more
## 33 Believers College degree -25y $70,000 or more
## 34 Believers College degree -25y $70,000 or more
## 35 Believers No college degree -25y $70,000 or more
## 36 Believers No college degree -25y $70,000 or more
## 37 Believers College degree -25y Less than $30,000
## 38 Believers College degree -25y Less than $30,000
## 39 Believers No college degree -25y $30,000 to $70,000
## 40 Believers No college degree -25y $30,000 to $70,000
## 41 Believers Graduate degree 25 - 35y $70,000 or more
## 42 Believers Graduate degree 25 - 35y $70,000 or more
## 43 Believers No college degree -25y $70,000 or more
## 44 Believers No college degree -25y $70,000 or more
## 45 Believers No college degree -25y $70,000 or more
## 46 Believers No college degree -25y $70,000 or more
## CovidSkepticism CovidSkepticism2 CovidSkepticism2norm ID
## 1 15.466538 20.633227 3.366061 129
## 2 15.466538 20.633227 3.366061 129
## 3 13.488229 22.450415 3.481938 135
## 4 13.488229 22.450415 3.481938 135
## 5 21.390104 17.942780 3.182667 162
## 6 21.390104 17.942780 3.182667 162
## 7 19.822544 23.233153 3.530118 195
## 8 19.822544 23.233153 3.530118 195
## 9 7.568454 6.377938 2.102156 214
## 10 7.568454 6.377938 2.102156 214
## 11 14.129536 10.509969 2.568308 220
## 12 14.129536 10.509969 2.568308 220
## 13 9.732244 12.004729 2.708971 241
## 14 9.732244 12.004729 2.708971 241
## 15 12.402419 18.505055 3.222291 254
## 16 12.402419 18.505055 3.222291 254
## 17 8.853118 8.120668 2.315970 276
## 18 8.853118 8.120668 2.315970 276
## 19 24.218025 32.307622 4.029109 289
## 20 24.218025 32.307622 4.029109 289
## 21 17.017047 26.055914 3.696217 292
## 22 17.017047 26.055914 3.696217 292
## 23 8.195578 10.578513 2.575011 308
## 24 8.195578 10.578513 2.575011 308
## 25 16.140147 24.772116 3.622085 314
## 26 16.140147 24.772116 3.622085 314
## 27 1.280922 2.089101 1.343690 329
## 28 1.280922 2.089101 1.343690 329
## 29 3.924909 3.305163 1.615060 337
## 30 3.924909 3.305163 1.615060 337
## 31 27.792708 23.801054 3.564468 343
## 32 27.792708 23.801054 3.564468 343
## 33 23.145990 23.938687 3.572719 351
## 34 23.145990 23.938687 3.572719 351
## 35 15.160436 13.235451 2.817090 356
## 36 15.160436 13.235451 2.817090 356
## 37 20.802394 22.996287 3.515642 367
## 38 20.802394 22.996287 3.515642 367
## 39 17.588498 14.779200 2.944508 385
## 40 17.588498 14.779200 2.944508 385
## 41 4.768823 7.741850 2.272028 388
## 42 4.768823 7.741850 2.272028 388
## 43 10.434154 10.822796 2.598692 643
## 44 10.434154 10.822796 2.598692 643
## 45 26.332132 28.924318 3.854295 649
## 46 26.332132 28.924318 3.854295 649
## Loc_adresse_formated
## 1 4274 Red Hawk Drive Southeast, Rochester, MN 55904, United States of America
## 2 4274 Red Hawk Drive Southeast, Rochester, MN 55904, United States of America
## 3 22421 9th Avenue SE, Bothell, WA 98021, United States of America
## 4 22421 9th Avenue SE, Bothell, WA 98021, United States of America
## 5 1954 63rd Street, New York, NY 11204, United States of America
## 6 1954 63rd Street, New York, NY 11204, United States of America
## 7 1954 63rd Street, New York, NY 11204, United States of America
## 8 1954 63rd Street, New York, NY 11204, United States of America
## 9 100 Edforth Way NW, Calgary, AB T3A 3V4, Canada
## 10 100 Edforth Way NW, Calgary, AB T3A 3V4, Canada
## 11 8940 SW Rebecca Lane, Beaverton, OR 97008, United States of America
## 12 8940 SW Rebecca Lane, Beaverton, OR 97008, United States of America
## 13 Zapopan Park, 3018 Charlotte Avenue, Rosemead, CA 91770, United States of America
## 14 Zapopan Park, 3018 Charlotte Avenue, Rosemead, CA 91770, United States of America
## 15 Colony Bend Elementary School, 2720 Planters Street, Sugar Land, TX 77479, United States of America
## 16 Colony Bend Elementary School, 2720 Planters Street, Sugar Land, TX 77479, United States of America
## 17 527 South Street, Quincy, MA 02169, United States of America
## 18 527 South Street, Quincy, MA 02169, United States of America
## 19 66 Fox Chase Lane, Palmyra, VA 22963, United States of America
## 20 66 Fox Chase Lane, Palmyra, VA 22963, United States of America
## 21 171 Riverside Drive, WA 6000, Australia
## 22 171 Riverside Drive, WA 6000, Australia
## 23 Viale Dalmazia, 3, 36100 Vicenza VI, Italy
## 24 Viale Dalmazia, 3, 36100 Vicenza VI, Italy
## 25 13236 SE 51st Place, Bellevue, WA 98006, United States of America
## 26 13236 SE 51st Place, Bellevue, WA 98006, United States of America
## 27 Nicolaas Beetsplantsoen 1, 1053 GV Amsterdam, Netherlands
## 28 Nicolaas Beetsplantsoen 1, 1053 GV Amsterdam, Netherlands
## 29 10015 NE 4th Street, Bellevue, WA 98004, United States of America
## 30 10015 NE 4th Street, Bellevue, WA 98004, United States of America
## 31 401 Hunters Point Boulevard, San Francisco, CA 94124.0, United States of America
## 32 401 Hunters Point Boulevard, San Francisco, CA 94124.0, United States of America
## 33 54-06 Woodside Avenue, New York, NY 11377, United States of America
## 34 54-06 Woodside Avenue, New York, NY 11377, United States of America
## 35 Parkhill Junior High School, 16500 Shadybank Drive, Dallas, TX 75248, United States of America
## 36 Parkhill Junior High School, 16500 Shadybank Drive, Dallas, TX 75248, United States of America
## 37 1 Victoria Street, Bristol, BS1 6AA, United Kingdom
## 38 1 Victoria Street, Bristol, BS1 6AA, United Kingdom
## 39 7904 East Altair Lane, Anaheim, CA 92808, United States of America
## 40 7904 East Altair Lane, Anaheim, CA 92808, United States of America
## 41 Balboa High School, Oneida Avenue, San Francisco, CA 94112, United States of America
## 42 Balboa High School, Oneida Avenue, San Francisco, CA 94112, United States of America
## 43 404 Cranbury Road, East Brunswick, NJ 08816, United States of America
## 44 404 Cranbury Road, East Brunswick, NJ 08816, United States of America
## 45 Hancock Elementary School, 1520 Arch Street, Norristown, PA 19401, United States of America
## 46 Hancock Elementary School, 1520 Arch Street, Norristown, PA 19401, United States of America
## Loc_state IDD V_Racenamef V_Number V_Racename V_Update
## 1 Minnesota 129_1_TRUE Black 1 <NA> TRUE
## 2 Minnesota 129_1_TRUE Black 1 <NA> TRUE
## 3 Washington 135_3_TRUE Black 3 <NA> TRUE
## 4 Washington 135_3_TRUE Black 3 <NA> TRUE
## 5 New York 162_2_TRUE Black 2 <NA> TRUE
## 6 New York 162_2_TRUE Black 2 <NA> TRUE
## 7 New York 195_1_TRUE Black 1 <NA> TRUE
## 8 New York 195_1_TRUE Black 1 <NA> TRUE
## 9 Alberta 214_3_TRUE Black 3 <NA> TRUE
## 10 Alberta 214_3_TRUE Black 3 <NA> TRUE
## 11 Oregon 220_3_TRUE Black 3 <NA> TRUE
## 12 Oregon 220_3_TRUE Black 3 <NA> TRUE
## 13 California 241_2_TRUE Black 2 <NA> TRUE
## 14 California 241_2_TRUE Black 2 <NA> TRUE
## 15 Texas 254_2_TRUE Black 2 <NA> TRUE
## 16 Texas 254_2_TRUE Black 2 <NA> TRUE
## 17 Massachusetts 276_4_TRUE Black 4 <NA> TRUE
## 18 Massachusetts 276_4_TRUE Black 4 <NA> TRUE
## 19 Virginia 289_4_TRUE Black 4 <NA> TRUE
## 20 Virginia 289_4_TRUE Black 4 <NA> TRUE
## 21 Western Australia 292_2_TRUE Black 2 <NA> TRUE
## 22 Western Australia 292_2_TRUE Black 2 <NA> TRUE
## 23 Veneto 308_3_TRUE Black 3 <NA> TRUE
## 24 Veneto 308_3_TRUE Black 3 <NA> TRUE
## 25 Washington 314_2_TRUE Black 2 <NA> TRUE
## 26 Washington 314_2_TRUE Black 2 <NA> TRUE
## 27 North Holland 329_4_TRUE Black 4 <NA> TRUE
## 28 North Holland 329_4_TRUE Black 4 <NA> TRUE
## 29 Washington 337_3_TRUE Black 3 <NA> TRUE
## 30 Washington 337_3_TRUE Black 3 <NA> TRUE
## 31 California 343_4_TRUE Black 4 <NA> TRUE
## 32 California 343_4_TRUE Black 4 <NA> TRUE
## 33 New York 351_2_TRUE Black 2 <NA> TRUE
## 34 New York 351_2_TRUE Black 2 <NA> TRUE
## 35 Texas 356_3_TRUE Black 3 <NA> TRUE
## 36 Texas 356_3_TRUE Black 3 <NA> TRUE
## 37 England 367_4_TRUE Black 4 <NA> TRUE
## 38 England 367_4_TRUE Black 4 <NA> TRUE
## 39 California 385_3_TRUE Black 3 <NA> TRUE
## 40 California 385_3_TRUE Black 3 <NA> TRUE
## 41 California 388_1_TRUE Black 1 <NA> TRUE
## 42 California 388_1_TRUE Black 1 <NA> TRUE
## 43 New Jersey 643_2_TRUE Black 2 <NA> TRUE
## 44 New Jersey 643_2_TRUE Black 2 <NA> TRUE
## 45 Pennsylvania 649_4_TRUE Black 4 <NA> TRUE
## 46 Pennsylvania 649_4_TRUE Black 4 <NA> TRUE
## V_Product V_Location V_Age V_StoreType V_Framing
## 1 toiletpaper nearby 41 supermarket Explain
## 2 toiletpaper nearby 41 supermarket Explain
## 3 toiletpaper anotherpartoftown 32 conveniencestore Strike up
## 4 toiletpaper anotherpartoftown 32 conveniencestore Strike up
## 5 toiletpaper inthecity 41 conveniencestore Explain
## 6 toiletpaper inthecity 41 conveniencestore Explain
## 7 toiletpaper anotherpartoftown 49 supermarket Anticipating
## 8 toiletpaper anotherpartoftown 49 supermarket Anticipating
## 9 toiletpaper anotherpartoftown 47 departmentstore Anticipating
## 10 toiletpaper anotherpartoftown 47 departmentstore Anticipating
## 11 toiletpaper anotherpartoftown 46 supermarket Wave
## 12 toiletpaper anotherpartoftown 46 supermarket Wave
## 13 toiletpaper inthecity 41 supermarket Explain
## 14 toiletpaper inthecity 41 supermarket Explain
## 15 toiletpaper anotherpartoftown 43 supermarket Explain
## 16 toiletpaper anotherpartoftown 43 supermarket Explain
## 17 toiletpaper inthecity 46 departmentstore Explain
## 18 toiletpaper inthecity 46 departmentstore Explain
## 19 toiletpaper nearby 48 departmentstore Wave
## 20 toiletpaper nearby 48 departmentstore Wave
## 21 toiletpaper inthecity 40 departmentstore Explain
## 22 toiletpaper inthecity 40 departmentstore Explain
## 23 toiletpaper nearby 41 conveniencestore Explain
## 24 toiletpaper nearby 41 conveniencestore Explain
## 25 toiletpaper inthecity 45 departmentstore Explain
## 26 toiletpaper inthecity 45 departmentstore Explain
## 27 toiletpaper anotherpartoftown 46 supermarket Explain
## 28 toiletpaper anotherpartoftown 46 supermarket Explain
## 29 toiletpaper inthecity 46 departmentstore Anticipating
## 30 toiletpaper inthecity 46 departmentstore Anticipating
## 31 toiletpaper anotherpartoftown 46 conveniencestore Wave
## 32 toiletpaper anotherpartoftown 46 conveniencestore Wave
## 33 toiletpaper nearby 48 supermarket Wave
## 34 toiletpaper nearby 48 supermarket Wave
## 35 toiletpaper anotherpartoftown 36 supermarket Wave
## 36 toiletpaper anotherpartoftown 36 supermarket Wave
## 37 toiletpaper inthecity 31 supermarket Explain
## 38 toiletpaper inthecity 31 supermarket Explain
## 39 toiletpaper anotherpartoftown 36 departmentstore Explain
## 40 toiletpaper anotherpartoftown 36 departmentstore Explain
## 41 toiletpaper inthecity 32 departmentstore Explain
## 42 toiletpaper inthecity 32 departmentstore Explain
## 43 toiletpaper anotherpartoftown 46 conveniencestore Strike up
## 44 toiletpaper anotherpartoftown 46 conveniencestore Strike up
## 45 toiletpaper inthecity 31 supermarket Strike up
## 46 toiletpaper inthecity 31 supermarket Strike up
## V_Presentation V_FirstClick V_LastClick V_Timepersection V_Timeperquestion
## 1 Defensive 4.047 24.257 20.210 6.7366667
## 2 Defensive 1.656 18.773 17.117 5.7056667
## 3 Defensive 6.663 11.934 5.271 1.7570000
## 4 Defensive 3.663 10.375 6.712 2.2373333
## 5 Defensive 9.310 13.482 4.172 1.3906667
## 6 Defensive 105.584 109.179 3.595 1.1983333
## 7 Defensive 9.939 13.400 3.461 1.1536667
## 8 Defensive 1.654 8.086 6.432 2.1440000
## 9 Defensive 4.140 12.261 8.121 2.7070000
## 10 Defensive 2.287 9.688 7.401 2.4670000
## 11 Defensive 66.612 87.236 20.624 6.8746667
## 12 Defensive 18.107 26.221 8.114 2.7046667
## 13 Defensive 6.970 12.758 5.788 1.9293333
## 14 Defensive 1.647 10.319 8.672 2.8906667
## 15 Defensive 2.927 14.606 11.679 3.8930000
## 16 Defensive 1.657 11.289 9.632 3.2106667
## 17 Defensive 10.688 22.552 11.864 3.9546667
## 18 Defensive 2.257 5.258 3.001 1.0003333
## 19 Defensive 11.951 15.452 3.501 1.1670000
## 20 Defensive 3.143 13.392 10.249 3.4163333
## 21 Defensive 4.614 30.638 26.024 8.6746667
## 22 Defensive 3.498 6.746 3.248 1.0826667
## 23 Defensive 11.101 18.302 7.201 2.4003333
## 24 Defensive 2.059 17.151 15.092 5.0306667
## 25 Defensive 6.729 15.760 9.031 3.0103333
## 26 Defensive 5.400 10.630 5.230 1.7433333
## 27 Defensive 7.200 15.932 8.732 2.9106667
## 28 Defensive 4.282 10.506 6.224 2.0746667
## 29 Defensive 7.884 14.678 6.794 2.2646667
## 30 Defensive 2.990 9.945 6.955 2.3183333
## 31 Defensive 1.942 3.499 1.557 0.5190000
## 32 Defensive 8.993 11.097 2.104 0.7013333
## 33 Defensive 9.967 21.292 11.325 3.7750000
## 34 Defensive 49.665 55.835 6.170 2.0566667
## 35 Defensive 22.404 60.736 38.332 12.7773333
## 36 Defensive 6.850 26.549 19.699 6.5663333
## 37 Defensive 4.438 17.939 13.501 4.5003333
## 38 Defensive 0.981 8.499 7.518 2.5060000
## 39 Defensive 5.980 11.595 5.615 1.8716667
## 40 Defensive 3.357 9.023 5.666 1.8886667
## 41 Defensive 4.049 15.690 11.641 3.8803333
## 42 Defensive 1.201 12.771 11.570 3.8566667
## 43 Defensive 4.030 36.172 32.142 10.7140000
## 44 Defensive 10.467 18.231 7.764 2.5880000
## 45 Defensive 10.027 43.577 33.550 11.1833333
## 46 Defensive 4.175 20.585 16.410 5.4700000
## V_Timeperquestionqual V_up V_presentation2 V_presentation3 V_JudgeSelf
## 1 (5,10] 1 0 Defensive 0
## 2 (5,10] 1 0 Defensive 1
## 3 (1,2] 1 0 Defensive 0
## 4 (2,3] 1 0 Defensive 1
## 5 (1,2] 1 0 Defensive 0
## 6 (1,2] 1 0 Defensive 1
## 7 (1,2] 1 0 Defensive 0
## 8 (2,3] 1 0 Defensive 1
## 9 (2,3] 1 0 Defensive 0
## 10 (2,3] 1 0 Defensive 1
## 11 (5,10] 1 0 Defensive 0
## 12 (2,3] 1 0 Defensive 1
## 13 (1,2] 1 0 Defensive 0
## 14 (2,3] 1 0 Defensive 1
## 15 (3,5] 1 0 Defensive 0
## 16 (3,5] 1 0 Defensive 1
## 17 (3,5] 1 0 Defensive 0
## 18 (1,2] 1 0 Defensive 1
## 19 (1,2] 1 0 Defensive 0
## 20 (3,5] 1 0 Defensive 1
## 21 (5,10] 1 0 Defensive 0
## 22 (1,2] 1 0 Defensive 1
## 23 (2,3] 1 0 Defensive 0
## 24 (5,10] 1 0 Defensive 1
## 25 (3,5] 1 0 Defensive 0
## 26 (1,2] 1 0 Defensive 1
## 27 (2,3] 1 0 Defensive 0
## 28 (2,3] 1 0 Defensive 1
## 29 (2,3] 1 0 Defensive 0
## 30 (2,3] 1 0 Defensive 1
## 31 (0,1] 1 0 Defensive 0
## 32 (0,1] 1 0 Defensive 1
## 33 (3,5] 1 0 Defensive 0
## 34 (2,3] 1 0 Defensive 1
## 35 (10,815] 1 0 Defensive 0
## 36 (5,10] 1 0 Defensive 1
## 37 (3,5] 1 0 Defensive 0
## 38 (2,3] 1 0 Defensive 1
## 39 (1,2] 1 0 Defensive 0
## 40 (1,2] 1 0 Defensive 1
## 41 (3,5] 1 0 Defensive 0
## 42 (3,5] 1 0 Defensive 1
## 43 (10,815] 1 0 Defensive 0
## 44 (2,3] 1 0 Defensive 1
## 45 (10,815] 1 0 Defensive 0
## 46 (5,10] 1 0 Defensive 1
## V_Racename_EXPGRP_Product_Presentation DOB_AGE CatchCovid MorallyWrong
## 1 B_Chinese_toiletpaper_Defensive 25 11 2
## 2 B_Chinese_toiletpaper_Defensive 25 22 13
## 3 B_Chinese_toiletpaper_Defensive 18 61 100
## 4 B_Chinese_toiletpaper_Defensive 18 37 100
## 5 B_Chinese_toiletpaper_Defensive 25 19 36
## 6 B_Chinese_toiletpaper_Defensive 25 1 1
## 7 B_Chinese_toiletpaper_Defensive 25 5 0
## 8 B_Chinese_toiletpaper_Defensive 25 6 0
## 9 B_Chinese_toiletpaper_Defensive 19 50 0
## 10 B_Chinese_toiletpaper_Defensive 19 50 0
## 11 B_Chinese_toiletpaper_Defensive 27 10 21
## 12 B_Chinese_toiletpaper_Defensive 27 10 15
## 13 B_Chinese_toiletpaper_Defensive 23 11 31
## 14 B_Chinese_toiletpaper_Defensive 23 28 59
## 15 B_Chinese_toiletpaper_Defensive 17 53 64
## 16 B_Chinese_toiletpaper_Defensive 17 45 55
## 17 B_Chinese_toiletpaper_Defensive 19 30 100
## 18 B_Chinese_toiletpaper_Defensive 19 10 100
## 19 B_Chinese_toiletpaper_Defensive 18 47 73
## 20 B_Chinese_toiletpaper_Defensive 18 55 73
## 21 B_Chinese_toiletpaper_Defensive 32 0 0
## 22 B_Chinese_toiletpaper_Defensive 32 0 0
## 23 B_Chinese_toiletpaper_Defensive 20 5 20
## 24 B_Chinese_toiletpaper_Defensive 20 5 30
## 25 B_Chinese_toiletpaper_Defensive 19 40 0
## 26 B_Chinese_toiletpaper_Defensive 19 40 0
## 27 B_Chinese_toiletpaper_Defensive 26 19 8
## 28 B_Chinese_toiletpaper_Defensive 26 25 22
## 29 B_Chinese_toiletpaper_Defensive 19 20 50
## 30 B_Chinese_toiletpaper_Defensive 19 20 55
## 31 B_Chinese_toiletpaper_Defensive 29 9 0
## 32 B_Chinese_toiletpaper_Defensive 29 9 6
## 33 B_Chinese_toiletpaper_Defensive 23 81 78
## 34 B_Chinese_toiletpaper_Defensive 23 75 75
## 35 B_Chinese_toiletpaper_Defensive 20 33 27
## 36 B_Chinese_toiletpaper_Defensive 20 21 0
## 37 B_Chinese_toiletpaper_Defensive 23 91 95
## 38 B_Chinese_toiletpaper_Defensive 23 92 87
## 39 B_Chinese_toiletpaper_Defensive 18 28 48
## 40 B_Chinese_toiletpaper_Defensive 18 29 42
## 41 B_Chinese_toiletpaper_Defensive 27 47 75
## 42 B_Chinese_toiletpaper_Defensive 27 60 74
## 43 B_Chinese_toiletpaper_Defensive 22 30 25
## 44 B_Chinese_toiletpaper_Defensive 22 30 35
## 45 B_Chinese_toiletpaper_Defensive 18 29 31
## 46 B_Chinese_toiletpaper_Defensive 18 30 30
## TransmitCovid RaceContResp V_ProductMor V_presentation3graph ID_Q
## 1 20 Chinese MorallyQuestionable Defensive 129_1
## 2 4 Chinese MorallyQuestionable Defensive 129_1
## 3 70 Chinese MorallyQuestionable Defensive 135_3
## 4 37 Chinese MorallyQuestionable Defensive 135_3
## 5 19 Chinese MorallyQuestionable Defensive 162_2
## 6 1 Chinese MorallyQuestionable Defensive 162_2
## 7 6 Chinese MorallyQuestionable Defensive 195_1
## 8 7 Chinese MorallyQuestionable Defensive 195_1
## 9 50 Chinese MorallyQuestionable Defensive 214_3
## 10 50 Chinese MorallyQuestionable Defensive 214_3
## 11 10 Chinese MorallyQuestionable Defensive 220_3
## 12 18 Chinese MorallyQuestionable Defensive 220_3
## 13 10 Chinese MorallyQuestionable Defensive 241_2
## 14 7 Chinese MorallyQuestionable Defensive 241_2
## 15 54 Chinese MorallyQuestionable Defensive 254_2
## 16 48 Chinese MorallyQuestionable Defensive 254_2
## 17 30 Chinese MorallyQuestionable Defensive 276_4
## 18 10 Chinese MorallyQuestionable Defensive 276_4
## 19 46 Chinese MorallyQuestionable Defensive 289_4
## 20 59 Chinese MorallyQuestionable Defensive 289_4
## 21 0 Chinese MorallyQuestionable Defensive 292_2
## 22 0 Chinese MorallyQuestionable Defensive 292_2
## 23 10 Chinese MorallyQuestionable Defensive 308_3
## 24 15 Chinese MorallyQuestionable Defensive 308_3
## 25 20 Chinese MorallyQuestionable Defensive 314_2
## 26 20 Chinese MorallyQuestionable Defensive 314_2
## 27 31 Chinese MorallyQuestionable Defensive 329_4
## 28 18 Chinese MorallyQuestionable Defensive 329_4
## 29 20 Chinese MorallyQuestionable Defensive 337_3
## 30 20 Chinese MorallyQuestionable Defensive 337_3
## 31 10 Chinese MorallyQuestionable Defensive 343_4
## 32 8 Chinese MorallyQuestionable Defensive 343_4
## 33 81 Chinese MorallyQuestionable Defensive 351_2
## 34 74 Chinese MorallyQuestionable Defensive 351_2
## 35 26 Chinese MorallyQuestionable Defensive 356_3
## 36 26 Chinese MorallyQuestionable Defensive 356_3
## 37 91 Chinese MorallyQuestionable Defensive 367_4
## 38 93 Chinese MorallyQuestionable Defensive 367_4
## 39 27 Chinese MorallyQuestionable Defensive 385_3
## 40 27 Chinese MorallyQuestionable Defensive 385_3
## 41 60 Chinese MorallyQuestionable Defensive 388_1
## 42 75 Chinese MorallyQuestionable Defensive 388_1
## 43 10 Chinese MorallyQuestionable Defensive 643_2
## 44 10 Chinese MorallyQuestionable Defensive 643_2
## 45 30 Chinese MorallyQuestionable Defensive 649_4
## 46 30 Chinese MorallyQuestionable Defensive 649_4
## ScaledCatchCovid ScaledTransmitCovid ScaledMorallyWrong
## 1 -0.92191103 -0.469801085 -0.80754133
## 2 -0.43478174 -1.150996445 -0.44486054
## 3 1.29231301 1.658934413 2.42361477
## 4 0.22948547 0.253968984 2.42361477
## 5 -0.56763519 -0.512375795 0.31347201
## 6 -1.36475584 -1.278720575 -0.84051231
## 7 -1.18761792 -1.065847025 -0.87348329
## 8 -1.14333344 -1.023272315 -0.87348329
## 9 0.80518372 0.807440214 -0.87348329
## 10 0.80518372 0.807440214 -0.87348329
## 11 -0.96619551 -0.895548185 -0.18109270
## 12 -0.96619551 -0.554950505 -0.37891858
## 13 -0.92191103 -0.895548185 0.14861711
## 14 -0.16907486 -1.023272315 1.07180457
## 15 0.93803716 0.977739054 1.23665947
## 16 0.58376132 0.722290794 0.93992064
## 17 -0.08050590 -0.044053986 2.42361477
## 18 -0.96619551 -0.895548185 2.42361477
## 19 0.67233028 0.637141374 1.53339829
## 20 1.02660613 1.190612604 1.53339829
## 21 -1.40904032 -1.321295285 -0.87348329
## 22 -1.40904032 -1.321295285 -0.87348329
## 23 -1.18761792 -0.895548185 -0.21406368
## 24 -1.18761792 -0.682674635 0.11564613
## 25 0.36233891 -0.469801085 -0.87348329
## 26 0.36233891 -0.469801085 -0.87348329
## 27 -0.56763519 -0.001479276 -0.60971545
## 28 -0.30192830 -0.554950505 -0.14812172
## 29 -0.52335070 -0.469801085 0.77506574
## 30 -0.52335070 -0.469801085 0.93992064
## 31 -1.01047999 -0.895548185 -0.87348329
## 32 -1.01047999 -0.980697605 -0.67565741
## 33 2.17800263 2.127256223 1.69825320
## 34 1.91229574 1.829233253 1.59934026
## 35 0.05234755 -0.214352826 0.01673319
## 36 -0.47906622 -0.214352826 -0.87348329
## 37 2.62084744 2.553003323 2.25875987
## 38 2.66513192 2.638152743 1.99499202
## 39 -0.16907486 -0.171778116 0.70912378
## 40 -0.12479038 -0.171778116 0.51129789
## 41 0.67233028 1.233187313 1.59934026
## 42 1.24802853 1.871807963 1.56636928
## 43 -0.08050590 -0.895548185 -0.04920878
## 44 -0.08050590 -0.895548185 0.28050103
## 45 -0.12479038 -0.044053986 0.14861711
## 46 -0.08050590 -0.044053986 0.11564613
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = V_presentation3graph), size = .5) +
geom_line(data = . %>%
filter(Change==0),
aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_line(data = . %>%
filter(Change<0),
aes(x=xj, group=ID_Q), color = 'brown4', alpha=.4) +
geom_line(data = . %>%
filter(Change>0),
aes(x=xj, group=ID_Q), color = 'darkolivegreen3', alpha=.3) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, color = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_grid(V_Product+EXPGRP_TEXT+V_Racenamef~Question)
grph
dff.means <- difflmeansmodelcomp(mixed.lmers)
## Joining, by = "comparison"
## Joining, by = "comparison"
rownames(dff.means) <-str_replace_all(rownames(dff.means), "EXPGRP_TEXT", "Resp")
rownames(dff.means) <-str_replace_all(rownames(dff.means), "V_Racenamef", "Name")
dff.means
## MorallyWrong
## RespWhite - RespChinese NA
## NameWhite - NameBlack NA
## NameWhite - NameChinese NA
## NameWhite - NameIndian NA
## NameBlack - NameChinese NA
## NameBlack - NameIndian NA
## NameChinese - NameIndian NA
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Producthardwaresupplies - V_Productcigarettes -10.04***
## V_Producthardwaresupplies - V_Productbabyformula 6.03***
## V_Producttoiletpaper - V_Productcigarettes NA
## V_Producttoiletpaper - V_Productbabyformula NA
## V_Productcigarettes - V_Productbabyformula 16.07***
## V_presentation3NONE - V_presentation3Defensive -5.87***
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## RespWhite:NameWhite - RespChinese:NameWhite NA
## RespWhite:NameWhite - RespWhite:NameBlack NA
## RespWhite:NameWhite - RespChinese:NameBlack NA
## RespWhite:NameWhite - RespWhite:NameChinese NA
## RespWhite:NameWhite - RespChinese:NameChinese NA
## RespWhite:NameWhite - RespWhite:NameIndian NA
## RespWhite:NameWhite - RespChinese:NameIndian NA
## RespChinese:NameWhite - RespWhite:NameBlack NA
## RespChinese:NameWhite - RespChinese:NameBlack NA
## RespChinese:NameWhite - RespWhite:NameChinese NA
## RespChinese:NameWhite - RespChinese:NameChinese NA
## RespChinese:NameWhite - RespWhite:NameIndian NA
## RespChinese:NameWhite - RespChinese:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameBlack NA
## RespWhite:NameBlack - RespWhite:NameChinese NA
## RespWhite:NameBlack - RespChinese:NameChinese NA
## RespWhite:NameBlack - RespWhite:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameIndian NA
## RespChinese:NameBlack - RespWhite:NameChinese NA
## RespChinese:NameBlack - RespChinese:NameChinese NA
## RespChinese:NameBlack - RespWhite:NameIndian NA
## RespChinese:NameBlack - RespChinese:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameChinese NA
## RespWhite:NameChinese - RespWhite:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameIndian NA
## RespChinese:NameChinese - RespWhite:NameIndian NA
## RespChinese:NameChinese - RespChinese:NameIndian NA
## RespWhite:NameIndian - RespChinese:NameIndian NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producthardwaresupplies -0.47
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -8.78***
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -11.77***
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 5.68***
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productbabyformula 5.91**
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -8.31***
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -11.3***
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 6.15**
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productbabyformula 6.38***
## RespWhite:V_Producttoiletpaper - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespWhite:V_Productcigarettes - RespChinese:V_Productcigarettes -2.99
## RespWhite:V_Productcigarettes - RespWhite:V_Productbabyformula 14.46***
## RespWhite:V_Productcigarettes - RespChinese:V_Productbabyformula 14.69***
## RespChinese:V_Productcigarettes - RespWhite:V_Productbabyformula 17.45***
## RespChinese:V_Productcigarettes - RespChinese:V_Productbabyformula 17.68***
## RespWhite:V_Productbabyformula - RespChinese:V_Productbabyformula 0.23
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producthardwaresupplies -0.34
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies -0.59
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -1.49
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -14.19***
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -10.92***
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -6.5**
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -10.97***
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 5.34*
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 5.94**
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 5.23**
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 5.18*
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies -0.25
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -1.15
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -13.85***
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -10.58***
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -6.16**
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -10.63***
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 5.68**
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 6.29**
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 5.57**
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 5.53**
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -0.9
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -13.6***
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -10.33***
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -5.91**
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -10.38***
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 5.93**
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 6.53**
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 5.82**
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 5.77**
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -12.7***
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -9.43***
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -5.01*
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -9.48***
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 6.83***
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 7.43***
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 6.72***
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 6.67**
## NameWhite:V_Producttoiletpaper - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameWhite:V_Productcigarettes - NameBlack:V_Productcigarettes 3.27
## NameWhite:V_Productcigarettes - NameChinese:V_Productcigarettes 7.69***
## NameWhite:V_Productcigarettes - NameIndian:V_Productcigarettes 3.22
## NameWhite:V_Productcigarettes - NameWhite:V_Productbabyformula 19.53***
## NameWhite:V_Productcigarettes - NameBlack:V_Productbabyformula 20.14***
## NameWhite:V_Productcigarettes - NameChinese:V_Productbabyformula 19.42***
## NameWhite:V_Productcigarettes - NameIndian:V_Productbabyformula 19.38***
## NameBlack:V_Productcigarettes - NameChinese:V_Productcigarettes 4.42*
## NameBlack:V_Productcigarettes - NameIndian:V_Productcigarettes -0.05
## NameBlack:V_Productcigarettes - NameWhite:V_Productbabyformula 16.26***
## NameBlack:V_Productcigarettes - NameBlack:V_Productbabyformula 16.87***
## NameBlack:V_Productcigarettes - NameChinese:V_Productbabyformula 16.15***
## NameBlack:V_Productcigarettes - NameIndian:V_Productbabyformula 16.11***
## NameChinese:V_Productcigarettes - NameIndian:V_Productcigarettes -4.47*
## NameChinese:V_Productcigarettes - NameWhite:V_Productbabyformula 11.84***
## NameChinese:V_Productcigarettes - NameBlack:V_Productbabyformula 12.44***
## NameChinese:V_Productcigarettes - NameChinese:V_Productbabyformula 11.73***
## NameChinese:V_Productcigarettes - NameIndian:V_Productbabyformula 11.68***
## NameIndian:V_Productcigarettes - NameWhite:V_Productbabyformula 16.31***
## NameIndian:V_Productcigarettes - NameBlack:V_Productbabyformula 16.92***
## NameIndian:V_Productcigarettes - NameChinese:V_Productbabyformula 16.2***
## NameIndian:V_Productcigarettes - NameIndian:V_Productbabyformula 16.16***
## NameWhite:V_Productbabyformula - NameBlack:V_Productbabyformula 0.61
## NameWhite:V_Productbabyformula - NameChinese:V_Productbabyformula -0.11
## NameWhite:V_Productbabyformula - NameIndian:V_Productbabyformula -0.15
## NameBlack:V_Productbabyformula - NameChinese:V_Productbabyformula -0.72
## NameBlack:V_Productbabyformula - NameIndian:V_Productbabyformula -0.76
## NameChinese:V_Productbabyformula - NameIndian:V_Productbabyformula -0.04
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3NONE -2.36
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Defensive -5.76***
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Defensive -8.35***
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Defensive -3.4.
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Defensive -5.99***
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Defensive -2.59
## RespWhite:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Prosocial - RespChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3NONE 3.55**
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3NONE 3.7**
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3NONE 1.37
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Defensive -4.41**
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Defensive -4.45**
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Defensive -1.08
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Defensive -4.92**
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3NONE 0.15
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3NONE -2.18.
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Defensive -7.96***
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Defensive -8***
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Defensive -4.64**
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Defensive -8.47***
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3NONE -2.33.
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Defensive -8.11***
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Defensive -8.15***
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Defensive -4.79**
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Defensive -8.62***
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Defensive -5.78***
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Defensive -5.82***
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Defensive -2.45
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Defensive -6.29***
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Defensive -0.04
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Defensive 3.33.
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Defensive -0.51
## NameWhite:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Defensive 3.37.
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Defensive -0.47
## NameBlack:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Defensive -3.84*
## NameChinese:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3NONE -12.22***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -12.89***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 5.73***
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -13.14***
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -15.38***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -12.61***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive -1.73
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 12.07***
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -5.69***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 13.02***
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -0.66
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 17.96***
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -0.92
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -3.16*
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -0.39
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 10.49***
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 24.29***
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial 6.53***
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 25.24***
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 18.62***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -0.25
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -2.49
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive 0.28
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 11.15***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 24.96***
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial 7.19***
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 25.91***
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -18.87***
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -21.11***
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -18.34***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive -7.47***
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 6.34***
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -11.43***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 7.28***
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Defensive -2.24
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive 0.53
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 11.41***
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 25.21***
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial 7.45***
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 26.16***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive 2.77
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 13.65***
## V_Producttoiletpaper:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 27.45***
## V_Producttoiletpaper:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial 9.69***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 28.4***
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 10.88***
## V_Productcigarettes:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 24.68***
## V_Productcigarettes:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial 6.92***
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 25.63***
## V_Productbabyformula:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 13.8***
## V_Productbabyformula:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -3.96*
## V_Productbabyformula:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 14.75***
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial -17.76***
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 0.95
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 18.71***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producthardwaresupplies -1.39
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies -1.06
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -1.01
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 0.04
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -2.6
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -3.23
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -1.14
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -13.54***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -16.23***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -11.54***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -11.69***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -6.35**
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -8.04*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -7.95***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -15.37***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 5.26*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 4.03
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 6.82**
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 3.68
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 3.61
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 5.46.
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 2.78
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 6.2.
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies 0.32
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies 0.38
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.42
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -1.22
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -1.84
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies 0.25
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -12.15***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -14.85***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -10.16**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -10.3**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -4.96
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.65.
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -6.57.
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -13.99***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 6.65.
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 5.41
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 8.2*
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 5.07
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 5
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 6.84*
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 4.16
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 7.59*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies 0.05
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.1
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -1.54
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -2.17
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.08
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -12.48***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -15.17***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -10.48***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -10.62**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -5.29*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.98*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -6.89**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -14.31***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 6.32**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 5.09
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 7.88***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 4.75
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 4.67*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 6.52*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.84.
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 7.27*
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.05
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -1.6
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -2.22
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.13
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -12.53***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -15.23***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -10.54**
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -10.68**
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -5.34
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -7.03*
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -6.95*
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -14.36***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 6.27.
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 5.03
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 7.83*
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 4.69
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 4.62
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 6.46.
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.79
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 7.21*
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -2.64
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -3.27
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -1.17
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -13.58***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -16.27***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -11.58***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -11.72***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -6.39**
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -8.08*
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -7.99***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -15.41***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 5.22*
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 3.99
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 6.78**
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 3.65
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 3.58
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 5.42
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 2.74
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 6.17.
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -0.62
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies 1.47
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -10.94**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -13.63***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -8.94**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -9.08**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -3.74
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -5.43
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -5.35
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -12.77***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 7.86*
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 6.63.
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 9.42**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 6.29.
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 6.22.
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 8.06*
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 5.38
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 8.81**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies 2.09
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -10.31***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -13***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -8.31***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -8.46*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -3.12
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -4.81
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -4.73.
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -12.14***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 8.49***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 7.26*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 10.05***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 6.91*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 6.84**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 8.69**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 6.01*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 9.43**
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -12.4***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -15.1***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -10.41**
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -10.55***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -5.21
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.9*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -6.82*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -14.24***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 6.4.
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 5.16
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 7.96*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 4.82
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 4.75
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 6.59*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.92
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 7.34*
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productcigarettes -2.69
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 2
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes 1.85
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 7.19**
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes 5.5
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 5.58*
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -1.83
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 18.8***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 17.57***
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 20.36***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 17.22***
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 17.15***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 19***
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 16.32***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 19.74***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 4.69
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes 4.55
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 9.89**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes 8.2*
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 8.28*
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 0.86
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 21.49***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 20.26***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 23.05***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 19.92***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 19.85***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 21.69***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 19.01***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 22.44***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -0.14
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 5.2*
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes 3.51
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 3.59
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -3.83
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 16.8***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 15.57***
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 18.36***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 15.23***
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 15.16***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 17***
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 14.32***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 17.75***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 5.34
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes 3.65
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 3.73
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -3.69
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 16.95***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 15.71***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 18.51***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 15.37***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 15.3***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 17.14***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 14.46***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 17.89***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -1.69
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes -1.61
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -9.03**
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 11.61***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 10.37**
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 13.17***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 10.03**
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 9.96***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 11.8***
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 9.13***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 12.55***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 0.08
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -7.33*
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 13.3***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 12.06***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 14.86***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 11.72***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 11.65**
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 13.49***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 10.82**
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 14.24***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -7.42*
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 13.22***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 11.98***
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 14.77***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 11.64***
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 11.57***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 13.41***
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 10.73***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 14.16***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 20.63***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 19.4***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 22.19***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 19.06***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 18.99***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 20.83***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 18.15***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 21.58***
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameWhite:V_Productbabyformula -1.23
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula 1.56
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula -1.58
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -1.65
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula 0.2
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -2.48
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 0.94
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula 2.79
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula -0.34
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -0.41
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula 1.43
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -1.25
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 2.18
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula -3.13
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -3.21
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.36
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -4.04.
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.61
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -0.07
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula 1.77
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -0.91
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 2.52
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula 1.84
## RespWhite:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -0.83
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 2.59
## RespChinese:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -2.68
## RespChinese:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 0.75
## RespWhite:NameIndian:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 3.43
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3NONE -4.28.
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 1.99
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE 0.84
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 2.32.
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE 0.8
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 0.47
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.01
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -5.09**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -8**
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -5.64**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -7.54**
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -2.11
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -4.34
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -5.4**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -8.72**
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 6.27*
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE 5.12*
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 6.6**
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE 5.08*
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 4.75.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE 2.27
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -0.81
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -3.73
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -1.36
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -3.26
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 2.17
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -0.06
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -1.12
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -4.44.
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE -1.15
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 0.33
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -1.19
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -1.52
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -4
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -7.08***
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -9.99***
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -7.63***
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -9.53***
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -4.1*
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -6.33*
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -7.39***
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -10.71***
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 1.49
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -0.04
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -0.37
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.85
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -5.93*
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -8.84***
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -6.48*
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -8.38***
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -2.95
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -5.17*
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -6.24*
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -9.56***
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -1.52
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -1.85
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -4.33.
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -7.42***
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -10.33***
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -7.96***
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -9.87***
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -4.43*
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -6.66*
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -7.72***
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -11.04***
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -0.33
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.81
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -5.9*
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -8.81***
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -6.44*
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -8.34***
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -2.91
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -5.14*
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -6.2*
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -9.52***
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.48
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -5.56**
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -8.48**
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -6.11***
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -8.01**
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -2.58
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -4.81.
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -5.87**
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -9.19**
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive -3.08
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -6*
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive -3.63
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -5.53*
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive -0.1
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -2.33
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive -3.39
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -6.71*
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Defensive -2.91
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive -0.54
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -2.45
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 2.98
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive 0.76
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive -0.31
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.62
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive 2.37
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive 0.46
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 5.9.
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive 3.67
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 2.61
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -0.71
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -1.91
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 3.53.
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive 1.3
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 0.24
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.08
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 5.43.
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive 3.21
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 2.14
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -1.18
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -2.23
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive -3.29
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -6.61*
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive -1.06
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -4.38
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.32
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3NONE 0.54
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE -10.69***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -13.22***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -9.57***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -15.67***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 6.67***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 5.33*
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -11.53***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.21***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -13.49***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -16.73***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -10.29***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -14.39***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive -1.29
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive -1.64
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.98***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.71***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -6.04***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.81.
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 12.11***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 14.47***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE -11.23***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -13.76***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -10.11***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -16.21***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 6.13*
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 4.79*
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -12.07***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.75***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -14.03***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -17.27***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -10.84***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -14.93***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive -1.83
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive -2.18
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.43***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.16***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -6.58*
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.35*
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 11.56***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 13.93***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -2.53
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE 1.12
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -4.98*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 17.36***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 16.02***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.84
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.52
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -2.8
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -6.04*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 0.39
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -3.7
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 9.4***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 9.05**
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.66***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.39***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 4.65**
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 5.88*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 22.79***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 25.16***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE 3.65
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -2.45
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 19.89***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 18.55***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.69
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.99
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -0.27
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -3.51
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 2.92
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -1.17
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 11.93***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 11.58***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.19***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.92***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 7.18**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 8.41***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 25.32***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 27.69***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -6.1*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 16.24***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 14.9***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.96
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -4.64
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -3.93*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -7.16*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -0.73
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -4.82
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 8.28***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 7.93**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.54***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.27***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 3.52*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 4.76.
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 21.67***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 24.04***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 22.34***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 21***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.14
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.46
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 2.18
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.06
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 5.38*
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive 1.28
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 14.38***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 14.03***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.65***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.38***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 9.63***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 10.86***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 27.77***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 30.14***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE -1.34
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -18.2***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -20.88***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -20.17***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -23.4***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -16.97***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -21.06***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive -7.96***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive -8.31**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.3**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.03*
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -12.72***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -11.48***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 5.43**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 7.8**
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -16.86***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -19.54***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -18.83***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -22.06***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -15.63***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -19.72***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive -6.62*
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive -6.97**
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.64*
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.37**
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -11.38***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -10.14***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 6.77*
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 9.14***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.68
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive -1.96
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -5.2.
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive 1.23
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -2.86
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 10.24***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 9.89**
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.5***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.23***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 5.49**
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 6.72*
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 23.63***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 26***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.72
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -2.52
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive 3.92
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -0.18
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 12.92***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 12.57***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.19***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.92***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 8.17**
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 9.4**
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 26.32***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 28.68***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -3.24
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive 3.2
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -0.9
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 12.2***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 11.85***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.47***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.2***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 7.45***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 8.69**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 25.6***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 27.96***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive 6.44*
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive 2.34
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 15.44***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 15.09***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.71***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 29.44***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 10.69***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 11.92***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 28.83***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 31.2***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -4.09
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 9***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 8.66**
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.27***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 4.25*
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 5.49.
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 22.4***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 24.76***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 13.1***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 12.75***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.36***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 27.09***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 8.34**
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 9.58**
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 26.49***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 28.86***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive -0.35
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.27***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.99***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -4.75*
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -3.52
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 13.39***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 15.76***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.61***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.34***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -4.4
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -3.17
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 13.74***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 16.11***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.73
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -18.02***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -16.78***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 0.13
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.49
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -18.75***
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -17.51***
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial -0.6
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.77
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial 1.24
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 18.15***
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 20.51***
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 16.91***
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 19.28***
## RespWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.37
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3NONE 3.43
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.3
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.98
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -15***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -11.49***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -9.82***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -12.43***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -17.36***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -12.52***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -8.29**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -13.23***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 4.51.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 6.94**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 6.36*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 5.28*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -12.4***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -14.72***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -10.96***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -14.33***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -15.88***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -16.14***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -12.51***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -16.84***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -17.56***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -11.44***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.76*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -13.54***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.34
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -3.35
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -0.96
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -2.82
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.26***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.13**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.34***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.7***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.81*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.95*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.59
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.28.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.02***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.11***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.14**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.96***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE -4.73.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.41*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -18.43***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -14.92***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -13.25***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -15.86***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -20.79***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -15.95***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -11.72***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -16.66***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 1.08
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 3.5
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 2.93
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 1.85
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -15.83***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -18.16***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.39***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -17.76***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -19.31***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.57***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -15.94***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -20.28***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -20.99***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -14.87***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -11.19***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -16.97***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive -3.09
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -6.78*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -4.39
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -6.25.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.83**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.7*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.91*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.27**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.24***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.38***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.02.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.71**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.59**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.68***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.71*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.53***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.69
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -13.71***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -10.19***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -8.52**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -11.14***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -16.06***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -11.22***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.99*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -11.94***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 5.8*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 8.23**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 7.66**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 6.58*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -11.1**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -13.43***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -9.66**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -13.03***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -14.58***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -14.84***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -11.21***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -15.55***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -16.26***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -10.14**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.46.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -12.24***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.64
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -2.05
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.34
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -1.53
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 14.56***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.42***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.64***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 14***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.51.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.65*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.3
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.99
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.31***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.4***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.44***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.25***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -13.02***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -9.5***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -7.84**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -10.45***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -15.37***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -10.54***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.31*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -11.25***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 6.49*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 8.92***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 8.35***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 7.26**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -10.42**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -12.74***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -8.97**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -12.34***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -13.89***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -14.16***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -10.53***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -14.86***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -15.57***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -9.46**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -5.77.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -11.55***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.33
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -1.37
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.02
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.84
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.24***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.11***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.33***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 14.68***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.82
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.96.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.61
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.3
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 14***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.09***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.12***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.94***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE 3.52
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 5.19*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.57
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -2.35
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE 2.48
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 6.71**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 1.77
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 19.51***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 21.94***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 21.37***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 20.28***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.6
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.28
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.05
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.68
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.87
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.14
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.49
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.84
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -2.55
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 3.56
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 7.25*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 1.47
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 15.35***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 11.65***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 14.04***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 12.18***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.27***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.13***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.35***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.7***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 8.2**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.06*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.41***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.72**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.02***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.11***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.14***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.96***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.67
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.95
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -5.87*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -1.03
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 3.2
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -1.75
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 16***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 18.42***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 17.85***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 16.77***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.91
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.24
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.53
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.84
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -4.39
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.65
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.02
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.36
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.07.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 0.05
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 3.73
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.05
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 11.83***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 8.14*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 10.53***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.67*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.75***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.61***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.83***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.19***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.68
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.54
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.9**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.2*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.51***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.59***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.63***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.44***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.61
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.54**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -2.7
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 1.53
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.41
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 14.33***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 16.75***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 16.18***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 15.1***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.58
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -4.91
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.14
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.51
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -6.06.
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.32.
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.69
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.03*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.74*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.62
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 2.06
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.72
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 10.16**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 6.47*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 8.86**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 7*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.08***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.95***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.16***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.52***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.01
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.87
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.23*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.54
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.84***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.93***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.96***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.77***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -4.92.
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -0.09
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 4.14
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -0.8
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 16.94***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 19.37***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 18.8***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 17.71***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.03
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.29
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.48
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.89
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.44
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.71
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.08
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.41
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.12
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 0.99
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 4.68
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.1
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 12.78***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 9.08**
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 11.47***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 9.61**
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.7***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.56***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.78***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.13***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.63.
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.49
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.84**
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.15*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.45***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.54***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.57***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.39***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE 4.84.
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 9.07***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 4.12
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 21.87***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 24.29***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 23.72***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 22.64***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.96
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.63
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.4*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.03
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.48
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.22
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 4.85
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.51
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -0.2
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 5.92.
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 9.6**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 3.82
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 17.7***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 14.01***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 16.4***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 14.54***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 30.62***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 28.48***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.7***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.06***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.55***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 9.41**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.77***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.07***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 29.38***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 32.46***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 28.5***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.31***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 4.23
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -0.71
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 17.03***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 19.45***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 18.88***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 17.8***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.12
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.21
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.56
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.81
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.36
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.62
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.01
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.33
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.04
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 1.08
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 4.76
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.02
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 12.86***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 9.17**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 11.56***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 9.7**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.78***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.65***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.86***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.22***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.71.
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.57
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.93**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.24*
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.54***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.63***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.66***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.48***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -4.94.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 12.8***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 15.23***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 14.66***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 13.57***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -4.11
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -6.43*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.66
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.03.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -7.58*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.85*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.22
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -8.55**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -9.27**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -3.15
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 0.54
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -5.24
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 8.64*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 4.94
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 7.33*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 5.47
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.55***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.42***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.63***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 20.99***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.49
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.35
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.7.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.01
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.31***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.4***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.43***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.25***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 17.74***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 20.17***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 19.6***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 18.51***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.83
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.49
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.28
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.09
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.64
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.91
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.72
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.61
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -4.32
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 1.79
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 5.48.
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -0.3
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 13.58***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 9.88**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 12.27***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 10.41**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.5***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.36***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.58***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.93***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.43*
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.29
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.64**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.95**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.25***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.34***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.37***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.19***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 2.43
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 1.86
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.77
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -16.91***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -19.23***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -15.46***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -18.83***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -20.38***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -20.65***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.02***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.35***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -22.07***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -15.95***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -12.26***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -18.04***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive -4.16
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -7.86*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -5.47.
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -7.33*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.75**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.62.
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.84*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.19**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -11.31***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -12.45***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.1*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.79**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.51*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.6***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.63.
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.45**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE -0.57
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -1.66
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -19.34***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -21.66***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -17.89***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -21.26***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -22.81***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -23.08***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -19.45***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -23.78***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -24.49***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -18.38***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -14.69***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -20.47***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive -6.59.
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -10.28***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -7.9**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -9.76**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.33*
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.19
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.41
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.76.
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -13.74***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -14.88***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -9.53**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.22***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.08
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.17**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.2
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.02*
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -1.09
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -18.77***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -21.09***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -17.32***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -20.69***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -22.24***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -22.51***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -18.88***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -23.21***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -23.92***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -17.81***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -14.12***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -19.9***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive -6.02.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -9.71**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -7.33**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -9.19**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.9*
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.76
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.98
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.34*
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -13.17***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -14.31***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.96**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -11.65***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.65.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.74**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.77
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.59*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.68***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -20***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -16.24***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -19.61***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -21.15***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.42***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.79***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -22.12***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -22.84***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -16.72***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -13.03***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -18.82***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive -4.93
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -8.63**
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive -6.24*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -8.1*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.98*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.85.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.06.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.42*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -12.08***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -13.22***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.87*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.56***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.74*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.83**
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.86.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.68**
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.32
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.44
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.92
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.47
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.74
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.11
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.44
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.16
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 0.96
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 4.65
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.14
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 12.75**
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 9.05*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 11.44**
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 9.58*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.66***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.53***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.74***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.1***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.6
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.46
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.81*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.12.
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.42***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.51***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.54***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.36***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.77
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.4
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.15
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.42
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.21
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.12
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -2.83
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 3.28
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 6.97.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 1.19
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 15.07***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 11.38**
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 13.76***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 11.9**
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.99***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.85***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.07***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.42***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.92*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.78.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.13***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.44**
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.74***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.83***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 25.86***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.68***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.37
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -4.92
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -5.18
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.55
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.89
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.6.
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.48
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 3.2
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.58
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 11.3**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 7.61*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 10**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.13*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.22***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.08***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.3***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.66***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.15
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.01
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.36*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.67
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.97***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.06***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.1***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.91***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.55
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.81
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.82
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.52
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -3.23
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.88
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 6.57.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 0.79
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 14.67***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 10.98**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 13.37***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 11.5**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.59***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.45***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.67***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.03***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.52*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.38.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.73**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.04*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.34***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.43***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 25.47***
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.28***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.27
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.36
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.97
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -1.68
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 4.43
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 8.12*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 2.34
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 16.22***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 12.53***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 14.92***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 13.05***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.14***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 27.22***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.58***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.07*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.93*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 13.28***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.59**
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.89***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.98***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.01***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 29.83***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.63
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.7
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -1.42
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 4.7
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 8.39*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 2.6
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 16.49***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 12.79***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 15.18***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 13.32***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.4***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.27***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 27.48***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.84***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.34*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.2*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 13.55***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.86**
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 28.16***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.25***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.28***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.1***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.33
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.05
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 1.07
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 4.76
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.03
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 12.86***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 9.16*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 11.55***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 9.69*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.77***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.64***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.85***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.21***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.71
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.57
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.92**
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.23*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.53***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.62***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.65***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.47***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -0.71
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 5.4
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 9.09*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 3.31
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 17.19***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 13.5***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 15.88***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 14.02***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 30.11***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.97***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.19***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.54***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.04**
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.9*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.25***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 11.56**
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 28.86***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.95***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.98***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.8***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 6.12
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 9.8*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 4.02
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 17.9***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 14.21***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 16.6***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 14.74***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 30.82***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 28.69***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.9***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.26***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.75**
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 9.61*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.97***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.27**
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 29.58***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 32.66***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 28.7***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.51***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 3.69
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.1
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 11.79**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 8.09*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 10.48**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.62*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.7***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.57***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.78***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.14***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.64
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.5
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.85*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.16.
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.46***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.55***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.58***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.4***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -5.78
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 8.1*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 4.41
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 6.79.
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 4.93
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.02***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 18.88***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.1***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 20.45***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.95
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.19
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.16
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.47
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.77***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 22.86***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.89***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.71***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 13.88***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 10.19**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 12.58***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 10.71**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.8***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.66***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.88***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.24***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.73.
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.59
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.94**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.25*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.55***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.64***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.68***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.49***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -3.69
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive -1.31
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -3.17
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.92***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.78**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.35**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.15.
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.29*
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.94
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.63
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.67**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.76***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.79**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.61***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.39
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.53
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.61***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 14.48***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.69***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 16.05***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.46
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.6
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.76
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.93
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 15.37***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 18.46***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 14.49***
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.31***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -1.86
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 14.22***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.09**
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.3***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.66***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.84.
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.98*
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.63
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.32
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.98***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.07***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.1**
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.92***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.08***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.95***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.17***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 15.52***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.98
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.12
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.23
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.46
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.84***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.93***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.96***
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.78***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.13
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.92
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.56
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -20.07***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -21.21***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -15.85***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -18.55***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.24
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.84
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.12
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.69
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.22
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.57
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -17.93***
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -19.07***
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.72***
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.41***
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.89
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.98
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.01
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.83
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.36
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -18.15***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -19.29***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.94***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.63***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.67
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.76
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.2
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.61
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -19.5***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -20.65***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -15.29***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -17.98***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.68
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.41
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.56
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.26
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.14
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.21
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.52
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.82***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.91***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 17.94***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.76***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.35
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.66
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.96***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.05***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.08***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.9***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.69
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.61***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.7***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.73***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.55***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 17.3***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 20.39***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.42***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 19.24***
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.09
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.88
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.94
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.97
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.15
## NameChinese:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.82
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE -3.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE -0.04
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 3.24
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.75
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -3.51
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.47.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.16
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -14.97***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -18.7***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -13.55***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -13.09**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -10.43***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -12.87**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -12.06***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -16.47***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -16.5***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -21.88***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -12.11***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -16.59***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -8.7**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.55**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -9.21**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -20.92***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 4.85
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.5
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 7.04*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.55
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.52
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 4.89
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -15.44***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -13.02*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -14.32***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -18.79***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -9.36*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -16.22**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -15.25***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -17.07***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -13.25***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -22.17***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.29***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -16.66**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -12.91***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -15.77**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -16.77***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -20.58***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -15.77***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -23.01***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -13.83***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -12.72**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.07**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.1.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -10.76**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -19.97***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -2.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.44
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.74
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -8.62.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -3.71
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.87
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -5.43
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.88
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.89***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.97*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.62*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.97.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.67*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.36.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.48*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.26**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.9**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.25**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.31
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.83
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.02
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.45.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.78.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.91**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.46.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.6***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.95**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.44.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.17*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.21**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.04**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 3.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 6.9
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 0.91
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 0.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.81
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 1.5
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -11.31**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -15.04***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -9.89*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -9.43*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -6.77.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -9.21*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -8.4*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -12.81**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -12.84**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -18.22***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -8.45*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -12.92**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -5.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -7.89.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -5.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -17.26***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 8.51*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 4.17
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 10.7**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 6.83
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 8.21*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 8.18*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.66
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 8.56.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -11.78*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -9.36.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -10.65*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -15.13**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -5.7
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -12.55*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -11.59*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -13.4**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -9.59*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -18.5***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -15.62***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -13*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -9.25*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -12.11*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -13.11**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -16.92**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.11*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -19.34***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -10.16*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.06.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.41
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.44
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.1
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -16.31**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.13
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.22
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.92
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -4.96
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.05
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.55***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.64**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.28*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.64*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.33**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.02*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.14**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 16.92**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.24
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.71
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.58
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.64
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.17
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.36
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.78
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.12
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.57**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.13*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.26***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.61***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.11*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 14.83**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.87**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.7***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 3.28
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -3.47
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.43.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.12
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -14.93***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -18.66***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -13.51***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -13.05**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -10.39***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -12.83**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -12.02***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -16.43***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -16.46***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -21.84***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -12.07***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -16.55***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -8.66**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.51**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -9.17**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -20.88***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 4.89.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 7.08*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.59
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.56
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.04
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 4.93
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -15.4***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -12.98*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -14.28***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -18.75***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -9.32*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -16.17**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -15.21***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -17.02***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -13.21***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -22.13***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.25***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -16.62**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -12.87***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -15.73**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -16.73***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -20.54***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -15.73***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -22.97***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -13.78***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -12.68**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.03**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.06.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -10.72**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -19.93***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -2.49
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.4
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.7
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -8.58.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -3.67
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -5.39
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.93***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.02*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.66*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.01.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.71*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.4.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.52*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.3**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.86**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.33
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.21**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.27
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.79
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.41.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.74
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.95**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.5.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.64***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.99**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.49.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.21*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.25**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.08**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -5.99
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -6.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -8.71*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.4
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -18.21***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -21.94***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -16.79***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -16.33***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -13.67***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -16.11***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -15.3***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -19.71***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -19.74***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -25.12***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -15.35***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -19.83***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -11.94**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -14.79**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -12.45**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -24.16***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -2.74
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 3.8
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.31
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.28
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -1.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 1.65
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -18.68***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -16.26**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -17.56***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -22.03***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -12.6**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -19.46***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -18.49***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -20.31***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -16.49***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -25.41***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -22.53***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.9***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -16.15***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -19.01***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -20.01***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -23.82***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -19.01***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -26.25***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -17.07***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -15.96**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.31**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.34*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -14**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -23.21***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -5.77
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -3.68
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -4.98
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -11.86*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.95
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -5.11
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.67.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -7.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.65*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.38
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.43
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.02.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -14.14**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.61.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -14.49**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.55*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.26
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.69*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -11.02*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.67.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.36*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.71*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.2
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.93
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.97
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.8*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.76
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.72
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 0.59
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -12.22***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -15.95***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -10.8***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -10.34*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -7.68*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -10.12*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -9.31**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -13.72***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -13.75***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -19.13***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -9.37**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -13.84***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -5.95*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.8*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -6.46*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -18.17***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 7.6*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 3.25
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 9.79**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 5.91
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 7.3*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 7.26.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.75
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 7.64.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -12.69**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -10.28.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -11.57***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -16.05**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -6.61.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -13.47**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -12.5**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -14.32**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -10.5**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -19.42***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -16.54***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -13.91**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -10.16**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -13.02*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -14.02***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -17.83***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -13.02***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.26***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -11.08**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.97*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.32.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.35
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.02*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -17.23**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.22
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.3
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.01
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -5.87
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.96
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.87
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.13
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.63***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.72*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.37**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.72*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.41**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.1*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.23**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 16.01**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.16*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.62
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.5*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.56
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.08
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.27
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.7
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.03
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.66***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.21*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.35***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.7***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.19*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.92*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.96***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.79***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.96
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 1.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -11.46**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -15.19***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -10.04*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -9.58*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -6.92.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -9.36*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -8.55*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -12.96**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -12.99**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -18.37***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -8.6*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -13.08**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -5.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.04.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -5.7
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -17.41***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 8.36*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 4.01
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 10.55**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 6.68
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 8.06*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 8.03.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.51
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 8.4.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -11.93*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -9.51.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -10.81*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -15.28**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -5.85
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -12.71*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -11.74*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -13.56**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -9.74*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -18.66***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -15.78***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -13.15*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -9.4*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -12.26*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -13.26**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -17.07**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.26**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -19.5***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -10.32*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.21.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.56
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.59
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.25
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -16.46**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.98
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.07
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.77
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -5.11
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.2
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.92
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.4***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.48**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.13*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.48*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.18**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.87**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.99**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 16.77**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.39
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.74.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.8
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.32
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.51
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.94
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.27
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.42**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.97*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.11***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.46***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.95*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 14.68**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.72**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.55***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 3.31
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -9.5***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -13.23***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -8.08**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -7.62.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -4.96.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -7.4.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -6.59*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -11**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -11.03***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -16.41***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -6.64*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -11.12**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -6.08
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.74
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -15.45***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 10.32***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 5.97
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 12.51***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 8.64*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 10.02***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 9.99*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 7.47*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 10.36*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -9.97*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -7.55
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -8.85**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -13.32**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.89
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -10.75*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -9.78**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -11.6*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -7.78*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -16.7***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -13.82***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -11.19*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -7.44*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -10.3*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -11.3**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -15.11**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.3**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -17.54***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.36*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.25
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.6
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -4.63
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.29
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -14.5**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.94
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.03
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.73
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -3.15
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.76
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.6
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.04
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.59
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 18.36***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.44**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 14.09***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 15.44**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 15.14***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.83**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.95***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 18.73***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.9
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.78
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.84
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.64
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.45
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.98
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.31
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 16.38***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.93**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 18.07***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 19.42***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.91***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.64**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.68***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.51***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -12.81**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -16.54***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -11.39**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -10.93**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -8.27*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -10.71*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -9.9*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -14.31***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -14.34***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -19.72***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -9.95*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -14.43***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -6.54.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.39*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -7.05.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -18.76***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 7.01.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.66
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 9.2*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 5.33
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 6.71.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 6.68.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.16
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 7.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -13.28**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -10.86.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -12.16**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -16.63**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -7.2
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.06**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -13.09**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -14.91**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -11.09*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -20.01***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -17.13***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -14.5**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -10.75*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -13.61**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -14.61**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -18.42***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -13.61**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.85***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -11.67*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -10.56*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.91
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.94
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.6.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -17.81**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.37
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.72
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.42
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.55
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.27
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.72
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.05***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.13*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.78*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.13*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.83*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.52*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.64*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 15.42**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.74.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.21
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.09*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.15
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.67
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.62
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.07**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.62*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.76**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.11**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.6*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.33*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.37**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.2**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.73
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 1.42
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE 1.88
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 4.54
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.1
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.91
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.5
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -1.53
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -6.91.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 2.86
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -1.62
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 6.27*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 3.42
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 5.76.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.95
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 19.82***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 15.48***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 22.01***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 18.14***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 19.52***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 19.49***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 16.97***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 19.87***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.47
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.95
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.66
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.82
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.61
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.24
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.28
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.72
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -7.19
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.31
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.69
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.06
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.61
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.15
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.25
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.9.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.87
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.44**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.53**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.23***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.35
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.26**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.1**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.54*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.1*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.86***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.95***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.59***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.95***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.64***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.33***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.45***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.23***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.07
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 8.6.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.73
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.66
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.14**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.95.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.53*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.19
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.88***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.44***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.57***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.92***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.42***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.14***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.18***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.01***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 5.15
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE 5.61
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 8.27*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 5.83
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 6.64.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.23
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE 2.2
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -3.18
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 6.58.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE 2.11
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 10*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 7.15
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 9.49*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -2.22
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 23.55***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 19.2***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 25.74***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 21.86***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 23.25***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 23.21***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 20.7***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 23.59***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.26
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 5.67
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 4.38
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.1
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.34*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.48
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.45
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.63
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.45
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.47
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.59
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.04
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.79
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.93
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.93
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.88
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 2.93
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.87
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 5.98
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 9.63*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 8.6
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 7.93.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.28
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.17***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 18.25**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 16.96***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.08*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.99***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 16.82***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.27**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 14.82**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 31.58***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.67***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.32***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 28.67***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.36***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.06***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.18***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 31.96***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.79.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 12.33*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.45
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.39*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.87***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 13.68*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.25**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.92*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 29.61***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 28.16***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.3***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 32.65***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.14***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 29.87***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.91***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 33.74***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.46
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 3.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.68
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.49
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.92
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -2.95
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -8.33*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 1.44
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -3.04
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 4.85.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 2
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 4.34
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -7.37.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 18.4***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 14.05***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 20.59***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 16.72***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 18.1***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 18.07***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 15.55***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 18.44***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.89
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.53
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.77
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.24
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.19
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.67
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.7
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.3
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -8.62.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -5.74
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.11
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.64
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.03
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.46.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.28
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.83
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.48
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.45
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.79
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.42
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.02**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.11*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.81**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.93
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.84**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.68**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.12*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.67.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.44***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.52***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.17***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.52***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.22***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.91***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.03***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.81***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.65
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.18
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.3
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.24
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.72**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.53
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.1.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.77
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.46***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.01***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.15***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.5***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.99***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.72***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.76***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.59***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.66
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.03
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -3.38
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -3.41
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -8.79*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 0.98
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -3.5
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 4.39
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 1.54
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 3.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -7.83.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 17.94***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 13.59**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 20.13***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 16.25***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 17.64***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 17.61***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 15.09***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 17.98***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.35
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.07
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.23
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.71
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.73
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.13
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.16
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.98
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.16
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -9.08.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.2
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.57
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.18
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.68
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.68
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.49
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.68
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.92.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.74
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.37
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.02
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.99
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.33
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.56*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.64*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.35*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.47
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.38*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.21*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.66
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.21
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.97***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.06***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.71***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.06***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.75***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.45***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.57***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.35***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.19
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.72
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.84
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.78
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.26*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.07
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.64
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.31
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.55***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.69***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.04***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.53***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.26***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.3***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.13***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -2.44
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.63
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -6.04
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.07*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.45**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -1.68
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.16
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 1.73
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -1.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 1.22
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -10.49**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 15.28***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 10.93**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 17.47***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 13.59***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 14.98***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 14.95***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 12.43***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 15.32***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -5.01
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.59
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.89
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -8.37.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.07
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -5.79
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.82
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.64
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.82
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -11.74*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -8.86*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.23
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.48
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -5.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -6.34.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -10.15*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.58*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.4
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.36
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.33
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.33
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -9.54.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.9*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.98.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.69*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.81
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.72.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.55.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.55
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.31***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 20.4***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.05***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.4***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 20.09***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.79***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 18.91***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.69***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.47
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.06
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.82
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.6.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.41
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.98
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.65
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.34***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.89***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.03***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.38***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 17.87***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 21.6***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 19.64***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.47***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.81
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -3.6
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -3.63
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.01*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 0.76
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -3.72
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 4.17
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 1.32
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 3.66
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.05.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 17.72***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 13.37**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 19.91***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 16.04***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 17.42***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 17.39***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 14.87***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 17.76***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.57
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.15
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.45
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.92
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.51
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.34
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.38
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.19
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.38
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -9.3.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.42
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.79
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.04
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.9
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.9
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.71
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.9
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.14.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.95
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.15
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.8
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.77
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.11
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.34*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.43*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.13*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.25
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.16*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.44
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.76***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.85***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.49***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.84***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.54***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.23***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.35***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.13***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.97
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.5
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.62
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.56
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.04*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.85
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.42
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.09
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.78***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.33***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.47***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.82***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.32***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.04***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.08***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.91***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -4.41
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -4.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.82*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -0.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -4.53
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 3.36
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 0.51
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 2.85
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.86*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 16.91***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 12.56**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 19.1***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 15.22***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 16.61***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 16.58***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 14.06***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 16.95***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.38
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.96
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.26
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -6.74
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.7
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -4.16
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.01
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -10.11*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.23.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.6
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.85
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.71
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.71
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -8.52
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.71
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.95*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.77
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.66
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.99
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.96
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.3
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.91
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.53*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.62*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.32**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.35*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.18*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.63.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.18
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.94***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.03***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.68***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.03***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.72***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.42***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 20.54***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.32***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.16
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.69
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.81
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.75
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.23*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.04
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.61
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.28
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.97***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.52***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.66***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.01***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.5***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.23***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.27***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.1***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -0.03
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -5.41
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 4.36
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -0.12
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 7.77.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 4.92
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 7.26.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.45
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 21.32***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 16.97***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 23.51***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 19.64***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 21.02***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 20.99***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 18.47***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 21.36***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.03
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.45
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.15
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.32
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.11
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.25
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.22
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.59
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.22
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -5.7
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.82
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.19
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.56
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.7
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.3
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.11
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.7
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.54
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.65
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.75
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.4.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.37
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.71
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.5
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.94**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.03**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.73**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.85
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.76**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.6**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.04*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.6*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.36***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.45***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.09***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.44***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.14***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.83***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.95***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.73***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.57
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.1*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.22
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.16
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.64**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.45*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.02*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.69.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.38***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.93***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.07***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.42***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.91***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.64***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.68***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.51***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -5.38
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 4.39
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -0.09
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 7.8**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 4.95
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 7.29*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.42
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 21.35***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 17***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 23.54***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 19.66***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 21.05***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 21.02***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 18.5***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 21.39***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.06
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.48
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.18
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.3
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.14.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.28
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.25
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.57
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.25
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -5.67
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.79
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.16
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.59
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.73
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.27
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.08
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.73
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.51
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.67
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.78
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.43*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.4
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.74
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.47
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.97***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.05**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.76***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.88
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.79***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.62**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.07**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.62*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.38***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.47***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.12***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.47***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.16***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.86***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.98***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.76***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.6
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.13*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.25
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.19
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.67***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.48*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.05*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.72.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.41***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.96***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.1***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.45***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.94***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.67***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.71***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.54***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 9.77*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE 5.29
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 13.18***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 10.33*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 12.67**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 0.96
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 26.73***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 22.38***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 28.92***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 25.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 26.43***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 26.4***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 23.88***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 26.77***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.44
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 8.86
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 7.56.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 3.09
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 12.52**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.66
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 6.63
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.82
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.63.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.29
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.59
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.22
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.97*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.11
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.11
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.3
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 6.11
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.13
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.05.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 9.16.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 12.81**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 11.78*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 11.12*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.91
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 19.35***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 21.44***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 20.14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.26**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 18.17***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 20.01***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 16.45***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 18**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 34.77***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 31.85***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 30.5***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 31.85***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 31.55***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 31.24***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.36***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 35.14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.98*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 15.51***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.63*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 13.57*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 18.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 16.86**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 15.43**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 14.1**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 32.79***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 31.34***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 34.48***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 35.83***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 29.32***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 33.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.09***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 36.92***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -4.47
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 3.42
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 0.56
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 2.9
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.81*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 16.96***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 12.62**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 19.16***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 15.28***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 16.66***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 16.63***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 14.12***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 17.01***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.33
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.91
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.2
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -6.68
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.75
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -4.1
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.14
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.95
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.14
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -10.05*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.17.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.54
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.8
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.66
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.66
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -8.47
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.66
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.89*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.71
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.61
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.04
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.01
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.35
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.86
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.58*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.67*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.37**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.49
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.4*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.24*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.68.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.24
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.09***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.73***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.09***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.78***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.47***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 20.59***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.37***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.21
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.74
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.87
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.81
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.28*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.09
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.67
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.33
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.02***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.58***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.71***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.06***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.56***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.28***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.32***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.15***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 7.89*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE 5.04
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 7.38.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.33
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 21.44***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 17.09***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 23.63***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 19.75***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 21.14***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 21.1***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 18.59***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 21.48***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.15
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.56
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.27
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.21
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.23
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.37
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.34
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.48
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.34
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -5.58
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.7
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.07
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.67
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.81
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.19
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.99
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.82
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.42
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.76
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.87
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.52.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.49
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.82
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.39
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.06**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.14**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.85**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.97
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.88**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.71**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.15*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.71*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.47***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.56***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.2***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.56***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.25***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.94***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.07***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.85***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.68
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.22*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.34
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.28.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.76**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.57*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.14*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.81.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.5***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.05***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.19***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.54***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.03***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.76***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.8***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.63***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -2.85
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.51
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -12.22**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 13.54***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 9.2*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 15.74***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 11.86**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 13.25***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 13.21***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 10.7***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 13.59**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -6.75.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -4.33
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.62.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -10.1*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.66
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -7.52
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.55.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -8.37.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -4.55
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -13.47**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -10.59**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.96
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.22
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -7.08
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -8.08*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -11.88*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.07.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -14.31**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -5.13
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.02
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.37
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.4
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.07
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -11.28*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.17.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.25
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.96*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.08
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.99
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.82
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.26
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.82
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.58***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 18.67***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 17.31***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 18.67***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.36***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.05***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.17***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.96***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.21
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.33
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.55
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.39
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.87
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.68
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.25
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.91
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.61***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.16***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.3***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 22.65***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.14***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.87***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.91***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.74***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 2.34
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.37*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 16.4***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 12.05**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 18.59***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 14.72***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 16.1***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 16.07***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 13.55**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 16.44***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.89
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.47
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.77
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -7.24
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.19
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -4.67
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.7
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.52
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.7
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -10.62*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.74
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -5.11
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.36
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.22
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.22
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -9.03.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.22
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.46*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.28
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.17
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.48
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.45
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.79
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.42
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.02.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.11.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.81*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.93
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.84.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.68*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.12
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.67
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.44***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.52***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.17***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.52***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 21.22***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 20.91***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 20.03***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.81***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.65
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.18
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.3
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.24
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.72.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.53
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.1
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.77
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.46***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.01***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.15***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.5***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.99***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.72***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.76***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.59***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -11.71**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 14.06***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 9.71*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 16.25***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 12.38**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 13.76***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 13.73***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 11.21***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 14.1***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -6.23
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.81
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.11
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -9.58.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.15
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -7.01
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.04
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -7.86
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -4.04
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -12.96**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -10.08**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.45
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.7
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -6.56
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.56*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -11.37*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.56.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -13.8**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.62
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.51
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.14
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.55
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -10.76*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.68.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.77
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.47*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.59
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.5
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.34
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.78
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.33
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.1***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 19.18***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 17.83***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.18***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.88***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.57***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.69***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.47***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.69
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.84
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.04
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.9
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.38
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.19
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.76
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.43
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.12***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.67***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.81***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.16***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.65***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.38***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.42***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.25***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 25.77***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 21.42***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 27.96***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 24.09***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 25.47***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 25.44***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 22.92***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 25.81***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 5.48
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.9
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.6
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.13
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 11.56*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.7
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.67
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.85
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.67.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.25
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.63
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.26
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.01.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.15
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 4.15
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.34
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 5.15
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.09
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.09
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.2
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 11.85**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.82.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 10.16*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.95
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 18.39***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 20.48***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 19.18***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 12.3*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 17.21***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 19.05***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 15.49***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 17.04**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 33.81***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 30.89***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 29.54***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 30.89***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 30.59***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 30.28***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.4***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 34.18***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.02*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 14.55**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 9.67*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 12.61*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 17.09***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 15.9**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 14.47**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 13.14**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 31.83***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 30.38***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 33.52***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 34.87***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 28.36***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 32.09***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.13***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 35.96***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -4.34
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 2.19
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -1.68
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.33
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -2.85
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.05
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -20.29***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.87**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -19.16***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -23.64***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.21***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -21.06***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -20.1***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -21.91***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -18.1***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -27.01***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -24.13***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.51***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.76***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -20.62***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.62***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -25.43***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.62***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -27.85***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -18.67***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -17.57***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.92***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -14.95**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -15.61***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -24.82***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -7.38*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -5.29
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.59.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -13.47**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -8.56*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.72
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -10.28**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.72
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.04*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.13
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.77
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.13
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.82
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.51
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.63
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.41.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -15.75***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -11.22*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -16.09***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -13.16*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.68*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -9.87.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -11.29**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.63**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.06.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.62
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.75*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.1.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.32
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.36
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.19*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 6.54
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 2.66
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.04
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.01
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.5
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 4.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -15.95**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -13.53*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -14.82**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -19.3***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -9.86*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -16.72**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -15.75**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -17.57***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -13.75**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -22.67***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.79***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -17.16**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -13.42**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -16.28**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -17.28***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.08***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -16.28***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -23.51***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -14.33**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -13.22**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.58*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.61.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -11.27*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -20.48***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -3.03
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.95
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.25
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -9.12.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -4.21
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -2.38
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -5.94
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -4.38
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.38**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.47.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.11.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.47
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.16.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.85.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.97.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.75*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -11.41*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.87
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.75*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.81
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.33
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.52
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.95
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.29.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.4*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.96.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.1**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.45*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.94
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.67.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.71.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.54**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -3.88
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -2.49
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -2.53
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -5.04.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.15
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -22.48***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -20.07***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -21.36***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -25.84***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -16.4***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -23.26***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -22.29***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -24.11***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -20.29***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -29.21***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -26.33***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -23.7***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -19.96***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -22.81***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -23.81***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -27.62***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -22.81***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -30.05***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -20.87***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -19.76***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -16.11***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -17.14**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -17.81***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -27.02***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -9.57*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -7.49
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -8.78*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -15.66**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -10.75**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -8.92*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -12.48**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -10.92*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.84.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.93
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.58
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.93
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.62
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.31
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.44
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.22
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -17.95***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -13.41**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -18.29***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -15.35**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -10.87**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -12.06*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -13.49***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -14.82**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.87
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.42
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.56
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.91
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.4
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.17
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.38
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.35
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -1.16
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 1.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -18.61***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -16.19**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -17.48***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -21.96***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -12.53**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -19.38***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -18.42***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -20.23***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -16.41***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -25.33***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -22.45***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -19.82***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -16.08***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -18.94***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -19.94***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -23.75***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -18.94***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -26.17***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -16.99***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -15.89**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.24**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.27*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -13.93**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -23.14***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -5.7
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -3.61
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -4.91
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -11.78*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.88
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -5.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.6.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -7.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.72*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.81
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.45
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.81
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.5
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.31
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.09*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -14.07**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.54.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -14.41**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.47*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.99
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.61*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.95*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.74.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.3
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.43*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.78*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.28
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.01
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.87*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.03
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -2.55
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -19.99***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.57**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -18.87***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -23.34***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -13.91***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -20.76***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -19.8***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -21.61***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -17.8***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -26.71***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -23.84***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.21***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.46***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -20.32***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.32***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -25.13***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.32***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -27.56***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -18.37***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -17.27***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.62***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -14.65**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -15.31***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -24.52***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -7.08.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -4.99
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.29.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -13.17**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -8.26*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.42
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -9.98*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.42
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.34*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.43
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.07
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.43
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.81
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.93
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.71.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -15.45***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.92*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -15.8***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -12.86*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.38*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -9.57.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -11**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.33**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.36.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.92
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.05*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.4.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.9
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.62
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.66
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.49*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -2.52
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.38
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -19.96***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.54**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -18.83***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -23.31***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -13.88**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -20.73***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -19.77***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -21.58***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -17.77***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -26.68***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -23.8***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.18***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.43***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -20.29***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.29***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -25.1***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.29***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -27.52***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -18.34***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -17.24***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.59**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -14.62**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -15.28***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -24.49***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -7.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -4.96
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.26
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -13.14*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -8.23.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.39
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -9.95*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.39
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.37.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.46
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.1
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.46
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.15
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.84
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.96
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.74.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -15.42***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.89*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -15.76***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -12.82*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.35.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -9.54.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.96*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.3*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.39
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.95
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.08.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.43.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.93
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.65
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.69
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.52*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.89
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.44***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -15.02**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -16.32***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -20.8***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -11.36**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -18.22***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -17.25***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -19.07***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -15.25***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -24.17***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.29***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -18.66***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -14.91***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.77***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -18.77***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -22.58***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -17.77***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -25.01***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -15.83***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -14.72**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.07**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.1*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -12.76***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -21.97***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -4.53
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -2.45
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -3.74
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -10.62*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -5.71
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -3.88
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -7.43*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -5.88
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.88**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.97
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.62.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.97
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.66*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.36
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.48.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.26*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -12.9***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.37.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -13.25***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.31*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.83.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.02
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.45*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.78*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.91*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.46
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.6**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.95*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.44
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.17.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.21*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.04*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -20.34***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -17.92**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -19.21***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -23.69***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -14.25**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -21.11***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -20.14***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -21.96***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -18.14***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -27.06***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -24.18***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -21.55***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -17.81***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -20.67***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -21.67***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -25.47***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -20.67***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -27.9***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -18.72***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -17.61***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.96**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -15**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -15.66***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -24.87***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -7.42
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -5.34
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.64
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -13.51*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -8.6.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -6.77
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -10.33*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -8.77
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.99.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.08
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.72
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.08
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.77
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.46
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.58
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.36
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -15.8***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -11.26*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -16.14***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -13.2*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -8.72.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -9.91.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -11.34*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.68*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.02
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.57
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.71
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.06.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.55
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.28
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.32
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.15.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.42
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.35
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.08
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.77
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.19
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.19
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -6.72
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.84
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.14
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.72
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.34
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.68
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.91**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 15*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.7**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.82
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.73**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.57**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.01*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.57.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.33***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.42***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.06***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.42***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.11***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.8***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.92***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.7***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.54
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.07.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.2
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.61**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.42.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.35***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.91***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.04***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.39***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.89***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.61***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.65***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.48***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.29
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -5.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.66
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.19
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.04
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -9.14
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.26
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.63
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.8
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.95
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.92
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.26
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.95
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.49.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.58.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.28.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.4
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.31
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.15.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.59
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.91***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.64***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.69***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.38***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.5***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.28***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.12
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.65
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.78
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.72
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.19
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.58
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.24
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.93***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.49***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.62***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.97***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.47***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.19***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.23***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.06***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -4.48
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.96
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.9
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.93
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.75
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.07
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -7.85
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.97
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.34
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.4
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.46
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.46
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -6.26
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.46
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.69
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.49
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.6
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.55
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.66
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.79**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.87*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 12.57**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.7
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.61**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.44**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.88*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.44.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.2***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 24.29***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.93***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.29***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.98***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.67***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.79***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.57***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.41
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.95
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.07
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.01
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.49**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.3
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.87.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.53
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.23***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.78***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.92***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.27***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 21.76***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 25.49***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.53***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 29.36***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.43.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.58
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.54
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.55
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.37
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.49
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.14
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.88
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.79
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 3.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.21
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.97
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 9.72.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 8.69
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.03
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.18
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.26**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 18.35**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 17.05**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.18.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 15.08**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 16.92**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.36*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 14.92*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 31.68***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.77***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.41***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 28.77***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.46***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.15***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.27***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 32.05***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.89
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 12.42*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.55
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.49.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.97**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 13.78*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.35*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 11.01*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 29.7***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 28.26***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.39***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 32.75***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.24***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 29.97***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 33.83***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -6.86
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.89
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -7.7
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.89
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -12.81*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -9.93*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -7.3
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.55
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -6.41
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.41.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -11.22*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.41
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -13.65*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.47
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.36
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.29
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.74
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.4
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -10.61.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.83
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.92
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.62.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.74
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.65
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.93
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.25***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 19.34***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 17.98***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.33**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.03***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.72***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.84***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.62***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.54
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.99
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.89
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.05
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.53
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.34
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.91
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.58
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.27***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.82***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.96***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.31***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.8***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.53***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.57***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.4***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.97
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.85
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.97
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -5.95
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.07
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.3
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.56
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.36
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.79
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.39
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.5
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.11
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.45
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.76
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.69*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 15.77*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.47**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.6
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.51*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.34*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.78.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.34.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.1***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.19***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.83***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.19***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.88***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.57***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.69***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.47***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.31
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.85.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.97
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.91
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.39*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.2.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.77.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.43
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.12***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.68***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.82***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.17***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.66***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.39***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.43***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.26***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.81
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -6.92
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -4.04
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.34
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -5.33
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.76
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.53
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.18
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.15
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.49
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.72
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.72**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.81*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.51**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.63
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.54**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.38**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.82*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.38.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.14***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.23***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.87***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.22***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.92***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 24.61***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.73***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.51***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.35
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 8.88.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.94
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.42**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.23.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.8.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.47
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.16***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.71***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.85***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.2***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.69***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.42***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.46***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.29***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.82
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -5.1
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.22
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 4.15
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.51
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 1.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.94
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.24
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.34
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.99
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.96
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 6.3
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.91
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.53**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.62**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 15.32**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.45
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.35*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 15.19**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.63*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.19*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.95***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 27.04***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.68***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.04***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.73***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.42***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.54***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.32***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.16
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.69.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.82
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.76
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 13.24*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.05.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.62.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.28
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.97***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.53***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.66***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.02***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.51***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 28.24***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.28***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 32.1***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -8.92.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -6.04
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.41
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.34
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.52
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.52
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.33
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.52
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.76.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.58
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.53
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.15
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.49
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.72
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.72*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.8*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.51**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.63
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.54*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.37*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.82.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.37
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.13***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.22***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.87***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.22***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.91***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.61***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.73***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.51***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.35
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.88
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.94
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.42*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.23
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.47
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.16***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.71***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.85***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.2***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.69***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.42***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.46***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.29***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.88
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.51
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 9.25.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.39
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.39
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.59
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 6.39
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.84
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.34
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 9.45.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 13.09*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 12.06.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 11.4*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.19
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 19.64***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 21.72***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 20.42***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.55*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 18.46***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 20.29***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 16.73**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 18.29**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 35.05***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 32.14***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 30.78***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 32.14***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 31.83***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 31.52***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.64***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 35.42***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 11.26*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 15.8**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.92*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 13.86*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 18.34***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 17.15**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 15.72**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 14.38*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 33.07***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 31.63***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 34.77***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 36.12***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 29.61***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 33.34***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.38***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 37.21***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.63
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.37
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.29
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 3.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.72
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 5.46
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.57
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.22*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 9.19
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.52*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.69
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.76***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 18.84**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 17.55***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.67*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 15.58***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 17.41***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.85**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 15.41**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 32.17***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.26***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 27.9***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 29.26***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.95***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 28.64***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.76***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 32.55***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 8.38*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 12.92*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.04.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.98*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 15.46***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.27*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.84**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 11.5*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 30.2***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 28.75***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 31.89***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 33.24***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.73***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 30.46***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.5***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 34.33***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.75
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.89
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.11
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.92
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.89
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.35
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.83
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.94
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.59
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.56
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.9
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.31
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.13*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.21*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.92**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.04
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.95*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.78**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.23*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.78*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.54***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.63***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.28***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.63***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.32***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.02***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.14***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.92***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.76
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.29.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.41
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.35
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.83*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.64.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.21.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.57***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.12***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.26***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.61***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.1***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.83***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.87***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.7***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.86
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.86
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -7.67
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.86
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.09.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.91
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.19
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.84
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.81
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.15
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.06
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.38*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.47*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.17**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.2*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.04*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.48.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.04
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.8***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.89***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.53***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.89***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.58***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.27***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.39***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 26.17***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.01
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.54
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.67
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.61
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.08*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.89
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.47
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.13
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.82***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.38***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.51***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.86***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.36***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.08***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.12***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.95***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.81
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.23
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.95
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.05
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.7
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.67
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.01
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.2
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.24*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 15.33*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.03*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.15
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.06*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.9*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.34.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.9.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.66***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.75***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.39***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.75***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.44***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.13***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.25***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.03***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.4.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.53
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.94*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.75.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.33.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.99
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.68***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.24***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.37***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.72***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.22***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.94***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.98***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.81***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.81
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 1
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.23
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.95
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.7.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.67
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 6.01
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.2
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.24**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 16.33**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 15.03***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.15
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.06**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.9**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.34*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.9*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.66***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.75***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.39***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 26.75***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.44***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 26.13***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.25***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 30.03***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.87
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 10.4*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.53
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.46
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.94**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.75*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 10.33*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.99.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 27.68***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.24***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.37***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 30.72***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 24.22***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.94***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.98***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 31.81***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 4.81
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.43
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.75
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.86
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 11.51*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.48.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 9.82.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.61
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 18.05**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 20.14**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 18.84***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.96.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 16.87**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 18.71***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 15.15**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 16.7*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 33.47***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 30.55***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 29.2***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 30.55***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 30.25***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 29.94***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.06***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 33.84***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.68.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 14.21*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 9.33.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 12.27*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 16.75**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 15.56*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 14.13*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.8*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 31.49***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 30.04***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 33.18***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 34.53***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 28.02***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 31.75***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 29.79***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 35.62***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.23
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.95
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.05
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.7
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.67
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.01
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.2
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.24**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 15.33*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.03**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.15
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.06**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.9**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.34*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.9*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 28.66***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.75***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 24.39***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 25.75***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.44***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 25.13***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.25***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 29.03***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.87
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.4.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.53
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.46
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.94**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.75.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.33*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.99
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 26.68***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 25.24***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 28.37***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 29.72***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.22***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 26.94***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.98***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 30.81***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 9.18
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 10.29.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 13.93*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 12.9*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 12.24*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.03
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 20.48***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 22.56***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 21.26***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 14.39*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 19.3***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 21.13***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 17.57**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 19.13**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 35.89***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 32.98***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 31.62***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 32.98***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 32.67***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 32.36***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 31.48***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 36.26***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 12.1*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 16.64**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 11.76*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 14.7*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 19.18***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 17.99**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 16.56**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 15.22*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 33.92***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 32.47***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 35.61***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 36.96***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 30.45***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 34.18***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 32.22***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 38.05***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.11
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.75
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.72
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.06
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.15
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.3**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.38*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 12.08**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.21
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.12*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.95*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.39.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.95.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 26.71***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.8***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.44***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 23.8***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.49***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 23.18***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.3***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 27.08***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.92
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.46
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.58
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.52
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.81
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.38.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.04
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 24.73***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.29***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.43***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 27.78***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 21.27***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 25***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.04***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 28.87***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.65
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.62
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.96
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.25
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.19.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.28.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.98*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.1
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.01.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.85*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.29
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.84
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 25.61***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.69***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 21.34***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 22.69***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.39***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 22.08***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.2***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 25.98***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.82
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.35
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.47
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.41
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.89.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.7
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.27
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.94
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 23.63***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.18***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.32***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 26.67***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.16***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 23.89***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.93***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 27.76***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.03
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.69
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -10.9.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.54
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.63
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.33.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.45
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.36
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.2
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.64
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.2
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.96***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 19.05***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 17.69***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.05**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.74***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.43***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.55***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 22.33***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.83
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.7
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.17
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.76
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.24
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.62
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.29
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.98***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.54***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.67***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.02***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.52***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 20.24***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.28***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 24.11***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.66
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -9.87
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.57
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.66
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.36
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.48
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.39
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.23
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.67
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.23
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 22.99***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 20.08***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 18.72**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.08**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.77***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 19.46**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 18.58**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 23.36***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.8
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.73
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.79
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.27
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.08
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.65
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.32
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.01***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.57**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 22.7***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.05***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 17.55**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 21.27**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 19.31***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.14***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -9.21
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.23.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.32.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.02*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.14
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.05.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.89.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.33
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 23.65***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 20.74***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 19.38***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 20.74***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 20.43***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 20.12***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 19.24***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 24.02***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.14
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.39
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.48
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.46
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.93.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.74
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.32
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.98
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.67***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.23***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.36***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.71***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.21***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 21.93***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 19.97***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.8***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 17.44**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 19.53**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 18.23**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.35.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 16.26**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 18.1**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 14.54*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 16.1*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 32.86***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 29.95***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 28.59***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 29.95***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 29.64***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 29.33***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 28.45***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 33.23***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.07
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 13.6*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.73
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 11.67.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 16.14**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 14.95*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 13.53*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 12.19*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 30.88***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 29.44***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 32.57***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 33.92***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 27.42***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 31.14***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 29.18***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 35.01***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.09
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.79
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.09
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.18
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.66
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.9
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.34
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.42***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.5*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.15*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.5*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.2**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.89*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.01**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 15.79**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.37.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.84
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.72*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.78
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.49
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.92
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.25
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.44**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.99*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.13***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.48**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.97*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.7*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.74**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.57**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.3
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -8.18
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -3.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.43
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -4.99
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.43
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.33*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.42
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.06
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.42
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.11.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.8
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.92
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.7*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.46.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.93
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.8.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.86
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.58
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.34
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.35.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.91
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.04*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.39*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.89
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.61.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.65.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.48*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -6.88
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.97
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.69
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 14.63***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.72*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.36*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.72*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.41**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.1*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.22*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 15**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.16*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.63
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.5*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.57
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.09
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.28
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.71
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.04
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.65**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.21*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.34***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.69**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.19*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.91*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.95**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.78**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.91
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.74
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.74
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 21.51***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 18.59**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 17.24**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 18.59**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 18.28***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 17.98**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.1**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 21.88***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.28
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.25
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.63
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.31
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.79
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.6
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.17
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.84
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.53***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.08**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.22***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 22.57***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.06**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.79**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.83***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.66***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.84
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.72
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.16
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.6***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.69**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.33**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.68*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.38**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.07*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.19**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 16.97**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.19.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.66
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.54.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.6
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.31
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.74
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.07
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.62***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.17*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.31***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.66***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.15*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 14.88*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.92**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.75***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.56
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 14.76**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.85*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.49*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.85*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.54*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.23*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.35*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 15.13**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.03.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.5
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.37.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.43
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.95
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.14
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.57
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.91
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.78**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.34*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.47**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.83**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.32.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.05*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.08*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.91**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.56
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 18.32***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 15.41**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 14.05**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 15.41*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 15.1***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.79**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.91**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 18.69***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.47
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.94
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.81
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.6
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.41
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.01
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.35
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 16.34***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.9**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 18.03***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 19.38***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.88**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.6**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.64***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.47***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 16.76**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.85*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.49*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.85*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.54*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.23*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.35*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 17.13**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.03
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.49
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.37
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.43
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.05
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.57
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.91
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.78*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.34*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.47**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.83**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.32.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 15.05*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.09*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.91**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -2.91
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -4.27
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.91
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -3.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -3.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -4.41
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -23.79***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -19.26***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -24.13***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -21.19***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -16.72***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -17.91**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -19.33***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -20.67***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.98
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -3.42
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.29
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.06
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.44
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.71
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -3.68
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.36
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.5
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.28
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -20.88***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -16.34**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -21.22***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -18.28**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.8**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -14.99*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.42**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -17.76**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.93
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.2
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.76
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.06
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.36
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.74
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.14
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.64
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -19.52***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -14.99**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -19.86***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -16.93**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -12.45**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.64*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -15.06**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.4**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.29
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.85
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.33
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.17
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.55
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.59
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.42
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.62
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.5
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.28
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -20.88***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -16.34**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -21.22***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -18.28**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.8*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -14.99*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.42**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -17.76**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.93
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.51
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.63
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.98
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.53
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.2
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.76
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.07
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.19
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.59
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -20.57***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -16.04**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -20.91***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -17.97**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.49**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -14.68*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.11***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -17.45**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.24
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.2
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.93
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.29
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.22
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.51
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.46
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.88
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.9
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -20.26***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -15.73**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -20.6***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -17.66**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.19*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -14.38*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -15.8**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -17.14**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.55
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.11
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.24
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.59
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.91
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.81
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.15
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.68
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.78
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -19.38***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -14.85**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -19.72***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -16.79**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -12.31**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -13.5*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -14.92***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -16.26**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.99
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.12
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.47
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.03
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.69
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.73
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.56
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -24.16***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -19.63***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -24.5***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -21.57***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -17.09**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -18.28**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -19.71***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -21.04***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial -2.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -3.79
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.66
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.69
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.81
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.09
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -4.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.78
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.53
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.34
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.6
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.07.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.88
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.46
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.12
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 21.81***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.37***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.5***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 24.85***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.35***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.07***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.11***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 25.94***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.88
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.94
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.54
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.35
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.08
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.41
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 17.28***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 15.83**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 18.97***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 20.32***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.81*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 17.54**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.58**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.41***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.94
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.42.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.23
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.8
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.46
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 22.16***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 20.71***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 23.85***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 25.2***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.69***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 22.42***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.46***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 26.29***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.48
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.29
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.86
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.53
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 19.22***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 17.77**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 20.91***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 22.26***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 15.75**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 19.48**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 17.52**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 23.35***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.19
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.62
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.95
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.74***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.29*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.43***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.78***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.27**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 15**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.04***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 18.87***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.43
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.76
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 15.93**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.48*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 17.62**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 18.97**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.46*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 16.19*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.23*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 20.06**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.34
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 17.36***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 15.91**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 19.05***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 20.4***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.89**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 17.62**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.66***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 21.49***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 18.69***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 17.25**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 20.38***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 21.73***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 15.23**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 18.95**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.99***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 22.82***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.44
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.69
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.04
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.46
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.26
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.7
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.13
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.14
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.49
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.02
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.71
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.25
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.58
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.35
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.16
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -3.39
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.44
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -6.51
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.78
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -4.74
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.09
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.73
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.77
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.6
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.96
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.83
## CatchCovid
## RespWhite - RespChinese NA
## NameWhite - NameBlack NA
## NameWhite - NameChinese NA
## NameWhite - NameIndian NA
## NameBlack - NameChinese NA
## NameBlack - NameIndian NA
## NameChinese - NameIndian NA
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Producthardwaresupplies - V_Productcigarettes -5.82***
## V_Producthardwaresupplies - V_Productbabyformula 1.18*
## V_Producttoiletpaper - V_Productcigarettes NA
## V_Producttoiletpaper - V_Productbabyformula NA
## V_Productcigarettes - V_Productbabyformula 7***
## V_presentation3NONE - V_presentation3Defensive 1.03*
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## RespWhite:NameWhite - RespChinese:NameWhite NA
## RespWhite:NameWhite - RespWhite:NameBlack NA
## RespWhite:NameWhite - RespChinese:NameBlack NA
## RespWhite:NameWhite - RespWhite:NameChinese NA
## RespWhite:NameWhite - RespChinese:NameChinese NA
## RespWhite:NameWhite - RespWhite:NameIndian NA
## RespWhite:NameWhite - RespChinese:NameIndian NA
## RespChinese:NameWhite - RespWhite:NameBlack NA
## RespChinese:NameWhite - RespChinese:NameBlack NA
## RespChinese:NameWhite - RespWhite:NameChinese NA
## RespChinese:NameWhite - RespChinese:NameChinese NA
## RespChinese:NameWhite - RespWhite:NameIndian NA
## RespChinese:NameWhite - RespChinese:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameBlack NA
## RespWhite:NameBlack - RespWhite:NameChinese NA
## RespWhite:NameBlack - RespChinese:NameChinese NA
## RespWhite:NameBlack - RespWhite:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameIndian NA
## RespChinese:NameBlack - RespWhite:NameChinese NA
## RespChinese:NameBlack - RespChinese:NameChinese NA
## RespChinese:NameBlack - RespWhite:NameIndian NA
## RespChinese:NameBlack - RespChinese:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameChinese NA
## RespWhite:NameChinese - RespWhite:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameIndian NA
## RespChinese:NameChinese - RespWhite:NameIndian NA
## RespChinese:NameChinese - RespChinese:NameIndian NA
## RespWhite:NameIndian - RespChinese:NameIndian NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producthardwaresupplies -1.28
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -3.79***
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -9.13***
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 1.14*
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productbabyformula -0.06
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -2.51
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -7.85***
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 2.42
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productbabyformula 1.21
## RespWhite:V_Producttoiletpaper - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespWhite:V_Productcigarettes - RespChinese:V_Productcigarettes -5.34**
## RespWhite:V_Productcigarettes - RespWhite:V_Productbabyformula 4.93***
## RespWhite:V_Productcigarettes - RespChinese:V_Productbabyformula 3.72*
## RespChinese:V_Productcigarettes - RespWhite:V_Productbabyformula 10.27***
## RespChinese:V_Productcigarettes - RespChinese:V_Productbabyformula 9.06***
## RespWhite:V_Productbabyformula - RespChinese:V_Productbabyformula -1.21
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producthardwaresupplies -0.14
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies 0.22
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -1.57
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -7.66***
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -6.05***
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -5.99***
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -5.06***
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 1.18
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 0.91
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 0.38
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 0.75
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies 0.36
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -1.43
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -7.53***
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -5.92***
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -5.85***
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -4.92***
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 1.32
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 1.05
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 0.52
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 0.89
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -1.78
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -7.88***
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -6.27***
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -6.21***
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -5.27***
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 0.97
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 0.69
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 0.16
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 0.53
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -6.1***
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -4.49***
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -4.43***
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -3.49**
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 2.75*
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 2.48*
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 1.95.
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 2.31*
## NameWhite:V_Producttoiletpaper - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameWhite:V_Productcigarettes - NameBlack:V_Productcigarettes 1.61
## NameWhite:V_Productcigarettes - NameChinese:V_Productcigarettes 1.67
## NameWhite:V_Productcigarettes - NameIndian:V_Productcigarettes 2.61*
## NameWhite:V_Productcigarettes - NameWhite:V_Productbabyformula 8.85***
## NameWhite:V_Productcigarettes - NameBlack:V_Productbabyformula 8.57***
## NameWhite:V_Productcigarettes - NameChinese:V_Productbabyformula 8.04***
## NameWhite:V_Productcigarettes - NameIndian:V_Productbabyformula 8.41***
## NameBlack:V_Productcigarettes - NameChinese:V_Productcigarettes 0.06
## NameBlack:V_Productcigarettes - NameIndian:V_Productcigarettes 1
## NameBlack:V_Productcigarettes - NameWhite:V_Productbabyformula 7.24***
## NameBlack:V_Productcigarettes - NameBlack:V_Productbabyformula 6.96***
## NameBlack:V_Productcigarettes - NameChinese:V_Productbabyformula 6.43***
## NameBlack:V_Productcigarettes - NameIndian:V_Productbabyformula 6.8***
## NameChinese:V_Productcigarettes - NameIndian:V_Productcigarettes 0.94
## NameChinese:V_Productcigarettes - NameWhite:V_Productbabyformula 7.18***
## NameChinese:V_Productcigarettes - NameBlack:V_Productbabyformula 6.9***
## NameChinese:V_Productcigarettes - NameChinese:V_Productbabyformula 6.37***
## NameChinese:V_Productcigarettes - NameIndian:V_Productbabyformula 6.74***
## NameIndian:V_Productcigarettes - NameWhite:V_Productbabyformula 6.24***
## NameIndian:V_Productcigarettes - NameBlack:V_Productbabyformula 5.97***
## NameIndian:V_Productcigarettes - NameChinese:V_Productbabyformula 5.44***
## NameIndian:V_Productcigarettes - NameIndian:V_Productbabyformula 5.8***
## NameWhite:V_Productbabyformula - NameBlack:V_Productbabyformula -0.27
## NameWhite:V_Productbabyformula - NameChinese:V_Productbabyformula -0.8
## NameWhite:V_Productbabyformula - NameIndian:V_Productbabyformula -0.44
## NameBlack:V_Productbabyformula - NameChinese:V_Productbabyformula -0.53
## NameBlack:V_Productbabyformula - NameIndian:V_Productbabyformula -0.16
## NameChinese:V_Productbabyformula - NameIndian:V_Productbabyformula 0.37
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3NONE -2.74
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Defensive 1.1*
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Defensive -1.78
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Defensive 3.84*
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Defensive 0.96
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Defensive -2.88
## RespWhite:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Prosocial - RespChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3NONE 0.8
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3NONE 1.03
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3NONE 0.52
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Defensive 1.41.
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Defensive 1.43.
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Defensive 1.9*
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Defensive 1.72*
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3NONE 0.24
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3NONE -0.27
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Defensive 0.62
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Defensive 0.63
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Defensive 1.11
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Defensive 0.92
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3NONE -0.51
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Defensive 0.38
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Defensive 0.39
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Defensive 0.87
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Defensive 0.69
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Defensive 0.89
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Defensive 0.91
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Defensive 1.38.
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Defensive 1.2
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Defensive 0.01
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Defensive 0.49
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Defensive 0.31
## NameWhite:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Defensive 0.48
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Defensive 0.29
## NameBlack:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Defensive -0.18
## NameChinese:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3NONE -0.99
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -7.34***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 0.92
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -0.27
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 0.7
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -5.31***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 1.58.
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 1.83*
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -3.26***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 2.58**
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -6.35***
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 1.91**
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive 0.72
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 1.69*
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -4.32***
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 2.57**
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 2.82***
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -2.27**
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 3.57***
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 8.25***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive 7.06***
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 8.04***
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive 2.03*
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 8.92***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 9.16***
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial 4.08***
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 9.92***
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -1.19
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -0.21
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -6.23***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 0.67
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 0.91
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -4.18***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 1.67*
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Defensive 0.98
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive -5.03***
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 1.86.
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 2.1*
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -2.99**
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 2.86**
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive -6.01***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 0.88
## V_Producttoiletpaper:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 1.12
## V_Producttoiletpaper:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -3.96***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 1.88*
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 6.89***
## V_Productcigarettes:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 7.14***
## V_Productcigarettes:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial 2.05*
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 7.89***
## V_Productbabyformula:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 0.24
## V_Productbabyformula:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -4.84***
## V_Productbabyformula:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 1
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial -5.09***
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 0.76
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 5.84***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producthardwaresupplies -0.19
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies 0.38
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -0.84
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 0.86
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -0.61
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -0.54
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -2.78
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -6.37***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -9.15***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -3.09*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -9.2***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -2.16.
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -10.01***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.84*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -7.46**
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.25.
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula -0.06
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 0.66
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 0.97
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 0.93
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -0.35
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 1.43
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -0.12
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies 0.56
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -0.65
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.04
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -0.42
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -0.35
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -2.59
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -6.18**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.96***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -2.9
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -9.01***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.97
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -9.83***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.65
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -7.27***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.43
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 0.12
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 0.85
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 1.16
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.11
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -0.17
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 1.61
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.07
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -1.22
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 0.48
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -0.99
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -0.92
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -3.16
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -6.74***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -9.52***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -3.47**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -9.58***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -2.54*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -10.39***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -3.21*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -7.84***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 1.87
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula -0.44
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 0.28
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 0.59
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 0.55
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -0.73
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 1.05
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -0.49
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.7
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies 0.23
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 0.3
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -1.94
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -5.53*
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.31***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -2.25
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -8.36***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.32
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -9.17***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -6.62***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 3.08
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 0.77
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.5
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 1.81
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.76
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 0.49
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 2.27
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.72
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -1.46
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -1.4
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -3.64
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -7.22***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -10***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -3.95**
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -10.06***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -3.02*
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -10.87***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -3.69**
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -8.32***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 1.39
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula -0.92
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula -0.2
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 0.11
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 0.07
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -1.21
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 0.57
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -0.97
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 0.07
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -2.17
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -5.76*
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.54***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -2.48
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -8.59***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.55
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -9.41***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.23
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -6.85***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.85
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 0.54
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.27
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 1.58
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.53
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 0.26
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 2.03
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.49
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -2.24
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -5.83***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.61***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -2.55*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -8.66***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.62
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -9.47***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.3.
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -6.92**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.78*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 0.47
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.2
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 1.51
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.46
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 0.19
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 1.97
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.42
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.59
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -6.37***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -0.31
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -6.42***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes 0.62
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -7.23***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -0.06
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -4.68*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 5.03*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.71
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 3.44
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 3.75*
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 3.7
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 2.43
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 4.21.
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 2.66
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productcigarettes -2.78
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 3.27*
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -2.84
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 4.21***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -3.65
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 3.53**
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -1.09
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 8.61***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 6.3**
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 7.03***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 7.34**
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 7.29***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 6.01**
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 7.79***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 6.25**
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 6.06**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -0.05
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 6.99**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -0.87
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 6.31**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 1.69
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 11.39***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 9.08***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 9.81***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 10.12***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 10.07***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 8.79***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 10.57***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 9.03***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -6.11**
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 0.93
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -6.92**
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 0.25
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -4.37.
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 5.34***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 3.03
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 3.75**
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 4.06.
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 4.02**
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 2.74
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 4.52***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 2.97
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 7.04**
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -0.81
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 6.36**
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 1.74
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 11.45***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 9.14***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 9.86***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 10.17***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 10.13***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 8.85***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 10.63***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 9.08***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -7.86***
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes -0.68
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -5.3*
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 4.4***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 2.09
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 2.82*
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 3.13
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 3.08*
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 1.81
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 3.58**
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 2.04
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 7.18**
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 2.55
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 12.26***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 9.95***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 10.68***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 10.98***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 10.94***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 9.66***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 11.44***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 9.9***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -4.62*
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 5.08***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 2.77
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 3.5**
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 3.81.
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 3.76**
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 2.49
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 4.26**
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 2.72
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 9.71***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 7.4***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 8.12***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 8.43***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 8.39***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 7.11***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 8.89***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 7.34***
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameWhite:V_Productbabyformula -2.31
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula -1.58
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula -1.28
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -1.32
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -2.6
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula -0.82
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -2.36
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula 0.73
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula 1.04
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula 0.99
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -0.29
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 1.49
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.05
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula 0.31
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula 0.26
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.01
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 0.76
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.78
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -0.05
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.32
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 0.46
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -1.09
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.28
## RespWhite:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 0.5
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -1.04
## RespChinese:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 1.78
## RespChinese:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula 0.24
## RespWhite:NameIndian:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -1.54
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3NONE -2.38
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 1.14
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE -1.93
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 1.04
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -1.36
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 0.88
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.21
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 1.15
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -0.71
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 1.41
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -0.93
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 2.7**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -1.28
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 2.2*
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -1.14
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 3.52.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE 0.45
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 3.43.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE 1.03
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 3.26.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE 0.17
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 3.53.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 1.68
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 3.79.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.45
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 5.08*
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 1.11
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 4.58*
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 1.24
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE -3.07
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE -0.1
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -2.5
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -0.26
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -3.35.
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.01
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -1.85
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.27
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -2.07
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 1.56.
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -2.41
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 1.06
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.28
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 2.97
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE 0.57
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 2.8
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -0.29
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 3.08
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 1.22
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 3.34
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 0.99
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 4.63*
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.65
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 4.13*
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 0.79
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -2.4
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE -0.17
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -3.26.
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.11
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -1.75
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.36
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -1.98
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 1.66.
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -2.32
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 1.16
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.18
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 2.23
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -0.86
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 2.51
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 0.65
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 2.76
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 0.42
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 4.06*
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.08
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 3.56.
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 0.22
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -3.09
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.28
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -1.58
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.53
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -1.81
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 1.82*
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -2.15
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 1.32
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.02
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 3.37
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 1.51
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 3.62.
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.28
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 4.92*
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.94
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 4.42*
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 1.07
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Defensive -1.86
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive 0.26
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -2.09
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 1.55
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -2.43
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 1.05
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -2.29
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive 2.11
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -0.23
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 3.41
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -0.57
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 2.91
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -0.43
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -2.34
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 1.29
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -2.68
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 0.79
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -2.55
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 3.64.
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -0.34
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 3.14
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -0.21
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -3.98.
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive -0.5
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.84.
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 3.48
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive 0.13
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.34
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3NONE -1.54
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE -0.51
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -3.01
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -5.29***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -10.92***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 0.78
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE -0.49
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.48
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.61
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.19
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.33
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.64**
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -9.51***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 1.32
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.31
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.64.
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.47
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.27*
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.79**
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.48**
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.15
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE 1.03
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -1.48
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -3.75.
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -9.39***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 2.32
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 1.05
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.06
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.07
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 2.73
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 0.21
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -1.11
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -7.98***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.86
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 1.85
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.18
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.01
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.73
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.26**
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.02*
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.68.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -2.5
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -4.78***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -10.41***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 1.29.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 0.02
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.03
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.1
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.7.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -0.82
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.14*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -9***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 1.83.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.82
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.15*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.98
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -1.76.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.28*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.99**
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.65
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -2.28
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -7.91***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 3.79.
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 2.52*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.53
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.4
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 4.2*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 1.68
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 0.37
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.5***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 4.33*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 3.32*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.65*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.48*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 0.74
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -2.78*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 5.5**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 4.16**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -5.63**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 6.07***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 4.8*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.81***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.68.
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 6.48***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 3.96.
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 2.64**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -4.22*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 6.61***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 5.6**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.93***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.76**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 3.02**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -0.5
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 7.77***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 6.43**
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 11.7***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 10.44***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 10.44***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.32***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 12.12***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 9.6***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 8.28***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive 1.41
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 12.24***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 11.23***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.57***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.4***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 8.66***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 5.13***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 13.41***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 12.07***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE -1.27
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.26
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.39
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.41
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -2.11
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -3.43***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -10.29***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.54
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive -0.47
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.86
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.05**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.57**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.7.
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.36
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.01
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.12
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.68
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -0.84
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.16
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -9.02***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 1.81
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.8
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.13
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.96
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -1.78
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.31***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.97
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.63
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.13
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.67
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -0.85
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.16.
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -9.03***
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 1.8
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.79
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.12.
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.95
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -1.79
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.31*
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.96**
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.62
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 2.8
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 0.28
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -1.04
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -7.91***
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.93
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 1.92
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.25
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.08
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.66
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.19**
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.09.
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.75.
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -2.52
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -3.84***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -10.7***
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.13
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive -0.88
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.45
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.72
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.46**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.99**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.29
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial -0.05
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -1.32
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -8.19***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.65
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 1.64
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.97
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.94
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.47**
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 3.81.
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.47
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.87**
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 3.96***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 2.96
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.29***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.12
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 0.38
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -3.15
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 5.13***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 3.79.
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 10.83***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 9.82***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.15***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.98***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 7.24**
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial 3.72*
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 12***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 10.66***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive -1.01
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.32
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.85
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.59**
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.11**
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.16
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial -0.18
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.33
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.16
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.58
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.1***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.17
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.83
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.17
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.91***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.44***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 0.84
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial -0.5
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.74
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.27***
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.01
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.67
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -3.53
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.75***
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 3.41
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 8.28***
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 6.94***
## RespWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial -1.34
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.85
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.73
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.38.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.48.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -2.99*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.07
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.84
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -9.96***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -7.11***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -7.9***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -6.65***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.4
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.41
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.66
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.08
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.44
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.51
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.02
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.44
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.75
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.26
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.08
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.13
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.01***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.03**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.71***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.76*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.31
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.47
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.35
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.93
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.4
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.21
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.34
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.09
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.06*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.05**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.41
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.79*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.8
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.81.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.09
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.36
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.58
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -3.24*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.33*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -3.84**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.78
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.69
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -10.81***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -7.96***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -8.75***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -7.5***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE -0.45
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE -0.44
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE -0.19
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.93
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.29
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.36
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.17
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.29.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.1
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.11
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.93
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.72
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.86***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.88***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.56***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.61**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.46
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.38
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.5
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.08
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.55
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.36
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.49
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.24
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.91**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.9***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.26.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.64**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.95
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.96
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.76
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.51
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.65
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.75
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -2.26
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.81
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.1
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -9.23***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -6.38***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -7.16***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -5.91***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 1.14
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 1.14
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 1.39
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.66
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.29
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.77
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.75
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.71
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.49
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.47
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.66
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.86
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.27***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.29**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -5.97***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.03.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.05
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.21
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.09
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.66
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.94
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.07
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.32*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.32*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.68
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.06.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.53*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.55*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.82
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.09.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.09
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.61
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.46.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.55
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.57***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.73***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -5.51***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -4.26**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 2.79*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 2.79*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 3.05*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 2.31
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.95
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.88
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.4*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.05
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.14.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.12
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.31
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.51
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.62**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.64
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.32*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.38
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.7*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.86.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.74*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 3.31.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.79*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.59.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.72*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.48*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.67
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.67
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.02
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.41
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.18**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.2**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.48
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.74**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.51
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.55.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.64
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.48***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.63***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -5.42***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -4.17**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 2.88*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 2.89*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 3.14*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 2.4.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.04
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.97
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.49*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.04
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.23*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.22
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.4
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.6
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.53**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.55
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.23*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.29
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.79*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.95.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.83*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 3.41.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.88*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.69*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.81*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.57*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.58
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.58
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.07
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.31
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.28**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.29**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.57
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.84**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 3.07*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.16
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -6.97***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.12**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -4.91***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.66**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 3.4*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 3.4*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 3.65**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 2.91*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.55
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.49
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.01*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.55
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.75*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.73
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.91.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.12.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.02**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.04
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.72*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -0.77
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.31*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 3.46*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 4.34**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 3.92*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.39**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.2*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.33*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.08*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.07
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.06
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.58
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.8
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.79***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.81***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.08.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.35**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.91
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -10.03***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -7.19***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -7.97***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -6.72***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.33
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.33
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.59
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.15
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.51
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.58
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.94
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.51
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.68
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.34
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.15
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.05
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.08***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.1**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.78***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.84*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.24
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.4
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.28
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.85
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.33
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.26
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.02
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.13*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.13**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.48
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.87*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.73
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.74
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.02
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.28
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -9.12***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -6.28***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -7.06***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -5.81***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 1.24
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 1.24
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 1.5
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.76
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.4
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.67
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.85
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.6
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.59
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.57
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.76
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.96
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.17***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.19*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -5.87***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.93
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.15
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.31
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.19
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.77
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.24
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.04
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.17
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.93
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.22.
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.22*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.57
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.96.
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.64*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.65*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.93
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.2.
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE 2.85*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 2.06
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 3.31*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 10.36***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 10.37***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 10.62***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 9.88***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 9.52***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.45***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 10.98***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 7.52***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 10.71***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.7***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 9.88***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 10.09***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive 1.95
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 4.93**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 3.25.
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 6.2***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 11.27***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 10.43***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 11.31***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 10.89***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.36***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.17***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.3***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.05***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.9***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.91**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.55***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.17***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.76***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.77***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.05***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.32***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -0.78
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 0.47
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 7.52***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 7.52***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 7.77***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 7.04***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.67***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 5.61***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 8.13***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.67**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.87***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.85***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 7.04***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 7.24***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -0.89
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.08
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 0.41
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 3.35.
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 8.43***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 7.59***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 8.46***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.04***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.52***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.32***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.45***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.2***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.06.
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.06
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.7**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.32*
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.91***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.93***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.2***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.47***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 1.25
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 8.3***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 8.3***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 8.56***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 7.82***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.46***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.39***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 8.91***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.46**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.65***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.63***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 7.82***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 8.02***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -0.11
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.87.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 1.19
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 4.13*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 9.21***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 8.37***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 9.25***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.83***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.3***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.1***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.23***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.99***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.84*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.84
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.49**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.1*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.7***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.71***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.99***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.26***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 7.05***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 7.05***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 7.31***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 6.57***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.21***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 5.14**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.66***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.21*
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.4***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.38***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.57***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 6.77***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -1.36
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 1.62
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -0.06
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 2.88.
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 7.96***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 7.12***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 8***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 7.58***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.05***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.85***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.98***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.74***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.59
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.59
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.24*
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.85.
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.45***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.46***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.74***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.01***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.26
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.48
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.84
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.91
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.61
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.84
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.35
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.67
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.48
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.28
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.41***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.43**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.11***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.17*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.91
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.07
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.95
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.52
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.8
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.93
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.69
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.46**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.46**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.81
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.2*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.4
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.41
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.31
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.95
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.25
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.48
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.85
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.91
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.61
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.85.
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.35
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.67
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.48
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.28
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.41***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.43**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.11***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.17*
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.91
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.07
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.94
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.52
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.8
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.93
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.69
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.46**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.46**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.82
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.2*
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.39
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.41
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.32
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.95
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE -0.74
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.1
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.17
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.35
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.1.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.09
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.92
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.74
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.54
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.67***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.69***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.37***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.43*
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.65
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.19
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.69
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.27
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.74
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.55
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.67
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.43
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.72**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.71***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.07.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.45**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.14
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.15
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.57
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.7
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.36
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.43
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.09
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.36
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.83
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.19
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.2
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.93***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.95**
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.63***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.69*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.39
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.55
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.43
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.01
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.17
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.98*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.98**
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.33
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.71*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.88.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.89.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.17
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.44
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.07
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.45
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.19
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.18
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.36
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.56
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.57***
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.59*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.27**
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.33
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.75
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.91
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.79
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.37
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.84
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.65
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.77
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.53
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.62.
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.62*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.97
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.35.
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.24
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.25
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.53
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.8
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.52
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.93
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.26
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.24
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.43
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.63
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.5***
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -3.52.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -5.2**
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.26
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.82
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.98
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.86
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.43
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.91
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.71
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.84
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.6
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.55
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.55.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.9
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.29
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.3*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.32*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.6
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.86*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.45.
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.26
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.28
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.09
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.89
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -9.02***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -6.04**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.72***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.78*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.3
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.54
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.34
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.09
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.39
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.19
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.32
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.08
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.07**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.07**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.42.
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.81*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.78
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.8
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.92
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.34
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.19.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.18
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.36
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.56
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.57**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.59
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.27*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.33
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.75.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.91
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.79*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 3.37
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.84*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.65.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.77.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.53.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.62
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.61
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.03
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.35
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.24**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.25**
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.53
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.8*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.02
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.83
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.63
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.76***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.78**
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -7.46***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.52*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 0.56
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.28
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.6
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.17
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.65
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.45
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.34
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.81*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.81**
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.16
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.55*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.05
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.06
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.66
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.6
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.19
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.39
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.74***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.77*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.44**
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.5.
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.58
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.73
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.61
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.19
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.66
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.47
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.6
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.35
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.79.
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.79*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.15
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.53.
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.06
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.08
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.35
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.62
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.2
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.93***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -4.95*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.63***
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.69.
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.39
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.55
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.43
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.01
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.17
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.98*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.98*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.33
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.71.
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.88
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.89
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.17
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.44
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -8.13***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -5.15**
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -6.83***
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.89.
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.19
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.35
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.23
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.8
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.08
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.21
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.97
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.18*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.18**
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.53
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.92*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.67
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.69
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.03
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.23
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.98
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 1.3
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 4.24*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 9.32***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 8.48***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 9.36***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.94***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.41***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.21***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.34***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.1***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.95*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.95
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.6**
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.22*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.81***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.82***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.1***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.37***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.68
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 1.26
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 6.34**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 5.5**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 6.38***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 5.96**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.43***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.24**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.36**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.12**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.97
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.03
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.62
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.24
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.83***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.84***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.12*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.39***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 2.94
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 8.02***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 7.18***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 8.06***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 7.64***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.11***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.91***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.04***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.8***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.65
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.65
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.3*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.91
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.51***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.52***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.8**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.07***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 5.08*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 4.24*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 5.12**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 4.69*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.17**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.97*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.1*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.86*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.29
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.29
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.36
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.03
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.56***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.58***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.86.
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.12**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.84
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.04
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.39
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.09
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.11
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.02
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.22
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.37**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.37**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.72.
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.11*
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.49
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.5
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.22
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.04
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.88
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.46
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.93
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.74
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.86
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.62
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.53*
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.53**
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.88
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.26*
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.33
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.34
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.38
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.89
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.42
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.05
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.14
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.02
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.26
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.41**
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.41***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.76.
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.14**
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.45
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.46
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.26
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.01
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.47
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.28
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.41
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.16
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.99*
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.98**
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.34
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.72*
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.87
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.89
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.84
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.43
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.19
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.07
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.46**
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.46***
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.81.
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.19**
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.4
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.41
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.31
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.96
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.13
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.12
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.26*
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.26**
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.62.
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5*
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.59
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.61
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.12
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.15
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.24
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.39**
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.39**
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.74.
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.13**
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.46
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.48
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.24
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.02
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.15**
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.15**
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.5.
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.88*
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.71
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.72
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.27
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -1
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.65
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.27
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.86***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.87***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.15*
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.42***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.65
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.26
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.85***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.87***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.14*
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.41***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.38
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.21*
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.22**
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.5
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.77*
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.59***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.61***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.88.
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.15**
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.01
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.71
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.44
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.72
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.46
## NameChinese:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.27
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE -1.54
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE -0.46
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.6
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.4
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.21
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.09*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.83
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.66.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.55
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -6.97**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.39
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.92
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.29
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.77***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.68***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.72**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -11.04***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -4.01**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -13.32***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.91**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.92***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.99
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -0.06
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.35
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.21
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.9
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.15
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.71
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.84
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.52
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.02
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.74
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.67.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.23
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.21
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.85
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.08
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.77
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.4
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.69
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.43**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.12***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.86
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.73**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.39
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.56***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.16
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.9*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.73
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.63
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.07
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.25
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.09
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.04
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.2
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.07
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.24
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.46
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.72
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.95*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.69.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.75
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.9**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.49.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.63.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.69
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.91
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.18
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.02
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.38
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.05.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.14
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 1.08
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 2.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 0.93
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.87
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 0.32
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -3.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.12
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.99
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -5.43*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.54
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.14
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -8.24**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -10.15***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.19
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -9.5***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.47
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.78***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.38
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.38***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.8
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.46
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.48
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.87
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.88
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.37
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.72
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.38
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.17
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.05
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.8
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.14
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.28
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.33
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.32
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.24
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.94
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.89.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.59**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.33
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.19**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.85
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.03***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.37
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.36*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.26
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.9
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.61
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.87
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.45
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.5
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.89
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.73
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.61
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.18
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.13
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.08
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.81
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.91
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.42
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.36**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.4
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.68
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.96
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.09
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.22
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.91
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.45
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.71.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.84
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.58
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.67
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 1.08
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.14
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.95
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.76
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -4.64.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.2
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.09
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -6.51*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.06
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.46
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.32***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.23***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.27**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.58***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.55*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.86***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.46**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.46***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.72
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.4
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.1
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.8
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.67
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.45
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.8
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.3
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.43
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.28
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.22.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.69
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.8
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.4
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.31
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.86
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.23
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.97**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.66***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.41
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.27**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.93
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.11***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.44*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.18
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.18
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.53
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.37
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.42
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.81
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.65
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.53
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.69
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.9
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.27
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.5.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.24.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.29
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.44**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.68
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.76
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.04
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.17.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.15.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.37
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.63
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.48
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.92
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.5.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.59
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -3.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.83
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -5.72*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.45
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -5.28*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.17
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -7.59**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.62
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.01
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.54
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.91
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -10.39***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -12.3***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -5.34*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -11.66***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -4.63.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -13.94***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -5.53*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -10.54***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.64
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -2.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -0.68
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -1.29
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -1.18
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -0.41
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.52
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.88
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.77
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.33
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.46
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.65
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.36
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.3*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.88
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.83
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.47
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.46
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.39
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.31
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.05*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.74***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.48
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.35***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.01
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.18***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.79
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.52**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.25
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.55
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.28
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.63
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.71
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.66
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.26
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.55
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.62
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.98
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.97
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.08
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.34
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.58
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.32*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.37
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.52**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.76
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.84.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.11
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.25*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.29
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.56
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.4
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.43
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.8
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.61
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -4.49.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.23
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.06
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.05
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -6.37*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.4
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.21
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.32
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.69
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.17***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.08***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.12*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.44***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.41*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.72***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.31**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.31***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.87
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.39
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.54
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.06
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.04
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.95
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.81
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.3
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.66
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.45
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.11
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.24
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.12
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.58
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.14
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.07.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.83
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.66
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.39
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.25
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.17
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.09
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.83**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.52**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.26
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.13**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.79
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.96***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.56
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.3*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.33
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.03
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.67
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.06
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.85
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.52
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.57
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.96
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.67
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.84
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.76
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.19
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.14
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.12
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.97
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.35.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.09.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.15
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.3**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.54
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.61
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.89
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.03.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.29.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.98
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.51
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.78
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.62
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.78
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.65.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.74
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 1.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.69
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE 0.57
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.26
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 1.85
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -4.57*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.4
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.01
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.48
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.11
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.37**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.28***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.32
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -8.64***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -1.61
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -10.92***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.51
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -7.51***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 3.67
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.41
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 2.34
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.74
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.84
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.75
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.61
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.5
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.25
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.69
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.92
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.38
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.66
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.27
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.63
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.55
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.48
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.8
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.71
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.03
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.72**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.46
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.33*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.01
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.16***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.24
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.5.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.13
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.77
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.47
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.74
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.65
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.32
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.76
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.6
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.47
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.04
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.99
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.94
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.68
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.77
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.55
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.29
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.5*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.26
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.81
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.23
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.09.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.78
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.31
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.58*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.42
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.02
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.45*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.54
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -3.88
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.62
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.45
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.66
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -5.76*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.21
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.82
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.29
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.08
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -8.56***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -10.47***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.51*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -9.83***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.8.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.11***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.7*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.7***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.78
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.15
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.55
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.56
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.42
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.69
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.05
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.06
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.5
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.63
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.73
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.19
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.47
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.46
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.44
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.05
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.64
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.29
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.56
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.61
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.22**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.91**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.52*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.18
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.35***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.05
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.69*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.94
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.58
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.28
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.55
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.47
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.13
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.18
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.57
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.45.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.15
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.8
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.75
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.49
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.58
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.74
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.53
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.69*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.07
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.28
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.42
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.9*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.59
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.13
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.39
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.17
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.26*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE 3.26
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE 0.44
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 4.55.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.88
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 4.1
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 4.7*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 4.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -4.68.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -6.59**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 0.37
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.94**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 1.09
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.23***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 0.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.82*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 6.36*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 3.1
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 5.04.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 4.43*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.53.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 5.44*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.31*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 3.19
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.84
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.94
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 3.39
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.26
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.61.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.07.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.36
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.58
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.33*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.83
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.89.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.24
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.17*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.32
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.5.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.34
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.03*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.23
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.63
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.71
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.47*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.93
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.82*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.16.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.43
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.35*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.01*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.06.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.45.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.29*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.16.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.33*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.74
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.69*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.64.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.37
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.47*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.14
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.6
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.96
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.12
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.6
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.53
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.78**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.47*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.01*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.27**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.12*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.72
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.14**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.23.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.83
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 1.29
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -5.14.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.84
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.44
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.92
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.46
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.94***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.85***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.89.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -9.2***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.49***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.08.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.08**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 3.1.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.16
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.78
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.17
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.27
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.04
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.07
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.43
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.68
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.13
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.35
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.81
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.84
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.07.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.57
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.63
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.02
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.91
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.94
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.24
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.15
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.6*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.29**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.89*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.55
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.73***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.67
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.07.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.56.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.2
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.9
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.17
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.75
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.19
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.9
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.07*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.47
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.43.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.38
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.11
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.12
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.86
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.91
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.06*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.7
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.38
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.66
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.79
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.52*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.75
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.01.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.86
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.54
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.88**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.97
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 4.11
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -2.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 3.66
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 4.27.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 3.74
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 2.37
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -5.11*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.02**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -0.07
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.38**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 0.65
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.66***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.25
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.26*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 5.92*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.67
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 4.6.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.99.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.1
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 5*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.87.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.76
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.4
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.5
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.95
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.82
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.18.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.63.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.92
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.02
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.89*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.4
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.45
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.81
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.74*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.89
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.06.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.97
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.77
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.46*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.8
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.07
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.27
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.9**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.49
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.24
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.38*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.03
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.73.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.91*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.57.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.62
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.02.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.86*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.73.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.9*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.3
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.25*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.2
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.94
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.03*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.7
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.04
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.91
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.24
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.52
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.56
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.17
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.97
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.35**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.03*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.57*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.84**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.68.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.28
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.7**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.79.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -6.42*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.45
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.16
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.37
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.74
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.22***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.13***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.18*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.49***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.46*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.77***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.36**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.37***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.81
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.44
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.49
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.01
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.89
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.76
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.35
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.71
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.39
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.16
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.29
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.07
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.52
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.19
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.13.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.78
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.71
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.34
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.3
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.63
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.95
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.14
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.88**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.57***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.31
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.18**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.84
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.01***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.62
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.35*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.27
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.09
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.62
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.11
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.8
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.46
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.91
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.62
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.79
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.81
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.09
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.17
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.92
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.41.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.15.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.2
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.35**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.59
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.67
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.94
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.08.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.24.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.92
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.73
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.57
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.83
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.59.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.68
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 5.97*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 6.58**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 6.05*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 4.68*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -2.8
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -4.71*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 2.25
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -4.07.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 2.96
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -6.35**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 2.06
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -2.95
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 8.23**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 4.98*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 6.91**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 6.31**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 6.41*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 7.32**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 7.18**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 5.07*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.71
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.82*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 5.26.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 4.13
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.49*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.95*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 6.23*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.3
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.2**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.71*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.76*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.12.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.05**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 4.2
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 7.37*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.28.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.54
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.15
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.11
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.76
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.58
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.59.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.81*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.93
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.7**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.34*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.04*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.31*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.22**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.88**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.93*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.33*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.17**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.04*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.21**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.61.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.56**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.51*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.25*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.34**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.02
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.28
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.93
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.83*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.75
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.48
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.34
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.66***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.34**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.88**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.15***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.99**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.59
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.02***
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.11*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.61
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -8.78***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -10.69***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.73*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.04***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.01.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.32***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.92*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -8.92***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.26
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.94
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.33
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.44
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.21
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.9
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.26
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.84
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.71
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.84
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.52
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.97
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.26
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.68
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.23
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.26
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.79
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.86
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.77
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.4
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.69
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.43**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.12**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.87
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.73**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.39
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.57***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.9*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.72
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.36
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.07
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.25
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.91
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.96
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.35
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.19
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.07
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.23
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.36
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.59
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.54
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.27
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.37
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.96
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.7
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.75
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.9*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.14
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.22
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.5
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.63
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.69*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.37
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.91
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.18
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.02
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.38
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.04*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.13
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.53
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.9
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.38***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -11.29***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.33
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.65***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.62
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.93***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.52.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9.52***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.66
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.6
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.33
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.27
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.17
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.74
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.6
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.51
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.24
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.32
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.45
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.91
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.37
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.35
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.28.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.62
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.18
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.47
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.38
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.79
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.3
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.04*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.73***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.47
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.34**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.99
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.17***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.77
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.51*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.12
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.24
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.27
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.65
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.31
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.36
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.75
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.63
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.97
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.98
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.07
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.33
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.76
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.56
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.3*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.35
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.51**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.75
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.82
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.24*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.08
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.77
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.31
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.57
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.41
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.99
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.44
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.53
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.37
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -8.85***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -10.76***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.81*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -10.12***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.09*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -12.4***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.99*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -9***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.18
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.07
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.86
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.25
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.36
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.26
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.13
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.98
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.34
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.76
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.79
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.92
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.89
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.18
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.76
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.15
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.34
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.71
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.93
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.85
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.32
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.77
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.51**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.2**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.94
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.81**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.47
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.64***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.25
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.98*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.64
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.28
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.99
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.26
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.17
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.88
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.28
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.12
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.16
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.51
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.46
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.29
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.04
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.78
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.98*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.22
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.3
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.57
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.71
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.61.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.29
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.1
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.94
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.46
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.96*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.05
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.48**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.39***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.43
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -8.75***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -1.72
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.03***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.62
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -7.63***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 3.55
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.3
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 2.23
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.63
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.73
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.64
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.5
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.39
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.03
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.14
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.58
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.55
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.81
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.27
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.55
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.38
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.52
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.03
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.08
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.44
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.37
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.48
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.69
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.6
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.14
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.83**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.57
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.44*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.1
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.27***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.13
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.61.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.02
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.66
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.36
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.63
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.54
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.2
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.25
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.65
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.49
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.36
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.53
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.93
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.88
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.57
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.66
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.66
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.4
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.46
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.61*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.15
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.93
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.2
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.34
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.98.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.66
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.2
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.47*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.31
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.09
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.34.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.43
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -1.91
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 5.05**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -1.26
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 5.76***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -3.55
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 4.86**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -0.14
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 11.04***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 7.78**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 9.72***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 9.11***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 9.21***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 10.12***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 9.98***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 7.87**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.51***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 9.62**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.06***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.93*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 10.29***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.75**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 9.03***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.1
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 11.01***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.51**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.56***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.92*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 10.85***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 7*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 10.17***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 8.09*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 3.34.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.35
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.91***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.04
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.39***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.79
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.61***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.87
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.5***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.14**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.84***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.11**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.03***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.69***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.74***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.13**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.97***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.84**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.01***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.41*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.37***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.31**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.05***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.14***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.82**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.08
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.03***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.88
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.63***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.56
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.28**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.15
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.46***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.15***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.69***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.95***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.8***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.4*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.82***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.91**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 6.96**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE 0.65
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 7.67**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -1.64
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 6.77**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 1.77
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 12.95***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 9.69***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 11.63***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 11.02***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 11.12***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 12.03***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 11.89***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 9.78***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 9.42**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 11.53***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 9.97***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.84**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 12.2***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 11.66***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 10.94***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 6.01*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 12.92***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 10.42***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 11.47***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.83***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 12.76***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.91**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 12.09***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 10***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 5.25.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.56
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.82**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.95
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 9.3***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.88
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 10.52***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.78
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.41***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.75***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.02***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.94***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.6***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.65***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.04***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.88***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.75***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.92***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.32***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 13.28***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.23***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.96***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.73**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.99*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.94**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.79
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 10.54***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.47*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 8.19**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.06*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.37***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.06***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.6***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.86***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.71***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.31**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.73***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.82***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.31*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 0.72
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.6**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.19
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.19*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 5.99***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.73
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 4.67**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 4.06
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.16**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 5.07*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.94**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.82
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.47
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.57
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 3.02
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.89
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.24**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.7
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.98*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.95
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.96**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.46
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.52*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.87
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.8**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.95
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.13*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.04
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.71
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.4*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.86
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.34
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.84*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.56.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.17
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.45**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.09
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.79*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.06
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.98**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.64.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.69*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.08
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.92**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.79
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.96***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.37
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.32**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.27
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.1*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.77
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.97
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.98
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.17
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.59.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.49
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.23
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.9
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.41***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.1*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.64**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.9**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.75**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.35
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.77***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.86
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 7.03**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -2.28
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 6.12*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 1.12
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 12.3***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 9.04***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 10.98***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 10.37***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 10.48***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 11.38***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 11.25***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 9.14***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 8.78**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 10.88***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 9.33***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.2**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 11.56***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 11.01***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 10.3***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.36*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 12.27***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 9.78***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 10.83***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.18**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 12.12***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.27**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 11.44***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 9.35***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 4.61
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.08
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.17**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.31
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 8.65**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.53
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 9.87***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.14
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.76***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.4***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.11***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.38***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.29***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.95***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.39***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.24***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.11***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.28***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.68**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.63***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.58***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.31***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.41***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.08*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.34*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.29**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.14
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.9***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.82.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.54**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.41*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.73***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.41***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.95***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.22***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.06***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.66**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.08***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.17***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.31***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.9
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.91*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 5.27***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.02
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 3.95**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.34
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 3.45*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.36.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.22**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.11
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.85
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.3
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.17
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.53*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.98
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.27.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.67
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.24**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.8*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.16
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.09**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.24
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 4.41*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.32
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.42
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.11*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.15
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.72
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.62
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.55**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.84
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.89
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.73**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.38
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.08*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.35
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.26**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.92
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.97*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.37
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.21**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.08
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.25**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.65
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.6**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.55
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.29.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.38.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.69
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.26
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.89
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.87
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.21
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.52
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.62
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.7***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.38.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.92**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.19*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.03*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.63
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.05***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.14
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 8.41**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 3.4
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 14.58***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 11.33***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 13.26***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 12.66***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 12.76***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 13.67***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 13.53***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 11.42***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 11.06***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 13.17***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 11.61***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 10.48***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 13.84***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 13.3***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 12.58***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 7.65**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 14.55***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 12.06***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 13.11***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 11.47***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 14.4***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 10.55***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 13.72***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 11.63***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 6.89*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive 2.2
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 10.46***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.59
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.93***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.76
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 12.16***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.42.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 15.05***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.69***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 13.39***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 12.66***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 14.57***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.23***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.28***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 13.68***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 14.52***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.39***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 15.56***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.96***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.91***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.86***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.6***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 14.69***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 9.37**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.63**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 10.57***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.42
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 12.18***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.1**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.83**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.69**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 16.01***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 14.69***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.23***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 16.5***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 14.34***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.94***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 16.37***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.46***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 6.18***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.92
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 4.86**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 4.25
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.35**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 5.26*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.12**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 3.01
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.65
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.76
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 3.2.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.43**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.17*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.76
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.15**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.65
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.7*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.06
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.99**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.14
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.32**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.23
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.52
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.21.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.05
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.81
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.53
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.65*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.75*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.99
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.64**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.28
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.98*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.25
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.17**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.83.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.88*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.27
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.11***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.98.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.15***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.55
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.51**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.46
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.19*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.29*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.96
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.78
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.17
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.98
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.78*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.3
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.42
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.71
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.6***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.29*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.83**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.09**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.94**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.54
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.96***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.05
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 11.18***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 7.92***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 9.86***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 9.25***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 9.36***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 10.26***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 10.13***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 8.01***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.66**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 9.76**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.21**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 7.08**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 10.43***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.89***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 9.18**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.24
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 11.15***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.66**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.71***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 8.06**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 11***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 7.14**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 10.32***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 8.23**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 3.49
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.21
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.05*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.19
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.53**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.65
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.75**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.02
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.64***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.28**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.99***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.25***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.17***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.83***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.88***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.27***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.11***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.99***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.15***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.56**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.51***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.46***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.19***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.29***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.96*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.22
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 7.17*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.02
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.78**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.7
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.42*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.29.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.6***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.29***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.83***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.09***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.94***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.54*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.96***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.05***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -3.26
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -1.32
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -1.93
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -1.82
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.92
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -1.05
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -3.17
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.52.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.42
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.97.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -4.1
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.74
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.29
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.94*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.03
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.52
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.47
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.12
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.18
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.04
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.86
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.95
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.69***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.38***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.13*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.99***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.65*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.83***
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.43
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -9.16**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.46
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.9
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.19
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.93
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.01
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.35
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.91
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.07
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.19
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.97
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.62
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.33
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.72
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.99
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.11
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.22**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.96*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.01*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.16**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.4
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.48*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.76*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.89*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.43
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.11
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.35
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.91
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.24
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.64
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.78
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.13
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.94
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.33
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.43
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.34
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.2
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.09
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.84
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.28
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.85
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.51
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.97
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.25
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.68
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.23
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.73
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.78
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.14
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.07
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.78
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.4
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.31
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.44
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.13**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.87
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.74*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.57***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.83
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.91*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.72
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.36
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.06
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.33
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.25
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.91
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.96
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.35
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.19
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.06
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.23
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.63
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.59
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.54
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.36
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.96
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.7
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.75
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.9*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.85
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.22
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.5
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.63
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.68
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.37
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.91
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.17.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.02
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.38
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.04.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.61
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.5
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.4
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.27
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.84
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.2
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.1
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.65
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.78
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.58
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.03
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.68
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.62.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.2
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.15
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.8
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.14
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.71
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.46
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.63
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.37**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.06***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.81
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.67**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.33
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.51***
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.11
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.84*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.78
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.58
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.6
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.31
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.03
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.02
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.41
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.26
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.3
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.3
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.65
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.4
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.67
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.9*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.64.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.69
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.84**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.08
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.16
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.44.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.57.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.75
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.97
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.24
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.08
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.32
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.1.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.01
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.88
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.24
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.59
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.51
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.17
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.18
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.64
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.07
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.01.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.9
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.6
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.46
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.74
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.11
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.07
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.02
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.77*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.46***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.2
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.06**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.72
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.9***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.5
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.23*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.39
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.03
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.92
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.58
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.63
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.02
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.86
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.9
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.69
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.26
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.21
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.06
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.29
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.03.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.08
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.23**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.47
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.55
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.83
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.96.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.35
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.58
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.84
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.69
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.71
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.71
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.8
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.91
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.77
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.7
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.41
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.15
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.28
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.08
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.54
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.18
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.11.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.79
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.7
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.35
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.29
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.64
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.21
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.96
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.13
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.87**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.56***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.3
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.17**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.83
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12***
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.61
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.34*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.28
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.07
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.63
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.1
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.81
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.47
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.52
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.92
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.76
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.63
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.8
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.8
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.15
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.1
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.16
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.93
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.4.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.14.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.19
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.34**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.58
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.66
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.93
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.07.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.25.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.93
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.47
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.74
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.58
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.82
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.61.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.7
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE -0.14
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.25
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.61
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.5
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.18
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.17
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.37
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.09
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.02*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.89
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.61
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.55
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.2
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.73
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.12
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.06
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.03
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.78*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.47***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.21
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.07***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.73
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.91***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.51
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.25**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.38
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.98
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.28
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.01
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.91
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.43
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.38
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.01
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.28
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.89
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.71
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.25
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.8
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.07
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.03
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.3
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.04*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.09
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.24***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.48
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.56.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.84
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.97*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.34
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.03
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.57
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.83
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.68
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.72
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.7
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.21
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.11
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.47
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.37
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.92
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.05
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.31
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.24
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.95
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.89.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.02
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.47
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.42
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.06
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.98
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.19
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.9
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.64***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.33***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.07
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.94**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.6
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.77***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.38
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.11*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.51
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.84
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.14
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.04
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.3
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.25
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.15
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.14
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.03
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.57
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.38
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.67
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.93
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.16
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.17*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.91*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.96
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.11**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.35
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.43.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.7.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.84*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.48
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.16
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.7
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.97
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.81
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.59
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.83
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.08
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.36
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.75
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.19
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.94
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.42
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.88
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.16
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.77
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.13
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.64
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.69
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.05
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.98
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.87
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.3
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.21
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.53
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.22**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.96
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.83*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.49
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.66***
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.74
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.63
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.27
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.97
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.24
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.15
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.82
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.87
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.26
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.1
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.97
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.14
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.54
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.49
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.44
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.18
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.27
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.05
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.79
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.85
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.76
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.31
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.59
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.73
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.59
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.28
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.82
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.08.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.92
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.48
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.95.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.04
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.1
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.55
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.58
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.78
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.23
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.52
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.42
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.49
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.05
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.41
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.34
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.51
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.57
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.17.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.86*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.6
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.47*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.3**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.09
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.64
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.98
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.63
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.6
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.51
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.46
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.5.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.9
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.85
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.54
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.63
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.7
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.44
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.49
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.64*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.12
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.96
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.23
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.95*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.63
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.44
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.28
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.12
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.3*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.39
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.68
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.67
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.13
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.59
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.52
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.39
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.05
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.7
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.28.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.97**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.71
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.57**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.41***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.01
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.75*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.88
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.48
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.22
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.41
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.07
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.12
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.35
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.22
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.39
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.57
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.8
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.54.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.59
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.74*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.06
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.34
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.47.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.84
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.07
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.33
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.18
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.22
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.2
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.29
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.13
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.23
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.68
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.97
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.97
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.94
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.45
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.5
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.14
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.79
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.06
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.11
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.02
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.72*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.41**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.15
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.02*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.68
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.85**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.19.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.43
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.07
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.78
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.96
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.62
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.67
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.07
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.91
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.78
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.95.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.35
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.3
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.08
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.99
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.04
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.19*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.57
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.51
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.78
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.92
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.4*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.08
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.62
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.89
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.73
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.67
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.75*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.84
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.36
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.81
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.84
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.58
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.63
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.99
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.92
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.15
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.59
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.28*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.03
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -5.89.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.45
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.73**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.67
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.06
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.56
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.2
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.91
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.18
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.09
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.8
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.19
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.04
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.91
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.08
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.43
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.38
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.11
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.21
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.09
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.06.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.7
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.38
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.65
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.79
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.53.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.21
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.02.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.46
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.88.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.97
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.54
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.26
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.19.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.71
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.78
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.73
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.37
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.56
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.29
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.12
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.21
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.95**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.64***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.38
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.25**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.91
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.08***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.42*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.21
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.15
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.45
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.18
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.73
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.6
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.55
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.16
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.45
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.72
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.88
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.07
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.98
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.24
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.47.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.21.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.27
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.42**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.66
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.73
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.01.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.15.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.17
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.86
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.39
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.66
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.5
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.9
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.53
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.38
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.71
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.65.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.26
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.24
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.83
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.1
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.75
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.43
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.66
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.41.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.1***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.84
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.7**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.36
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.54***
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.87*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.75
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.61
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.28
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.06
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.01
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.38
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.22
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.26
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.33
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.62
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.43
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.7
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.4
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.93
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.67.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.72
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.87**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.11
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.47
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.6.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.71
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.4
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.94
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.2
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.05
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.07
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.16
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.94
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.97
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.53
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.11
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.82
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.03
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.14
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.95
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.69*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.38**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.12
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.99*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.82***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.16*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.46
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.11
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.81
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.08
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.99
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.7
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.1
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.94
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.81
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.98
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.62
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.33
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.28
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.02
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.11
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.22
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.96
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.01
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.16*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.4
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.75
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.89
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.11
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.92
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.76
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.64
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.79.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.87
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.91*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.47.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.82
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.76*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.9
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 6.08.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.99
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.76
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.45.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.81
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.89*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.51
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.22
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.4*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.04
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.74.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.01
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.93*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.59.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.64.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.03.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.87*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.75.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.91*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.32
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.27*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.22
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.95
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.05*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.72
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.02
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.93
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.22
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.54
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.36**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.05*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.59*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.85**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.7*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.3
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.72**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.81.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.49
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.44
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.15
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.83
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.92
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.66***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.35***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.1.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.96**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.62.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.8***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.4
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -9.13**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.49
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.87
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.16
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.89
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.02
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.32
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.27
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.88
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.16
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.01
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.59
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.36
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.69
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.96
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.14
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.19*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.93*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.98.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.13**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.37
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.45.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.73*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.86*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.14
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.32
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.95
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.61
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.81
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.1
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.05
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.59
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.34
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.51
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.66
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.43
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.17
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.86**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.6
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.47*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.13
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -11.3***
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.09
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.64*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.99
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.63
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.33
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.6
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.51
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.17
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.22
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.62
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.46
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.33
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.5
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.1
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.85
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.8
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.54
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.63
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.7
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.44
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.49
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.64*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.12
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.96
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.23
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.37
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.95
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.63
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.17
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.44
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.28
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.12
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.4
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.64
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.29
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.56
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.61
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.48
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.22**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.91**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.65
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -8.52**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.18
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.35***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.96
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.69*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.93
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.43
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.28
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.45
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.46
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.17
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.57
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.28
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.45
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.15
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.25
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.51
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.58
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.75
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.49.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.54
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.69**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.93
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.01
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.28
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.42.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.9
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.58
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.39
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.23
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.17
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.25
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.34
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.93
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.92
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.25
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.17
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.58
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.27**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.01
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -6.88*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.53
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.71**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.69
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.05.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.58
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.92
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.19
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.11
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.77
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.82
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.21
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.05
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.92
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.09
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.49
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.45
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.39
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.1
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.84
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.89
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.04*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.71
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.36
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.64
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.77
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.54
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.23
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.77
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.03
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.87
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.52
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.9
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.99
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.85
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.68
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.77
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.51**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.2***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.94.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.81**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.47
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -13.64***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.25
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.98**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.64
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.71
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.01
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.74
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.72
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.01
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.16
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.44
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.51
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.54
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.8
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.04*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.78*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.83.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.98**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.22
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.3.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.57*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.71*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.61
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.1
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.06
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.46
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.97
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.94
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.17
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.08
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.66
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.35*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.09
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -5.96.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.38
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.79**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.61
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.13
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.5
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.14
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.84
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.11
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.02
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.69
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.74
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.13
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.97
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.84
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.01
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.36
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.31
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.05
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.14
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.18
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.92
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.02
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.13.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.63
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.44
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.72
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.46.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.15
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.68
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.95.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.79
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.39
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.82.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.91
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.09
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.83**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.52***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.27
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -9.13**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.79
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -12.97***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.57
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -8.3*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.32
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -1.04
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.33
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.06
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.85
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.49
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.8
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.33
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.84
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.76
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.86
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.13
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.97
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.36.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.1.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.15
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.3**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.54
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.62
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.89
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.03.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.29
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.97
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.51
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.78
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.62
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.78
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.64
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.27
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.74
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.43**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.18
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -7.04*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.7
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.88**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.52
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.21.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.41
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.05
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.76
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.03
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.94
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.6
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.65
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.04
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.89
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.76
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.93
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.33
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.28
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.23
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.96
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.06
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.27
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.01
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.06
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.21*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.55
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.53
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.81
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.94
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.38
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.06
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.87
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.71
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.69
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.73
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.82
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.69
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.57
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.3
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.04.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.13.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.26*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.47
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.16***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.8
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.5**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.77.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.68***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.34*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.39**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.79.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.63***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.5*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.67***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.07
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.02***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.97.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.71*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.8*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.47
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.73
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.68
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.47
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.29*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.21
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.94
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.8
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.12***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.8*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.34**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.61**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.45**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.05
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.48***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.57.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.26*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.39
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 8.73**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.44
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 9.96**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.22
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.85***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.49**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.19***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.46**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.37***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.04***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.09**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.48**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.32***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 11.19***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 13.36***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.76**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.71***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.66**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.4**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.49***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.17*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.43.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.37*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.22
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 9.98**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.91.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.63*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.49.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.81***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.5***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.03***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.3***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 12.14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.74*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.17***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.26***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -5.87.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.48
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.7**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.7
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.04
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.59*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.23
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.93
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.2
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.12.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.78
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.83
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.22
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.06.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.93
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.1*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.5
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.46.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.41
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.24
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.09
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.83
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.12
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.03.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.72
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.35
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.63
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.76
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.55*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.24
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.78.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.04.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.89
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.49
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.91**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.34*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.83
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 7.56*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.83
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.45**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.09*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.8**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.07*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.98**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.64**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.69**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.09**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.93**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.8**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.97***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.37*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.32**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.27**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.1**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.77
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.03
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.98.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.17
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.59*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.51
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.24
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.1
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.42***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.1**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.64**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.91***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.75**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.35.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.77***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.86**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.18**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.22
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.51
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.11.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.46
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.73
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.64.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.3
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.35
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.74
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.58.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.46
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.62*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.03
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.98.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.93
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.66
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.76
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.57
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.31
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.36
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.51*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.25
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.83
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.11
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.24
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.08*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.76
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.3
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.57.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.41
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.01
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.43**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.52
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 11.4***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.66
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 14.29***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.93**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 12.63***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 11.9***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 13.82***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 12.48***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.53***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 12.92***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 13.76***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 12.63***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 14.8***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.2**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 14.16***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.11***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.84***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 13.94***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 8.61*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.87*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 9.82**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.67
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 11.42***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.35*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 9.07**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.94*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 15.25***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.94***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.48***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15.74***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 13.59***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.19**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 15.61***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.7***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.73*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.53
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.24
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.5
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.42
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.13
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.52
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.36
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.4
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.19
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.76
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.71
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.44
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.54
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.79
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.53
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.58
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.73*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.03
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.05
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.33
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.46
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.85.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.54
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.34
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.19
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.21
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.21.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.3
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.62**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.27*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.97*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.24*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.15**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.81*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.86*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.26*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.1**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.97*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.14**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.54.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.49**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.44*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.18*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.27**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.94
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.2
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.15
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.76*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.68
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.41
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.27
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.59**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.27**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.81**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.08***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.92*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.52
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.95**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.03*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive -2.36
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.66
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.39
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.47
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.81
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.76
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.37
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.53
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.65
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.51
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -3.08
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.13
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -2.18
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -2.45
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.35
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.68*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.42*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.47.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.62**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.94*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.22*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.35*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.96
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.35
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.81
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.45
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.7
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -4.1
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.32
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.59
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.7
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.03
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.89
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.55
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.6
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.99
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.7
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.87
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.73
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.23
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.18
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.09
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.01
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.32
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.06
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.11
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.26*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.5
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.58
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.86
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.99
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.32
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.01
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.55
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.81
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.66
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.74
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.68
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.77
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.73
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.18
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.16
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.11
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.17
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.52
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.53
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.79
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.3
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.03.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.77.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.82
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.97**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.21
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.56
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.7.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.62
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.3
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.84
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.11
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.45
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.98
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.07
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.92
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.58
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.63
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.02
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.86
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.9
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.7
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.25
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.2
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.06
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.03
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.29
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.03
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.08
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.24*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.48
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.55
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.83
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.97.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.35
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.58
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.84
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.68
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.72
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.71
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.8
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.29
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.9
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.06
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.18
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.98
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.61
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.71
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.98
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.21*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.95*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.15**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.39
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.47.
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.75*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.88*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.44
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.92
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.23
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.63
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.79
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.12
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.44
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.16
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.32
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.27
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.68
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.37
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.64
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.46
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.87
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.61*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.66
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.81**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.13
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.41
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.54*
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.77
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.26
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.11
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.29
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.13
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.22
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.39
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.23
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.11
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.27
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.32
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.63
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.42
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.69
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.92.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.66.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.71
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.86**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.1
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.18
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.46
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.59.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.72
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.41
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.21
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.06
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.34
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.08
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.17
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.84
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.29
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.88
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.72
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.81
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.08
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.02
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.31
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.05.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.1
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.25**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.5
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.57
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.85
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.98.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.33
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.02
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.56
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.82
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.67
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.73
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.69
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.04
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.4
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.92
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.15*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.89*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.94.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.1**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.34
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.41.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.69*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.83*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.49
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.18
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.28
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.98
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.18
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.57
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.85
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.06
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.17
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.43
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.52
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.77.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.82
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.97**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.29
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.7.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.84
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.45
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.07
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -3.6
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.64
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -2.7
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -2.96
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.87
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.19**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.93*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.98*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.14***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.45*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.73*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.87*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.45
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.86
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -1.32
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.94
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.22
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -4.61
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.81
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.95
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.9
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.64
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.6
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.34
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.39
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.54*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.13
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.05
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.54
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.38
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.4
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -2.05
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -2.32
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.22
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.55*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.29*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.34.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.49**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.73
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.81.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.09*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.22*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.1
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.22
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.59
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.57
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.97
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.45
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.46
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.27
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.5
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.24.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.29
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.44**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.68
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.76
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.03
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.17.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.15
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.48
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.92
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.5
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.59
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.1
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.97
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.02
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.17*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.49
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.77
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.9
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.1
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.64
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.9
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.75
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.65
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.77.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.86
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.33
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.07*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.12
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.27**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.51
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.59.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.86
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.32
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.81
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.75
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.67
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.24
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.74
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.21
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.94
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.82
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.26
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.46
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.67
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.64**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.33
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.87*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.13*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.98*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.58
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.09
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.95
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.2
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.56
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.48
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.2
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.07
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.38**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.07*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.61*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.87**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.72*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.32
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.74**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.83.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.15.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.61
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.47
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.75
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.88
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.44*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.12
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.66
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.92.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.77
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.37
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.79**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.88
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.76*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.68
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.4
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.27
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.59***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.27**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.81**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.08***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.92**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.52.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.94***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.03**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.08
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.35
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.49
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.83.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.51
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.32
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.16
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.24
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.18*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.27
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.72
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.41
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.9*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.59.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.13.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.39*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.24.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.84
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.26*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.35
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.13
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.18**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.87
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.41.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.67*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.51.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.12
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.54**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.63
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.32**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.54*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.81**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.65*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.25
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.67**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.76.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.31
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -1.78
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.49
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.67
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.07
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.36
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.55
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.46
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.8
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.35
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.75
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.67
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.24
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.26
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.11
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.13
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.78
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.16
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.56
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.13
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -3.04
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.4
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.02
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.89
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.42
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.51
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.91
## TransmitCovid
## RespWhite - RespChinese NA
## NameWhite - NameBlack NA
## NameWhite - NameChinese NA
## NameWhite - NameIndian NA
## NameBlack - NameChinese NA
## NameBlack - NameIndian NA
## NameChinese - NameIndian NA
## V_Producthardwaresupplies - V_Producttoiletpaper NA
## V_Producthardwaresupplies - V_Productcigarettes -4.83***
## V_Producthardwaresupplies - V_Productbabyformula 1.25*
## V_Producttoiletpaper - V_Productcigarettes NA
## V_Producttoiletpaper - V_Productbabyformula NA
## V_Productcigarettes - V_Productbabyformula 6.08***
## V_presentation3NONE - V_presentation3Defensive 0.85*
## V_presentation3NONE - V_presentation3Prosocial NA
## V_presentation3Defensive - V_presentation3Prosocial NA
## RespWhite:NameWhite - RespChinese:NameWhite NA
## RespWhite:NameWhite - RespWhite:NameBlack NA
## RespWhite:NameWhite - RespChinese:NameBlack NA
## RespWhite:NameWhite - RespWhite:NameChinese NA
## RespWhite:NameWhite - RespChinese:NameChinese NA
## RespWhite:NameWhite - RespWhite:NameIndian NA
## RespWhite:NameWhite - RespChinese:NameIndian NA
## RespChinese:NameWhite - RespWhite:NameBlack NA
## RespChinese:NameWhite - RespChinese:NameBlack NA
## RespChinese:NameWhite - RespWhite:NameChinese NA
## RespChinese:NameWhite - RespChinese:NameChinese NA
## RespChinese:NameWhite - RespWhite:NameIndian NA
## RespChinese:NameWhite - RespChinese:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameBlack NA
## RespWhite:NameBlack - RespWhite:NameChinese NA
## RespWhite:NameBlack - RespChinese:NameChinese NA
## RespWhite:NameBlack - RespWhite:NameIndian NA
## RespWhite:NameBlack - RespChinese:NameIndian NA
## RespChinese:NameBlack - RespWhite:NameChinese NA
## RespChinese:NameBlack - RespChinese:NameChinese NA
## RespChinese:NameBlack - RespWhite:NameIndian NA
## RespChinese:NameBlack - RespChinese:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameChinese NA
## RespWhite:NameChinese - RespWhite:NameIndian NA
## RespWhite:NameChinese - RespChinese:NameIndian NA
## RespChinese:NameChinese - RespWhite:NameIndian NA
## RespChinese:NameChinese - RespChinese:NameIndian NA
## RespWhite:NameIndian - RespChinese:NameIndian NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producthardwaresupplies -1.62
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -3.47***
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -7.8***
## RespWhite:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 0.59
## RespWhite:V_Producthardwaresupplies - RespChinese:V_Productbabyformula 0.29
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Producttoiletpaper NA
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productcigarettes -1.85
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productcigarettes -6.18***
## RespChinese:V_Producthardwaresupplies - RespWhite:V_Productbabyformula 2.21
## RespChinese:V_Producthardwaresupplies - RespChinese:V_Productbabyformula 1.91*
## RespWhite:V_Producttoiletpaper - RespChinese:V_Producttoiletpaper NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespWhite:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespWhite:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productcigarettes NA
## RespChinese:V_Producttoiletpaper - RespWhite:V_Productbabyformula NA
## RespChinese:V_Producttoiletpaper - RespChinese:V_Productbabyformula NA
## RespWhite:V_Productcigarettes - RespChinese:V_Productcigarettes -4.33*
## RespWhite:V_Productcigarettes - RespWhite:V_Productbabyformula 4.06***
## RespWhite:V_Productcigarettes - RespChinese:V_Productbabyformula 3.76.
## RespChinese:V_Productcigarettes - RespWhite:V_Productbabyformula 8.39***
## RespChinese:V_Productcigarettes - RespChinese:V_Productbabyformula 8.1***
## RespWhite:V_Productbabyformula - RespChinese:V_Productbabyformula -0.3
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producthardwaresupplies 0.35
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies 1.34
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies 0.74
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -5.83***
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -3.56**
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -3.76**
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -3.73***
## NameWhite:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 2.28.
## NameWhite:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 1.95.
## NameWhite:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 1.23
## NameWhite:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 1.98.
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producthardwaresupplies 0.99
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies 0.39
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -6.18***
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -3.91***
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -4.11***
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -4.09***
## NameBlack:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 1.93.
## NameBlack:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 1.59
## NameBlack:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 0.88
## NameBlack:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 1.62
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producthardwaresupplies -0.6
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -7.16***
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -4.9***
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -5.1***
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -5.07***
## NameChinese:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 0.94
## NameChinese:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 0.61
## NameChinese:V_Producthardwaresupplies - NameChinese:V_Productbabyformula -0.11
## NameChinese:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 0.64
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Producttoiletpaper NA
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productcigarettes -6.57***
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productcigarettes -4.3***
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productcigarettes -4.5***
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productcigarettes -4.48***
## NameIndian:V_Producthardwaresupplies - NameWhite:V_Productbabyformula 1.54
## NameIndian:V_Producthardwaresupplies - NameBlack:V_Productbabyformula 1.21
## NameIndian:V_Producthardwaresupplies - NameChinese:V_Productbabyformula 0.49
## NameIndian:V_Producthardwaresupplies - NameIndian:V_Productbabyformula 1.24
## NameWhite:V_Producttoiletpaper - NameBlack:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameWhite:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameWhite:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameBlack:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameBlack:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Producttoiletpaper NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameChinese:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameChinese:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productcigarettes NA
## NameIndian:V_Producttoiletpaper - NameWhite:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameBlack:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameChinese:V_Productbabyformula NA
## NameIndian:V_Producttoiletpaper - NameIndian:V_Productbabyformula NA
## NameWhite:V_Productcigarettes - NameBlack:V_Productcigarettes 2.27*
## NameWhite:V_Productcigarettes - NameChinese:V_Productcigarettes 2.07.
## NameWhite:V_Productcigarettes - NameIndian:V_Productcigarettes 2.09.
## NameWhite:V_Productcigarettes - NameWhite:V_Productbabyformula 8.11***
## NameWhite:V_Productcigarettes - NameBlack:V_Productbabyformula 7.77***
## NameWhite:V_Productcigarettes - NameChinese:V_Productbabyformula 7.06***
## NameWhite:V_Productcigarettes - NameIndian:V_Productbabyformula 7.8***
## NameBlack:V_Productcigarettes - NameChinese:V_Productcigarettes -0.2
## NameBlack:V_Productcigarettes - NameIndian:V_Productcigarettes -0.18
## NameBlack:V_Productcigarettes - NameWhite:V_Productbabyformula 5.84***
## NameBlack:V_Productcigarettes - NameBlack:V_Productbabyformula 5.5***
## NameBlack:V_Productcigarettes - NameChinese:V_Productbabyformula 4.79***
## NameBlack:V_Productcigarettes - NameIndian:V_Productbabyformula 5.53***
## NameChinese:V_Productcigarettes - NameIndian:V_Productcigarettes 0.02
## NameChinese:V_Productcigarettes - NameWhite:V_Productbabyformula 6.04***
## NameChinese:V_Productcigarettes - NameBlack:V_Productbabyformula 5.71***
## NameChinese:V_Productcigarettes - NameChinese:V_Productbabyformula 4.99***
## NameChinese:V_Productcigarettes - NameIndian:V_Productbabyformula 5.74***
## NameIndian:V_Productcigarettes - NameWhite:V_Productbabyformula 6.02***
## NameIndian:V_Productcigarettes - NameBlack:V_Productbabyformula 5.68***
## NameIndian:V_Productcigarettes - NameChinese:V_Productbabyformula 4.96***
## NameIndian:V_Productcigarettes - NameIndian:V_Productbabyformula 5.71***
## NameWhite:V_Productbabyformula - NameBlack:V_Productbabyformula -0.33
## NameWhite:V_Productbabyformula - NameChinese:V_Productbabyformula -1.05
## NameWhite:V_Productbabyformula - NameIndian:V_Productbabyformula -0.3
## NameBlack:V_Productbabyformula - NameChinese:V_Productbabyformula -0.72
## NameBlack:V_Productbabyformula - NameIndian:V_Productbabyformula 0.03
## NameChinese:V_Productbabyformula - NameIndian:V_Productbabyformula 0.75
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3NONE -1.87
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Defensive 1.05*
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Defensive -1.22
## RespWhite:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Defensive 2.92
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Defensive 0.66
## RespChinese:V_presentation3NONE - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3NONE - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Defensive -2.26
## RespWhite:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespWhite:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespWhite:V_presentation3Prosocial NA
## RespChinese:V_presentation3Defensive - RespChinese:V_presentation3Prosocial NA
## RespWhite:V_presentation3Prosocial - RespChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3NONE 1.23.
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3NONE 0.75
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3NONE 1.42*
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Defensive 1.37
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Defensive 2.02*
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Defensive 2*
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Defensive 1.41
## NameWhite:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3NONE -0.48
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3NONE 0.2
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Defensive 0.15
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Defensive 0.8
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Defensive 0.78
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Defensive 0.18
## NameBlack:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3NONE 0.67
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Defensive 0.63
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Defensive 1.27
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Defensive 1.25
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Defensive 0.66
## NameChinese:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Defensive -0.05
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Defensive 0.6
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Defensive 0.58
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Defensive -0.01
## NameIndian:V_presentation3NONE - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3NONE - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Defensive 0.65
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Defensive 0.63
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Defensive 0.04
## NameWhite:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Defensive -0.02
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Defensive -0.61
## NameBlack:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Defensive -0.59
## NameChinese:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameChinese:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameWhite:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameBlack:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameChinese:V_presentation3Prosocial NA
## NameIndian:V_presentation3Defensive - NameIndian:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameBlack:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameWhite:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameChinese:V_presentation3Prosocial NA
## NameBlack:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## NameChinese:V_presentation3Prosocial - NameIndian:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3NONE -1.33*
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -5.71***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 0.62
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -0.87
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 0.09
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -3.65***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 1.42.
## V_Producthardwaresupplies:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 1.92*
## V_Producthardwaresupplies:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -4.07***
## V_Producthardwaresupplies:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 2.77**
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3NONE -4.38***
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 1.96**
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive 0.47
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 1.42.
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -2.32**
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 2.75**
## V_Producttoiletpaper:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 3.26***
## V_Producttoiletpaper:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -2.73**
## V_Producttoiletpaper:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 4.1***
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3NONE 6.33***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive 4.84***
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive 5.8***
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive 2.06*
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 7.12***
## V_Productcigarettes:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 7.63***
## V_Productcigarettes:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial 1.64.
## V_Productcigarettes:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 8.48***
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Defensive -1.49.
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Defensive -0.53
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Defensive -4.27***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Defensive 0.79
## V_Productbabyformula:V_presentation3NONE - V_Producthardwaresupplies:V_presentation3Prosocial 1.3
## V_Productbabyformula:V_presentation3NONE - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3NONE - V_Productcigarettes:V_presentation3Prosocial -4.69***
## V_Productbabyformula:V_presentation3NONE - V_Productbabyformula:V_presentation3Prosocial 2.15*
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Defensive 0.96
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive -2.78**
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 2.28*
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 2.79**
## V_Producthardwaresupplies:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -3.2**
## V_Producthardwaresupplies:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 3.64***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Defensive -3.74***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 1.32
## V_Producttoiletpaper:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 1.83.
## V_Producttoiletpaper:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -4.16***
## V_Producttoiletpaper:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 2.68**
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Defensive 5.06***
## V_Productcigarettes:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 5.57***
## V_Productcigarettes:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -0.42
## V_Productcigarettes:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 6.42***
## V_Productbabyformula:V_presentation3Defensive - V_Producthardwaresupplies:V_presentation3Prosocial 0.51
## V_Productbabyformula:V_presentation3Defensive - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Productbabyformula:V_presentation3Defensive - V_Productcigarettes:V_presentation3Prosocial -5.48***
## V_Productbabyformula:V_presentation3Defensive - V_Productbabyformula:V_presentation3Prosocial 1.35
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Producttoiletpaper:V_presentation3Prosocial NA
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial -5.99***
## V_Producthardwaresupplies:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 0.85
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productcigarettes:V_presentation3Prosocial NA
## V_Producttoiletpaper:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial NA
## V_Productcigarettes:V_presentation3Prosocial - V_Productbabyformula:V_presentation3Prosocial 6.84***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producthardwaresupplies -0.41
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies 0.67
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -0.37
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 2.57.
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -0.3
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 1.61
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.54
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.95**
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.11***
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -1.92
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -5.6*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.16
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.77**
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.01
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -5.87*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 1.97
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.18
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 0.96
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 2.53
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.19
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 0.86
## RespWhite:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.09*
## RespWhite:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.45
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producthardwaresupplies 1.08
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies 0.04
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 2.98
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies 0.11
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 2.02
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.13
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.54
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -7.7***
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -1.51
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -5.19**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -0.74
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.36**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -1.6
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -5.46**
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.38
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.59
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.37
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 2.94
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.6
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 1.28
## RespChinese:NameWhite:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.5
## RespChinese:NameWhite:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.86
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producthardwaresupplies -1.03
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 1.9
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -0.96
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 0.95
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -1.21
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -4.62***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -8.78***
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -2.59.
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -6.27**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -1.82
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -7.44**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -2.67*
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -6.54**
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 1.31
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 1.52
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 0.29
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 1.86
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 0.52
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 0.2
## RespWhite:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 2.43.
## RespWhite:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -0.22
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producthardwaresupplies 2.93
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies 0.07
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 1.98
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.17
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.58
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -7.74***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -1.55
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -5.23**
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -0.79
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.4***
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -1.64
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -5.5**
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.34
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.55
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.33
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 2.9
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.56
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 1.23
## RespChinese:NameBlack:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.46
## RespChinese:NameBlack:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.82
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producthardwaresupplies -2.86
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies -0.95
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -3.11
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -6.52***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -10.68***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -4.49***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -8.17***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -3.72**
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -9.34***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -4.57***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -8.44***
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula -0.59
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula -0.38
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula -1.61
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula -0.04
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula -1.38
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -1.7
## RespWhite:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 0.53
## RespWhite:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -2.12
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producthardwaresupplies 1.91
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -0.25
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.65
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -7.81***
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -1.62
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -5.3**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -0.86
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.48**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -1.71
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -5.57**
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.27
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.48
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.25
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 2.83
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.48
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 1.16
## RespChinese:NameChinese:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.39
## RespChinese:NameChinese:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.75
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producthardwaresupplies -2.16
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -5.56***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -9.73***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -3.53**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -7.21**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -2.77*
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -8.39***
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -3.62**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -7.48**
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 0.36
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 0.57
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula -0.66
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 0.91
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula -0.43
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula -0.75
## RespWhite:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 1.48
## RespWhite:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula -1.16
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productcigarettes -3.41
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productcigarettes -7.57***
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productcigarettes -1.38
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productcigarettes -5.06**
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productcigarettes -0.61
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productcigarettes -6.23**
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productcigarettes -1.47
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productcigarettes -5.33**
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameWhite:V_Productbabyformula 2.51
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameWhite:V_Productbabyformula 2.72
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameBlack:V_Productbabyformula 1.5
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameBlack:V_Productbabyformula 3.07.
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameChinese:V_Productbabyformula 1.73
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameChinese:V_Productbabyformula 1.41
## RespChinese:NameIndian:V_Producthardwaresupplies - RespWhite:NameIndian:V_Productbabyformula 3.64
## RespChinese:NameIndian:V_Producthardwaresupplies - RespChinese:NameIndian:V_Productbabyformula 0.99
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameWhite:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameBlack:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameChinese:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Producttoiletpaper NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespWhite:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productcigarettes NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameWhite:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameBlack:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameChinese:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespWhite:NameIndian:V_Productbabyformula NA
## RespChinese:NameIndian:V_Producttoiletpaper - RespChinese:NameIndian:V_Productbabyformula NA
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productcigarettes -4.16.
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 2.03
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -1.65
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 2.79*
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -2.82
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 1.94
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -1.92
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 5.92***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 6.13*
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 4.91***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 6.48**
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 5.14***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 4.81*
## RespWhite:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 7.04***
## RespWhite:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 4.4.
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productcigarettes 6.19**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes 2.51
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 6.96**
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes 1.34
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 6.1*
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 2.24
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 10.08***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 10.29***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 9.07***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 10.64***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 9.3***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 8.98***
## RespChinese:NameWhite:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 11.21***
## RespChinese:NameWhite:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 8.56***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productcigarettes -3.68
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 0.77
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -4.85.
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes -0.09
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -3.95
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 3.89**
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 4.1.
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 2.88*
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 4.45.
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 3.11*
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 2.79
## RespWhite:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 5.02***
## RespWhite:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 2.37
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productcigarettes 4.45.
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -1.17
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 3.59
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -0.27
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 7.57**
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 7.78***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 6.56**
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 8.13***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 6.79**
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 6.47***
## RespChinese:NameBlack:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 8.69***
## RespChinese:NameBlack:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 6.05**
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productcigarettes -5.62*
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes -0.85
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -4.72*
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 3.13*
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 3.34
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 2.11.
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 3.68
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 2.34.
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 2.02
## RespWhite:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 4.25***
## RespWhite:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 1.6
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productcigarettes 4.77.
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes 0.9
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 8.75***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 8.95***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 7.73**
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 9.3***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 7.96**
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 7.64***
## RespChinese:NameChinese:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 9.87***
## RespChinese:NameChinese:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 7.22***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productcigarettes -3.86
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 3.98**
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 4.19.
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 2.96*
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 4.54.
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 3.2*
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 2.87
## RespWhite:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 5.1***
## RespWhite:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 2.46
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameWhite:V_Productbabyformula 7.84**
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameWhite:V_Productbabyformula 8.05***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameBlack:V_Productbabyformula 6.83**
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameBlack:V_Productbabyformula 8.4***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameChinese:V_Productbabyformula 7.06**
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameChinese:V_Productbabyformula 6.73***
## RespChinese:NameIndian:V_Productcigarettes - RespWhite:NameIndian:V_Productbabyformula 8.96***
## RespChinese:NameIndian:V_Productcigarettes - RespChinese:NameIndian:V_Productbabyformula 6.32**
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameWhite:V_Productbabyformula 0.21
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula -1.02
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula 0.56
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -0.79
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.11
## RespWhite:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 1.12
## RespWhite:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -1.52
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameBlack:V_Productbabyformula -1.22
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula 0.35
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -0.99
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.32
## RespChinese:NameWhite:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 0.91
## RespChinese:NameWhite:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -1.73
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameBlack:V_Productbabyformula 1.57
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula 0.23
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -0.09
## RespWhite:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 2.14
## RespWhite:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.51
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameChinese:V_Productbabyformula -1.34
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -1.66
## RespChinese:NameBlack:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 0.57
## RespChinese:NameBlack:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -2.08
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameChinese:V_Productbabyformula -0.32
## RespWhite:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 1.91
## RespWhite:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.74
## RespChinese:NameChinese:V_Productbabyformula - RespWhite:NameIndian:V_Productbabyformula 2.23
## RespChinese:NameChinese:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -0.41
## RespWhite:NameIndian:V_Productbabyformula - RespChinese:NameIndian:V_Productbabyformula -2.64
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3NONE -0.98
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 1.77*
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE -0.29
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 1.45.
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -0.93
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 1.98*
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -0.11
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 2.04*
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -0.27
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 2.04*
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.03
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 2.67**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.35
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 2.63**
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -0.78
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3NONE 2.74
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE 0.69
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 2.43
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE 0.05
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 2.95
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE 0.87
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 3.02
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 0.71
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 3.02
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 2.01
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 3.65.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 1.33
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 3.6.
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 0.19
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3NONE -2.06
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE -0.31
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -2.7
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 0.21
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -1.87
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.28
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -2.04
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.28
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -0.74
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 0.91
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -1.41
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 0.86
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.55
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3NONE 1.74
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -0.64
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 2.27
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE 0.18
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 2.33
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 0.02
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 2.33
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.32
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 2.96
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.64
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 2.92
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -0.49
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3NONE -2.38
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 0.52
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -1.56
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.59
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -1.72
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.59
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -0.42
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 1.22
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -1.1
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 1.17
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.23
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3NONE 2.91
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE 0.82
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 2.97
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive 0.66
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 2.97
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.96
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 3.6.
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 1.28
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 3.56.
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive 0.15
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3NONE -2.08
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 0.07
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -2.25
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 0.07
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive -0.95
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 0.7
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive -1.62
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 0.65
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -2.76
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Defensive 2.15
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Defensive -0.16
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Defensive 2.15
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Defensive 1.14
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Defensive 2.78
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Defensive 0.46
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Defensive 2.73
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Defensive -0.67
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3NONE - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Defensive -2.31
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive 0
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -1.01
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 0.63
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -1.69
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 0.58
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -2.82
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Defensive 2.31
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive 1.3
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 2.94
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive 0.62
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 2.9
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -0.51
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Defensive -1.01
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 0.63
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -1.69
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 0.58
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -2.82
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Defensive 1.65
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -0.68
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 1.6
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -1.81
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Defensive -2.32
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive -0.05
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.46
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Defensive 2.27
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -1.14
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Defensive -3.41
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_presentation3Defensive - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameWhite:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameBlack:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameChinese:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespWhite:NameIndian:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_presentation3Prosocial - RespChinese:NameIndian:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3NONE -1.85
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE -1.34.
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -3.18
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -4.89***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -8.38***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE -0.15
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE -0.46
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.4
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.19
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.01
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.68
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.21*
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.94**
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.41
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.57
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.1
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.89
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.62**
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.37***
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.22*
## RespWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.47
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3NONE 0.51
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -1.33
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -3.03
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -6.53***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 1.7
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 1.4
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.46
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.33
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.86
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 0.17
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -0.35
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -5.09***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.26
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 2.42.
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.95
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.74.
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.76
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.52***
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.07.
## RespChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 3.32*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3NONE -1.84
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -3.55***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -7.04***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 1.19
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 0.88
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.94
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.85
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 1.35
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -0.34
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -0.87
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -5.61*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 1.75.
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 1.91
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.44*
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.23
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -1.28
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.03**
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 3.56***
## RespWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 2.81
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3NONE -1.71
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -5.2***
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 3.03
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 2.72*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.78
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.01
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 3.19
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 1.5
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 0.97
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -3.76**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 3.59.
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 3.75**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.28*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.07**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 0.56
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.19**
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 5.4*
## RespChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 4.65***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3NONE -3.5.
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 4.74***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 4.43*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.49***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.7
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 4.9***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 3.21
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 2.68**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -2.06
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 5.29***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 5.46*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.99***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.78**
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 2.27*
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -2.48
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 7.1***
## RespWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 6.36**
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3NONE 8.23***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE 7.93***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.99***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.2***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 8.39***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 6.7***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive 6.18**
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive 1.44
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 8.79***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 8.96***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.48***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.28***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial 5.77**
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial 1.01
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 10.6***
## RespChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 9.85***
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3NONE -0.31
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.25
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.04
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.16
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.53
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.06*
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.79**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.56
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.72
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.25
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.04
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.47*
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.22**
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.37*
## RespWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.62
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.06
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.73*
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.47
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.22
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Defensive -1.75
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.49***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.86
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Defensive 1.03
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.56
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.35
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.16
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.91***
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.67
## RespChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.93
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.79
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 0.41
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.28
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -1.81
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.55**
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.81
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.97
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.5
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.29
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.22.
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -6.97**
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.61*
## RespWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.87
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Defensive 3.2
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive 1.51
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive 0.98
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -3.76*
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 3.59
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 3.76*
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.29.
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.08*
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 0.57
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.19**
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 5.4*
## RespChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 4.66**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Defensive -1.69
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -2.22*
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -6.96**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 0.4
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.56
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.09
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.88
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -2.63*
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.38**
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 2.21*
## RespWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Defensive -0.52
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -5.26**
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.09
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 2.25
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.78
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.57
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.94
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.69***
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 3.9.
## RespChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 3.15.
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Defensive -4.74*
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 2.61*
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 2.78
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.31**
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.1
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -0.41
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -5.17*
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.42***
## RespWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 3.68
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Defensive 7.35**
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 7.52***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.04***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.84***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial 4.33.
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -0.43
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 9.16***
## RespChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 8.42***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Defensive 0.16
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.69
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.48
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.02**
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.78***
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.81
## RespWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 1.06
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.53
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.32
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.19
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productcigarettes:V_presentation3Prosocial -7.94***
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.65
## RespChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.9
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.21
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.72**
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -8.47***
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.12
## RespWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.37
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial -3.51
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -8.26***
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 1.33
## RespChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 0.58
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productcigarettes:V_presentation3Prosocial -4.76*
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 4.83***
## RespWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 4.09.
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:V_Productbabyformula:V_presentation3Prosocial 9.59***
## RespChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial 8.84***
## RespWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:V_Productbabyformula:V_presentation3Prosocial -0.75
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.53
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE 0.12
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.41
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.18
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.58
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.72
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.61
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.71***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.49**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.42***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.98**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.32
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.86
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.44
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 1.11
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.7
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.54
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.21
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.19
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.89
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.33
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.04
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.57
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.21***
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.86
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.48.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.8
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.94
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.59
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.74
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.63
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.11
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.1
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.24.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.14*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.91**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.96
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.01**
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.81*
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.92
## NameWhite:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.6*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3NONE -0.41
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.94
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.71.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -2.11
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.25
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.14
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -8.24***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -5.02***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.95***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -4.51**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE -0.21
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.33
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE -0.09
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.58
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.23
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.07
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.68
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.72
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.36
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.8
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.57
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.11
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.74***
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.39
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.01*
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.33.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.41
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.06
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.21
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.1
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.95
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.57
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.7
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.68**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.44**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.5
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.54**
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.47
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.27.
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.39
## NameBlack:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.07.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.52
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.3
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.69
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.84
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.73
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.82***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.61**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.54***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -4.1**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.2
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.74
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.33
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.99
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.82
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.66
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.09
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.31
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.78
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.21
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.16
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.69
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.33***
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.97
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.6*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.92
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.82
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.47
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.63
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.52
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.36
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.98
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.12.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.26*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.03**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.08
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.13**
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.88.
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.69*
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.8
## NameChinese:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.48*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.78
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.17
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.31
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.2
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.3***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -4.08**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -6.01***
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.57*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.72
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 1.27
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.85
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 1.52
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.29
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.13
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.62
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.78
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.3
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.73
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.63
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.17
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.8**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.45
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.08.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.39
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.35.
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.99
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.15
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.04
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.52
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.89
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.51
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.64*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.74*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.5*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.56
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.6**
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.41*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.21*
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.32
## NameIndian:V_Producthardwaresupplies:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.01*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.61
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.46
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.57
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -5.52***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -2.31.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -4.24**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -1.8
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 2.5.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 3.05*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 2.63.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 3.29*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.48
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.64
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.39.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.99
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.08.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.51*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.14
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.61
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -4.03*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 0.33
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.3
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -0.62
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 5.12**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.77
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.93*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.82
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.3.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.66.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.29*
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.42**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.96
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.73
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.22
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.83.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.18**
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.99***
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.1.
## NameWhite:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.78***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.86
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.97
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -6.13***
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -2.91*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -4.84**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -2.4.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 1.89
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 2.44.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 2.02
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 2.69.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.12
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.04
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.79
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.38
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.47
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.9.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.54
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -4.63*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.28
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.91
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.22
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.52*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.16
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.32*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.21
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.69
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.06
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.68*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.81**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.57
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.33.
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.39
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.43*
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.58**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.38**
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.49
## NameBlack:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.18**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.11
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -6.99***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -3.77**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -5.7***
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.26*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 1.04
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 1.58
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 1.16
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 1.83
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.98
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.82
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.93
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.47
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.61
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.05
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.32
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.15
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.49**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.14
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -2.76
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.08
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.66.
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.31
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.46
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.35
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.2
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.82
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.95*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.43*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.19*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.24
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.29*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.72*
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.53**
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.64
## NameChinese:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.32*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3NONE -7.1***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE -3.88**
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -5.81***
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE -3.37*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 0.93
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 1.47
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 1.05
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 1.72
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.09
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.93
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.82
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.58
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.51
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.94
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.43
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.04
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.6**
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.25
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -2.87
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.19
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.55.
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.2
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.35
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.24
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.72
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.09
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.71
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.85*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.53*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.3*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.35
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.4*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.61*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.42*
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.53
## NameIndian:V_Producttoiletpaper:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.21*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3NONE 3.22*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE 1.29
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 3.73*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 8.02***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 8.57***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 8.15***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 8.82***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.01**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.17***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 8.92***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 6.52***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.6***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.03***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.67***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 7.13***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive 1.5
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 5.85***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 4.22*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 4.91**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 10.65***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 8.29***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 9.45***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 8.34***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.82***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.19***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.81***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.94***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.56*
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.8
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.74**
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.7
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.71***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.51***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.62***
## NameWhite:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.31***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3NONE -1.93
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 0.51
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 4.81***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 5.35***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 4.93***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 5.6***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.79
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.95.
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.7**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.3.
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.38**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.82**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.45*
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.91*
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -1.72
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.63
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 1.01
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 1.69
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 7.43***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 5.08**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 6.23***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 5.12**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.6***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.97**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.59***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.72***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.34
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.42
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.52
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.52
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.49***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.29***
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.41**
## NameBlack:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.09***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3NONE 2.44
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 6.74***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 7.28***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 6.86***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 7.53***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.72*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 4.88**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.63***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.23**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.31***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.75***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.38**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.84**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive 0.21
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 4.56**
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 2.94.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 3.62.
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 9.36***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 7.01***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 8.16***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 7.05***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.53***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.9***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.52***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.65***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.27
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.51
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.45*
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.41
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.42***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.22***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.34***
## NameChinese:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.02***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3NONE 4.3**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 4.84***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 4.42**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 5.09***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.28
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.44
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.19**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.79
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.87**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.31**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.94.
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.41.
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -2.23
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive 2.12
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive 0.5
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive 1.18
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 6.92***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 4.57**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 5.72***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 4.61*
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.09**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.46**
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.08***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.21***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.17
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.93
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.02
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.03
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.98***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.78***
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.9*
## NameIndian:V_Productcigarettes:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.58***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3NONE 0.55
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE 0.13
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.79
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.02
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.86
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.89
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.51
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.58
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.01
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.36
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.89
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.53***
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.17
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.8*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.12.
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.62
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.27
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.43
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.32
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.8
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.16
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.78
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.92.
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.46*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.23**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.28
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.33**
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.68
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.49*
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.6
## NameWhite:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.28.
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3NONE -0.42
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.25
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.56
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.4
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.35
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.05
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.03
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.47
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.9
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.44
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.07***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.72
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.34*
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.66*
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.08
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.27
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.88
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.23
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.25
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.62
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.37
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.01**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.77**
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.83
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.87***
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.14
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.94.
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.06
## NameBlack:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.74
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3NONE 0.67
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.14
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.98
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.77
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.64
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.45
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.88
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.48
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.02
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -6.65***
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.3
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -3.93*
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.24.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.5
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive 0.14
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.3
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.19
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.67
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.04
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.66
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.79.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.59**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.35**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.41
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.45**
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.56
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.36.
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.47
## NameChinese:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.16.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.81
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.65
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.1
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.3
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.22
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.22
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.15
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.69
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.32***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.97.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.59*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.91*
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.83
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.52
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.63
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.48
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.37
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.12
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.26**
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.02***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.08.
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.12***
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.89
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.69
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.19
## NameIndian:V_Productbabyformula:V_presentation3NONE - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.49
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.16
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.91
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.51
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.59
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.03
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.66
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.13
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -4.51*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.16
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.78
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.1
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.64*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.29
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.44.
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.33
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.81
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.18
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.8.
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.93*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.45
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.21
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.26
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.31
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.7*
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.5**
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.62
## NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.3*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.75
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.35
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.43
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.87
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.5
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.96
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -4.67*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.32
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.94
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.26
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.48*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.13
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.28.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.17
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.65
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.02
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.64.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.77*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.61
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.37.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.43
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.47.
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.54*
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.34**
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.46
## NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.14**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.4
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.32
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.12
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.25
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.79
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.42***
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -3.07
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.69*
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.01.
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.73
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.62
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.53
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.58
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.1
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.27
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.89
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.02
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.36**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.12**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.18
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.22**
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.79
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.59
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.29
## NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.39
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.09
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.52
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.15
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.62
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.02*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.67
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -2.29
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.61
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.13.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.78
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.94
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.82
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.31
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.67
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.29
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.43*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.95
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.72.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.77
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.82.
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.19*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5*
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.11
## NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.79*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.43
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.93
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.47
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.11***
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -2.75
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.38*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -3.7.
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 2.05
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.31
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.85
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.26
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.22
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.59
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.21
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.34
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.04*
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.8**
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.86
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.9**
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.11
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.91
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.02
## NameWhite:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.7
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.37
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.9
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -7.54***
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -3.18
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -4.81*
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -4.13.
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 1.61
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -0.74
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 0.42
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -0.69
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.21
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.15
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.77
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.91
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.47**
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.24**
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.29
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.34**
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.67
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.48
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.41
## NameBlack:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.27
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.47
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.17*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -0.82
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -2.44
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -1.76
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.98.
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.63
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.78
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.67
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.15
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.52
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.14
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.27*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.11
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.87.
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.92
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.97*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.04*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.84*
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.96
## NameChinese:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.64*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Defensive -5.64**
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive -1.28
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -2.91
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -2.23
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 3.51
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 1.16
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 2.32
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 1.21
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.69
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.05
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.68
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.81.
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.57.
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.33*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.39
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.44*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.57.
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.38*
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.49
## NameIndian:V_Producttoiletpaper:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.17*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Defensive 4.35*
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive 2.73
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 3.41
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 9.15***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 6.8**
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 7.96***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 6.84**
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.32***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.69***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.31***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.45***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.07
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.3
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.25.
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.2
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.21***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.02***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.13***
## NameWhite:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.81***
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Defensive -1.63
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive -0.94
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 4.8*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 2.44
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 3.6.
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 2.49
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.97
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.34
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.96*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.09**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.29
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.05
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.11
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.15
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.86*
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.66**
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.77
## NameBlack:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.46**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Defensive 0.68
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 6.42**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 4.07*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 5.23**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 4.12.
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.6*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.96*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.58**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.72***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.66
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.43
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.52
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.53
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.48**
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.29***
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.4*
## NameChinese:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.08***
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Defensive 5.74**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive 3.39
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 4.54*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 3.43
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.91.
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.28*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.9*
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.04**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.34
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.11
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.84
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.21
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.8**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.61**
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.72.
## NameIndian:V_Productcigarettes:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.4**
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Defensive -2.35
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive -1.2
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -2.31
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.83
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.46
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.84
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.29
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.09***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.85***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.9*
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.95***
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.06
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.86
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.02
## NameWhite:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.66
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Defensive 1.16
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive 0.05
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.53
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.89
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.51
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.65
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.73*
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.5**
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.55
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.6**
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.41
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.22
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.33
## NameBlack:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.01
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Defensive -1.11
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.63
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.26
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.36
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.49
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.89**
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.65***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.71.
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.75***
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.26
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.06
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.83
## NameChinese:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.86
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.48
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.47
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.6
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.78*
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.54**
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.6
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.64**
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.37
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.17
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.28
## NameIndian:V_Productbabyformula:V_presentation3Defensive - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.97
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.37
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.12
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.26**
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.02**
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.08
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.12**
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.89
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.69
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.2
## NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.49
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.62
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.63**
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.39**
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.44
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.49**
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.52
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.32
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.56
## NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.12
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.25**
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.01***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.07.
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.11***
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.9
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.7
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.18
## NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.5
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.38***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.14***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.2*
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.25***
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.23
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.57
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.32
## NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.36
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.76
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.18
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.87
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.15***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.95***
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.06*
## NameWhite:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.74***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.94
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.1
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.91***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.71***
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.83**
## NameBlack:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.51***
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.05
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.96*
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.77**
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.88
## NameChinese:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.56**
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.01***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.82***
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.93**
## NameIndian:V_Productcigarettes:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.61***
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.81
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.08
## NameWhite:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.6
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.89
## NameBlack:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.21
## NameChinese:V_Productbabyformula:V_presentation3Prosocial - NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.68
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE 0.27
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.93
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.4
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 2.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -1.76
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 1.29
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -1.84
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.46
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.64
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.93
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -3.82
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.84
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.5
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.45
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.01***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -8.14**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.16*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.94.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.63***
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.13.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.38
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.52
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.67
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.32
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.25
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.9
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.59
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.1
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.94
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.2
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.92
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.89
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.91
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.23
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.83
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.95
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.34
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.28
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.35.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.43
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.4
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.41
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.23
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.12
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.75
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.41**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.49
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.96
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.67
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.37*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.78
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.43
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.72
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.31
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.42
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.33
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.6
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.37
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.41
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.81
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.95
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.51
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.59
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.67
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.36*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.29
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.26**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.77
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.89
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.5*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.54.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.73
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.5
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.38.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.31
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.21
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.47
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.66
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE 0.13
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 1.99
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.02
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 1.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.73
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.9
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.67
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -4.08.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.6
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.72
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.27**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -8.41***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.82
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.42**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.89***
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.83
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.39*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.26
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.4
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.06
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.02
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.64
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.32
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.36
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.2
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.46
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.18
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.65
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.49
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.21
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.07
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.09
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.7
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.67
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.67
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.38
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.01
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.67**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.41
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.64*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.04
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.82
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.45
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.13
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.04
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.06
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.86
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.86
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.1
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.86
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.69
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.25
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.88
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.33
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.93
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.62*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.52**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.52
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.76**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.27
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.46
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.23
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.11.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.05
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.48
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.73
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.2
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE -0.53
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 1.33
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.68
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 0.36
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.77
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.39
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.57.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -4.75.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.77
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.26
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.43
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.94***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.07***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.49*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -7.09**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.87*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -10.56***
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.49*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -6.06*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE -0.55
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.41
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -0.26
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.39
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.68
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.03
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.66
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.03
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.87
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.13
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.85
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.82
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.15
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.9
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.88
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.41
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.42
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.36
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.33
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.34
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.7
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.68.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.34**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.42
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.89
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.26
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.3*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.49.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.5
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.79
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.8
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.49
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.4
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.2
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.53
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.44
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.2
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.12
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.02
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.59
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.21
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.66
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.6
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.29*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.22
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.19**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.7
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.82
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.19
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.43**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.61
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.8
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.57
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.45
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.38
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.14
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.07*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.54
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE 1.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -2.15
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 0.89
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -2.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -0.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.04.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 0.53
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -4.22.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.9
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.85
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.4**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -8.54***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.95
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -6.55**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.34
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -10.03***
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.96
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -5.53*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE -0.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.93
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.15
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.5
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.19
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.5
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.34
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.6
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.32
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.29
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.51
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.62
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.43
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.35
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.94
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.68
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.95
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.83
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.8
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.81
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.16
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.52
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.15
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.81**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.89
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.36
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.77*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.18
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.96
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.03
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.32
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.27
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.91
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.93
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.99
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.97
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.73
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.01
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.41
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.56
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.19
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.75*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.69
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.66**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.17
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.29
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.66
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.9**
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.14
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.33
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.98.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.92
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.6
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.07
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE -4.01
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.96
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -4.1
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -2.72
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -5.89*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.32
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -6.07*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -3.1.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -2.59
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.76
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -2.71
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -9.26***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -10.4***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -4.81**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -8.41**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -5.2**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -11.88***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -4.82**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -7.39**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE -1.88
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -1.73
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -1.59
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE -0.93
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -2.01
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -1.35
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 0.33
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.35
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.19
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -4.45
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.17
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -4.15
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.66
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.48
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.43
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.2*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.08
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.54
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.1
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.69
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.66.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.67
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.02
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.37
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.66***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.74.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.22
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.58
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.63**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.03
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.81*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.17
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.46
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.12
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.95
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.83
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.07
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.13
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.85
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.89
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.13
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.16
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.44
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.7
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.74
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.11
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.34
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.92.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.61**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.55.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.51**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.02
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.15
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.51*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.75**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.28
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.47
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.24
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.12
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.06
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.47
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.74
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.21
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE 3.05
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -0.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE 1.29
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.88
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 2.69
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -2.06
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.91
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.42
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.25
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.3
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -5.25.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -6.39**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -0.8
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -4.4.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -1.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -7.87**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.81
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -3.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.13
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.28
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 2.42
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.08
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 2
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.66
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.34
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 1.66
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.82
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.84
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.67
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.53
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.58
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.19
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.47
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.11.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.32
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.99
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.99
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.65*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.27
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.21
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.43
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.62.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.98
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.8
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.47.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.89
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.06
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.08
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.88
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.16
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.12
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.88
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.17
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.57
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.71
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.27
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.9
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.35*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.09
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.6.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.46
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.5*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.99
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.5
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.74*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.29.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.48
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.25
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.13*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.07
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.54
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.75*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.22
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE -3.14
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.76
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -4.93.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.36
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -5.11.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -2.14
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.63
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.8
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.75
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -8.3***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.44***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.85*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -7.45**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -4.24**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -10.92***
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.86*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -6.42*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE -0.91
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.77
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -0.63
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.03
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -1.05
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.39
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.29
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.39
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.49
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.21
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.19
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.62
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.54
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.24.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.05
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.58
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.06
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.72
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.7
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.7
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.06
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.04.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.7**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.78
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.25
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.62
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.67**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.07
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.85.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.13
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.16
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.02
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.13
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.04
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.83
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.89
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.07
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.17
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.12
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.66
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.22
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.3
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.96
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.65*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.59
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.55**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.06
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.19
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.55.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.79**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.24
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.44
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.2
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.08
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.02
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.51
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.7.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.17
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE 1.38
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -1.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 2.78
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -1.98
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 1.51
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.34
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 1.39
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -5.16.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -6.3**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -0.71
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -4.31.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -1.1
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -7.78**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.72
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -3.29
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.22
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 2.36
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 2.51
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.17
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 2.09
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 2.75
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 4.43.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 1.75
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.91
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.92
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.76
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.62
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.67
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.11
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.56
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.19.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.44
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.43
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.08
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.73
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.91
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.57*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.36
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.12
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.52
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.53.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.06
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.71
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.27
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.56.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.97
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.15
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.27
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.17.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.97
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.25
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.21
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.97
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.26
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.66
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.36
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.99
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.43*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.17
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.51.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.55
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.42*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.08
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.65*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.38.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.57
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.34
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.22*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.16
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.63
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.84*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.31
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE -3.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 1.39
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -3.36
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -0.38
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.13
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.04
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.01
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.54***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.68**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.69*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.48
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.17**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.1
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.67.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.84
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.98
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.13
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.79
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.71
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.37
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 3.05.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.37
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.47
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.73
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.46
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.43
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.38
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.24
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.29
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.49
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.8
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.81.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.94
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.05
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.7
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.66
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.29
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.95**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.5
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.14
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.91*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.32
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.89
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.18
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.59
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.77
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.89
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.79
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.59
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.13
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.88
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.42
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.98
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.61
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.05
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.89.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.83
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.8*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.31
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.43
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.79
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.04*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.19
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.96
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.84.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.78
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.25
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.46**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.93
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE 4.57.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -0.18
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.8
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 3.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 3.13
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 3.19
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -3.37
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -4.51.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 1.08
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -2.52
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 0.69
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -5.99*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 1.07
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -1.49
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 4.02
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 4.16.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 4.3
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 4.96*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 3.89
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.54*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 6.22*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 3.54
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.7
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.44
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.72
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.75
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.55*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.41
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.47.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.98*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.35
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.99*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.21
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.23
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.23
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.87
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.52
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.89
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.77.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.15
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.68
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.73
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.86
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.92
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.07*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.36*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.77
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.95.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.06.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.97*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.77.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.04
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.76.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.05*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.45
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.59*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.15.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.78*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.23**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.97
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.72
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.35
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.62
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.87
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.74
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.38
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.86
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.17*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.37*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.14*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.02**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.95*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.42
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.63**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.11*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE -4.75.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.78
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE -1.26
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.44
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -1.38
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -7.94***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -9.08***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -3.49*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -7.09**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -3.88*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -10.56***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -3.5*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -6.06*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE -0.55
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE -0.41
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE -0.27
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.39
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.68
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.03
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.65
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.03
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.87
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.13
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.85
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.82
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.98
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.16
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.9
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.88
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.41
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.42
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.36
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.34
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.34
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.7
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.05
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.68.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.34**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.42
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.89
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.26
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.3*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.71
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.49
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.5
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.79
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.8
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.38
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.49
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.4
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.2
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.53
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.43
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.19
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.02
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.21
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.66
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.6
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.29*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.19**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.7
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.83
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.19
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.43**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.8
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.57
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.45
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.38
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.15
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.06*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.54
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE 2.98
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 3.49
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 3.32
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 3.37
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -3.19
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -4.32.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 1.26
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -2.34
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 0.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -5.81*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 1.26
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -1.31
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 4.2
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 4.34.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 4.49
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 5.14*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 4.07
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 4.72*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 6.41*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 3.72
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.62
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.9
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.93
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.73*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.59
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.65.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.13
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.16*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.53
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.17*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.39
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.42
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.41
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 4.05
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.7
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 1.07
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.59.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.33
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.86
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.49
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.55
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.04
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.74
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.25*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.54*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.95
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.13.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.24.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.15*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.95.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.19.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.95.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.23*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.63
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.77*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.33.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.96*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.41**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.15
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.54
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.53
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.44
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.05
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.92
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.56
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.68
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.36*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.55*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.32*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.2**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.13*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.61
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.82**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.29*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE 0.51
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.39
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.16***
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.3**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -1.71
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.31*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.1
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -8.78**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -1.72
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 1.22
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 1.36
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.51
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 2.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 1.09
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.75
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 3.43*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.75
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.09
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.35
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.05
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.76.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.62
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.67
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.11
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.18
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.56
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.19*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.41
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.56
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.43
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.27
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.9
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.57**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.64
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.52
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.53*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.06
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.71
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.27
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.56
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.97
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.15
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.27
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.17
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.97
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.25
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.21
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.97
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.26
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.66
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.8.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.36
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.99
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.43.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.83
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.51.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.45
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.42*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.05
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.41
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.65*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.38*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.57
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.34.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.22*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.16
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.63
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.84**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.31
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.17
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE -0.12
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.67*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.81***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.22
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.82*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.61
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.3***
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.23
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.8*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.71
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.85
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.66
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.58
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.23
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.92
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.23
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.61
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.59
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.56
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.24
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.11
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.16
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.62
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.67
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.05
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.68
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.07
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.08
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.57
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.79
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.42
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.08**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.16
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.63
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.04*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.45
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.23
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.76
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.05
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.64
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.76
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.66
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.26
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.7
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.46
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.74
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.14
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.29
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.85
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.48
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.92.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.34
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.02*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.96
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.93**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.44
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.56
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.93
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.17**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.06
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.83
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.71*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.65
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.12
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.33.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.8
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE 0.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.5***
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.64**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.65*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.12**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.06
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.63.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.88
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 1.02
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.17
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.75
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.41
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 3.09.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.41
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.43
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.69
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.41
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.39
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.42.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.28
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.33
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.84
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.22
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.86.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.07
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.9
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.09
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.74
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.61
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.24
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.91**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.98
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.46
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.18
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.87*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.27
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.05
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.93
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.22
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.63
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.81
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.93
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.63
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.09
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.87
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.63
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.92
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.32
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.46
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.02
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.65
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.09
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.16
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.85.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.79
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.75*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.26
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.39
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.75
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.99*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.04*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.23
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.88.
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.82
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.29
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.5**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.97
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE -6.55*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -7.69***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE -2.1
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -5.7*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -2.49
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -9.17***
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -2.11
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -4.68*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 0.83
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.97
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 1.12
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 1.78
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 0.7
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 1.36
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 3.04
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 0.36
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.48
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.74
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.47
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.44
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.37
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.23
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.28
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.5
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.79
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.17
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.8
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.02
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.95
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.04
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.69
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.66
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.3
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.96**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.04
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.51
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.13
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.92*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.33
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.1
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.88
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.17
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.58
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.76
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.88
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.78
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.58
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.14
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.82
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.58
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.87
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.27
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.41
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.97
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.6
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.04.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.22
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.9*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.84
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.81**
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.32
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.44
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.8
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.05*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.99
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.18
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.95
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.83*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.77
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.24
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.45.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.92
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE -1.14
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 4.45**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE 0.85
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 4.06*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -2.62
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 4.44*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 1.88
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 7.38***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 7.53**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 7.67***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 8.33**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 7.25***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 7.91**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 9.59***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 6.91*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 6.07**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.81
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.09**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 5.11
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.92***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 6.78*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 8.83***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.06
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 9.35***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.72*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 10.36***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.57*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.6**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.6*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 7.24***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.89.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 4.26*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.4
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 5.52**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 5.04
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 7.68***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.37
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 6.23**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.45
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.43***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.73**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.14***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.32**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.43***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.33**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.13***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.41.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.37***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.13**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.42***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.82*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.96***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.52**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.15***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.6***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.34**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.65
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.71**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.25
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.24**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.11
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.75*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.49
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.54***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.73**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.5***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.38***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.32***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.79*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.47**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE 5.59*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE 1.99
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 5.2.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -1.48
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 5.58*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 3.01
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 8.52**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 8.66***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 8.81**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 9.47***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 8.39**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 9.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 10.73***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 8.05***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.21*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 5.95.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 7.22*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 6.25*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 11.06***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 7.92**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 9.97***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.2
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 10.48***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.86**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 11.5***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.71**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 6.74*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 7.73**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 8.38**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 7.03*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 5.4.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.27
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.66*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 6.18*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 8.82**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.77
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 7.36*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.59
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 10.57***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.86***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.27**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.45***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.57**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.47***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 10.27***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.55*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.51***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 9.27**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.56***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.96**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.1***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.66***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.29***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 12.73***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 6.47*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.79
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.85*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.11
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.38*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.25.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.89.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.65
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.68***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.87***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.64***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.52***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.46***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.93**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.61***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE -3.6
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE -0.39
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -7.07*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE -0.01
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -2.57
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.93.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 3.08
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 3.22.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.88
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 2.8.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 3.46
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.14**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.46
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.62
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.36
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.64
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.66
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.47**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.33
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.39*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.39
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.9*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.27
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.91**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.12
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.15
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.15
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.79
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.44
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.19
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.85*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.07
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.59
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.23.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -4.82
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.78
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.98*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.28.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.69
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.87
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.98*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.89.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.68*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.96
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.92*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.68
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.97*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.37
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.51**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.07
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.7*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.15*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.89
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.8
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.26
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.7.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.79
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.34
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.3
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.94
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.09**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.29.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.05*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.93*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.87*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.34
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.55***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.02
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE 3.21
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -3.47
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 3.59
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 1.03
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 6.54*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 6.68**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 6.82*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 7.48**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 6.4*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 7.06**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 8.74**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 6.06*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 5.22.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 3.96
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 5.24.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 4.26
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.07**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.93*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 7.99**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.21
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 8.5**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.87*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.51**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.73.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 4.75
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 5.75*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 6.39*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.04.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 3.41
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.25
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.67
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 4.2
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 6.83*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.22
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.38.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.6
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.58**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.88**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.29*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.47**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.58**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.49***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.28**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.56.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.52**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 7.28**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.57**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.97*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 9.11**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.67**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.3**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 10.75***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 4.49
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.2
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 4.86.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.1
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.39.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.26
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 3.9
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.34
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.69***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.89**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.65**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.53***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.47**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.94.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.15***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.62**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE -6.68*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 0.38
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -2.19
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 3.32*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 3.46
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 3.61*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 4.27
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 3.19.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 3.85
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.53***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.85
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.01
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 2.02
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.86**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.72
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.77*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 5.28**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.66
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 6.29**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.51
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.54
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.53
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 3.18
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.83
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.2
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.47*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.46
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.98
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.62*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -4.43
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.16
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.61
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.37**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.66.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.07
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.25
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.37*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.27.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 5.07*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.35
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.31*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.07
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.36*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.76
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.9**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.46
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.09**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.53*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.27
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.41
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.65
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.32.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.18
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.69
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.55
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.48***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.67.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.44**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.32**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.26*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.73
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.94***
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.41.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE 7.06*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE 4.5.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 10.01***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 10.15***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 10.29***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 10.95***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 9.88***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 10.53***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 12.21***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 9.53***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 8.69**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 7.43*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 8.71**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 7.73**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 12.54***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 9.4**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 11.46***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 5.68.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 11.97***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 9.34**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 12.98***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 9.2**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 8.22**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 9.22**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 9.86**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 8.51**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 6.88*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive 0.22
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 8.14**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.67**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.3***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.25
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.85**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 5.07
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 12.05***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.35***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.76**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.94***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.05***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.96***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.75***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.03**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.99***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.75***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 12.04***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.44**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.58***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 11.14***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.77***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 14.22***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.96**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.27
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.33**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.37
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.86**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.73*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.37*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.13
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 13.16***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.36***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.13***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 15***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.94***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.41**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.62***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.1***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE -2.57
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 2.94.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 3.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 3.23.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 3.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 2.81.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 3.47
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 5.15**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 2.47
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 1.63
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 0.37
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.65
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.67
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.48**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.34
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.39*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.38
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.9*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.28
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.92**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.13
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.16
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.15
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.8
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.45
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.18
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.85*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.6
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.24.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -4.81
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.78
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.99
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.99*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.28.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.69
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.87
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.99*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.89.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.69*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.97
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.93*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.69
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.98*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.38
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.52*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.08
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.71*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.15*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.9
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.79
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.27
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.69.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.8
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.33
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.31
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.93
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.1**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.29.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.06*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.94*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.88*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.35
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.56***
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.03
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE 5.51*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 5.65*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 5.8*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 6.45**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE 5.38*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 6.03**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 7.72**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE 5.03*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 4.19
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive 2.93
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 4.21
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 3.24
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 8.04**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.9.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 6.96*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.18
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 7.47**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.85.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 8.48**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.7
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.73
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 4.72.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 5.36.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 4.01
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 2.38
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.28
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.64
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 3.17
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 5.8*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.24
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.35
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.57
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.56*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.85**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.26.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 6.44*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.55*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 7.46**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 7.26*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.53
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.5*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 6.26*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 7.54*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.94.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.08**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.64*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.27*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.72***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.46
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.23
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.84
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.13
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.36
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 2.24
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.87
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.37
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.67**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.86**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.63**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.51***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.44*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.92
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.13***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.6*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE 0.14
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.29
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.95
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.13
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.52
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.21
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.48
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.32
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.58
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.27
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.53
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.6
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.45
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.33
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.96
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.66
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.97
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.81
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.78
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.79
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.14
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.5
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.13
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.79**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.87
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.34
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.29
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.75*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.16
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.94
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.05
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.34
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.25
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.93
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.04
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.95
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.75
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.98
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.75
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.03
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.43
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.58
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.14
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.77
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.21
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.05
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.74*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.67
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.64**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.15
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.27
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.64
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.88**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.16.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.35
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.12
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.93
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.59
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.62*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.09
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE 0.15
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.8
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.38
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.06
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.62
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.46
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.72
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.44
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.41
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.75
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.31
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.47
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.82
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.81
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.83
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.95
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.92
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.93
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.29
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.64
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.93**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.01
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.48
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.15
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.89*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.3
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.08.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.91
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.2
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.79
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.9
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.81
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.61
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.12
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.61
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.89
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.29
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.43
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.62
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.07
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.19
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.88*
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.81
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.78**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.29
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.42
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.78
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.02**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.02
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.21
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.98
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.86.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.79
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.73
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.48
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.95
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE 0.66
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -0.42
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.24
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.92
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.76
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.6
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.86
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.58
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.56
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.25
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.89
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.16
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.61
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.67
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.95
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.69
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.1
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.07
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.08
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.78
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.41.
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.08**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.15
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.63
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.01
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.04*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.44
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.22
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.76
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.05
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.54
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.64
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.76
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.66
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.46
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.26
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.7
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.46
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.15
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.85
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.48
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.92
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.33
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.02*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.96
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.92**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.43
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.56
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.92
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.16**
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.87
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.06
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.71
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.65
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.88
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.33*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.8
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE -1.08
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE -0.42
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.26
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1.42
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.26
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.52
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.24
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.22
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.59
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.55
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.51
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.27.
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.02
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.61
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.03
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.76
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.73
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.09
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.44
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.07
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.73***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.81
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.29
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.65
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.7**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.88*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.4
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.01
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.01
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.8
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.92
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.04
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.2
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.09
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.51
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.63
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.82
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.27
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.99
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.68**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.62
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.58**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.09
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.22
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.58
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.82***
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.21
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.41
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.17
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.05
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.99
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.54
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.67
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.14
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE 0.66
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 2.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -0.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.19
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.44
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.17
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.14
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.67
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.47
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.58
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.2
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.09
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.53
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.1
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.68
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.65
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.66
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.01
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.37
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.66**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.74
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.21
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.42
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.62*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.03
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.81
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.18
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.47
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.06
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.18
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.08
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.88
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.84
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.12
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.88
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.16
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.56
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.71
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.27
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.9
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.34
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.92
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.6*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.54
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.51**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.02
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.14
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.51
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.75*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.29
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.48
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.25
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.13
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.07
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.46
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.75*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.22
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE 1.68
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -1
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.84
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.1
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.82
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -2.8
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 2.01
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -1.13
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 0.93
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -4.85.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.44
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -1.19
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 2.45
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -1.33
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.31
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.31
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.67
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.02
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -3.65
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -10.31***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.39
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.86
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -0.23
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.28**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.68
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.46.
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.52
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.82
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.77
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.41
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.52
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.43
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.22
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.5
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.46
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.22
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.51
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.09
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.61
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.69
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.57
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.26**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.2
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.16**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.67
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.8
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.16
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.4**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.63
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.6
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.47
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.41
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.12
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.09
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.56
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE -2.68
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -3.52.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -4.78
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -3.5.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -4.48
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.33
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -2.81
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -0.76
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.53*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.25
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.77
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.02
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.99*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.35
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.7
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.33**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.07*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.55
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.91
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.96**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.36.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.14*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.16
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.13
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.45
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.28
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.16
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.26
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.46
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.18
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.22
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.46
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.17
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.77
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.37
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.07
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.44
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.01
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.25*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.94**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.88.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.84***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.35.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.48
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.84*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.08***
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.14
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.09
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.79
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.27
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.8
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.41
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.12
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -0.84
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -2.1
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.82
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -1.8
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.01
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -0.13
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 1.93
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.85
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.44
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.19
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.45
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.33
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.31
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.31
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.33
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.02
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.65
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.31**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.39
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.86
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.77
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.28*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.68
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.46
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.52
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.82
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.23
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.41
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.52
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.43
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.22
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.5
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.46
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.22
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.51
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.91
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.05
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.61
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.24
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.69
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.57
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.26*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.2
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.16**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.67
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.8
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.16
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.4**
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.63
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.83
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.47.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.41
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.12
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.09.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3NONE - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.56
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive -1.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.02
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.96
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.85
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.71
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.77
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.01
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.28
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.65
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.29.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.51
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.47
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.18
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.81
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.47*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.55
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.02
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.61
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.44.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.16
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.07
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.25
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.27
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.06
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.34
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.3
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.06
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.35
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.75
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.89
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.45
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.08
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.53
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.73
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.42
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.32*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.96
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.32
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.56*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.47.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.67
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.44
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.31.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.25
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.72
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.93*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.41
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 1.28
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive 0.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 5.11
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.97
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 4.03
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.75
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.54
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.91
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.77
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.43
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.08
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.55
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.21*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.71
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.24
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.87
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.18
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.42
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.36
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.92
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.33
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.62
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.32
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.6
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.56
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.32
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.61
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.01
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.15
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.71
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.34
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.79.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.53
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.16
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.9
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.06.
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.43
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.7
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.06
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.3
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.73
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.93
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.7
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.57*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.51
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.98
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.19*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.66
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive -0.97
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 3.83.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 0.69
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.75
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.03
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.26
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.63
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 4.27.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.49
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.48
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.51
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.15
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.2
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.83
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.49*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.57
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.04
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.59
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.45.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.14
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.64
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.35
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.64
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.23
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.34
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.25
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.05
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.32
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.28
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.04
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.33
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.73
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.87.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.43
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.06
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.51.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.75
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.44.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.37
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.34*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.15
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.98
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.34
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.58*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.46*
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.65
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.42
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.3.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.23
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.91**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.39
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 4.81
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive 1.67
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 3.72
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -2.06
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 4.23
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 1.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 5.24
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.46
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.49
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 1.48
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.13
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.78
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -0.86
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -7.52*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.4
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.57
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.48
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.11
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.66
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.32
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.61
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.2
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.32
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.3
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.26
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.02
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.31
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.71
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.85
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.41
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.04
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.48*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.22
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.46
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.6
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.37.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.12
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.36
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.6.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.43.
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.62
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.39
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.27*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.21
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.68
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.89*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.36
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive -3.14
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -1.08
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -6.86*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.57
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -3.2
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 0.44
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.34
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.32.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.32
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.03
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.66*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.32***
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.4.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.87
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.24
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.29**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.69
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.47*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.81
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.78
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.6
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.49
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.58
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.79
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.51
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.55
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.79
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.5
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.1
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.04
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.4
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.77
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.58.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.27**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.21.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.17**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.68
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.81
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.17*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.41**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.62
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.18
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.42
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.46
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.6
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.13
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.08
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.45
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive 2.05
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -3.72
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 2.56
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -0.06
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.58
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.21
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.46
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.89
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.52
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.18**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.26
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.74
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.9
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.15*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.55
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.33
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.65
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.94
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.36
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.53
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.65
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.55
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.35
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.64
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.04
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.74
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.37
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.82
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.44
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.13.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.07
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.03*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.54
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.67
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.03
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.27*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.76
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.95
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.72
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.6.
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.54
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.01
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.22
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.69
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive -5.78.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 0.51
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.11
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.26
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.24
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.59
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.95
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -4.58.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.24**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.32
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.79
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.16
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.2*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.61
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.39.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.6
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.89
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.7
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.52
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.41
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.5
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.3
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.43
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.46
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.7
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.02
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.32
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.76
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.5
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.19*
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.12
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.09**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.6
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.72
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.09
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.33**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.71
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.9
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.67
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.55
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.48
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.04
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.17
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.64
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 6.29.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive 3.66
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 7.3*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.52
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 2.54
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 3.54
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 4.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 2.83
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive 1.2
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 2.46
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.99
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 4.62
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -3.42
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 3.17
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.61
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.38.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 7.67*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.08
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.26
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.37
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.28*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.08.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.35
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.31
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.07
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.36.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.76
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.9*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.46.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.09.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 8.54**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.28
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 2.66
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.31
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.18
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.69
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.55
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.48*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.68*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.45.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.33**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.26.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.73
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.94**
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.42.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive -2.62
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 1.01
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -2.77
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.74.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -2.75
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -2.11
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.46
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -5.09*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -11.75***
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -3.83.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.3
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -1.67
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -9.71**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.12
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -6.9*
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.09
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.38
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.92
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.01
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.94
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.97
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.21
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.07
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.53
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.61
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.82
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.2
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.25
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.01.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.7**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.63
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.6**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.11
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.23
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.6.
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.84**
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.2
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.39
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.16
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.04
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.03
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.55
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.66
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.13
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive 3.64
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -0.15
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -1.12
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.13
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.52
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.83
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.46
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.12**
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.2
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.68
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.96
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.09*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.49
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.27
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.71
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.42
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.59
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.71
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.61
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.41
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.31
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.65
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.7
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.1
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.24
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.43
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.88
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.38
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.07.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.01
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.97*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.48
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.61
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.97
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.21*
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.82
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.01
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.78
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.66.
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.07
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.28
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.75
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive -3.78
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -4.75*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -3.76
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -3.12
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -4.47
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.1*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -12.76***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -4.84*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -5.31
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive -2.68
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -10.72**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.13.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -7.91*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive -0.92
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 0.37
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -3.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.04
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.93
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.02
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.22
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.95
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.99
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -2.23
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.94
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.54
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.4
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.84
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.21
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.02*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.71**
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.64.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.61***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.12.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.25.
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.61*
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.85***
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.18
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.62
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.85
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.03
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.04
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.56
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.64
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.88
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive -0.97
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.02
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.67
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.69
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.32
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.98**
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.06
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.53
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.1
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.94*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.35
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.13
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.86
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.15
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.56
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.74
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.85
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.76
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.56
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.16
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.8
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.56
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.84
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.39
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.95
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.58
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.02
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.24
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.92.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.86
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.83*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.34
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.46
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.83
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.07*
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.97
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.16
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.93
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.81.
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.74
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.22
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.43
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.9
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive 0.99
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 1.64
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.29
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.34
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.01*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.56
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.08
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.97.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.62
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.15
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.83
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.12
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.53
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.71
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.83
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.73
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.53
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.81
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.77
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.53
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.82
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.22
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.36.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.92
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.55
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.99.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.27
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.95
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.11
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.86*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.64
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.49
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.85
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.09.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.94*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.13
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.9.
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.78*
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.72
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.19
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.4**
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.87
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive 0.64
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -0.71
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.34
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9**
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.08
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.55
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.08
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.96*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -0.37
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.15
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.84
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.13
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.54
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.72
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.83
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.74
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.54
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.19
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.78
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.54
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.82
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.22
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.36
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.92
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.55
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.26
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.95.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.88
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.85*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.36
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.49
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.85
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.09*
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.95
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.14
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.91
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.79.
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.72
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.2
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.41
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.88
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive -1.35
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -2.98
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -9.64**
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -1.72
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -2.2
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 0.44
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -7.61*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.01
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -4.79
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 2.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.49
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.1
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.08
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.19
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.09
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.89
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.83
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.13
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.89
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.18
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.58
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.72
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.28
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.91
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.36
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.9
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.59*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.53
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.49*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.13
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.49
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.73*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.3
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.49
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.26
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.14
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.08
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.45
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.76*
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.23
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive -1.63
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -8.29*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.37
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.84
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 1.79
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -6.26.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.34
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.44
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.54
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.84
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.25
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.43
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.54
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.45
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.24
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.52
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.48
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.24
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.53
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.93
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.07
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.63
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.26
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.71.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.55
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.24
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.18
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.14*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.35
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.78
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.38.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.65
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.85
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.62
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.49*
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.43
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.9
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.11.
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.59
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive -6.66.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 1.26
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 0.79
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 3.42
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -4.62
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.97
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.81
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.18*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.47.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.88
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.06
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.17.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.08
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.88*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.15
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 4.11.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.87
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.16*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.56
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 5.7*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.26
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.89*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 7.34*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.08
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.61
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.46
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.51
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.98
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.15
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.49
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.75
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.28**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.48
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.25*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.13*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.06*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.53
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.74***
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.22
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.92*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive 7.45*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 10.08**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.04
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 8.63*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 4.85
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.84***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 13.13***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 9.54**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 10.72**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 10.83**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 11.74***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 11.54**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 8.81*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.78**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 10.54**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 11.82***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 10.22**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 12.36***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.92**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.55***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 7.74*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 3.05
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 8.12*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial 1.15
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 8.64*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.51.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 7.15*
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 1.91
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.95***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 12.14***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.91***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 14.79***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 11.72**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.2**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 14.41***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.88***
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive -0.47
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.16
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.88.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 0.71
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.07
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.92
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.21
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.62
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.8
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.91
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.82
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.62
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.89
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.85
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.61
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.9
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.3
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.44.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.63.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.08.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.18
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.87
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.2
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.77*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.72
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.41
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.77
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.01.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.02*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.22
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.99.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.87*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.8
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.27
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.48**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.96
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive 2.63
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -5.41
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 1.18
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -2.6
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.39
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 5.68
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.09
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 3.27
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.38
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 4.29
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 4.09
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.36
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.33
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 3.09
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 4.37
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.77
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 4.92
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.48
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.11
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.55*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 0.29
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.4
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.67
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.3.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.19
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.93
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.3
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.54.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.5.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.69
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.46
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.34*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.27
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.75
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.96*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.43
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive -8.05*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive -1.45
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -5.23
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.05
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -0.54
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.64
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.75
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.66
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 1.45
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.27
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.69
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.45
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.74
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.14
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.28
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.84
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.47
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.92
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.34
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.03*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.97
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.93**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.44
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.57
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.93
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.17*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.86
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.06
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.83
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.7
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.64
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.89
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.32*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.8
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive 6.59.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive 2.82
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 9.8**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 11.09**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 7.5*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 8.68*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 8.8*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 9.7**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 9.5**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.78.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.74*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 8.5*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 9.79**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 8.19*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 10.33**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 8.89*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.52**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 11.96***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 5.7
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial 1.02
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 6.08.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.89
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 6.6.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 4.48
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 5.12
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.12
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.91**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.1**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.87**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.75***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.69**
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.16.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.37***
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.84**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive -3.78
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 3.21
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 4.5
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 0.91
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 2.09
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.2
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 3.11
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2.91
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.18
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.9
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.19
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.73
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.29
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.92
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.37
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -0.89
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.58.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.51
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.48*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.01
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.12
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.48
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.72*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.32.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.51
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.28
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.16.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.09
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.57
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.78*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.25
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive 6.98.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 8.28*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive 4.69
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 5.87.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 5.98.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 6.89*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 6.68.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive 3.96
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.92.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 5.68.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 6.97.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 5.37
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 7.51*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 6.07.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 6.7.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 9.15**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial 2.89
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.8
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 3.26
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.7
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.79
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 1.66
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 2.3
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.94
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 8.09*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 7.29*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.06*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 9.93**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.87.
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.34
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.55**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.02*
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive 1.29
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -1.12
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -1
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -0.1
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -3.02
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.06
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.01
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.61
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.53
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.91
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.28
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.16
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.1.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.78**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.72
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.69**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.19
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.32
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.68.
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.92**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.11
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.3
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.07
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.95
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.11
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.64
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.57
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.04
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive -3.59
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive -2.41
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive -2.3
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive -1.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.59
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -4.32
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -2.35
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -2.59
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.31
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -2.91
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.77
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -2.2
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -1.58
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.87
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.39
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.08**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.01
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.98***
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.49
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -6.61.
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.98
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -11.22**
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.18
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.99
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -1.22
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.66
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.41
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.93
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.28
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.25
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive 1.18
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.29
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 2.2
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 2
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.73
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.24
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 2.28
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.68
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.82
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.38
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.01
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 4.46
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.8
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.49*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.42
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -8.39*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.9
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.03
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -2.39
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -7.63*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.41
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.6
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.37
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.25
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.18
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.34
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.87*
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.34
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.11
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 1.02
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.82
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -1.91
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 0.06
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.18
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.5
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.64
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.21
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.83
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.28
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.98
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.67*
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.6
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.57**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.08
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.2
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.57
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.81**
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.23
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.42
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.19
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.07
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.52
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.69
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.16
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive 0.91
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive 0.7
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.02
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.06
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.3
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.99
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.61
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.53
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.09
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.72
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.17
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.09
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.78*
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.72
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.68**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.19
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.32
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.68
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.92**
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.11
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.31
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.07
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.95
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.89
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.64
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.57
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.04
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive -0.2
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.93
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.96
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1.2
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.08
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.52
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.63
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.81
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.18
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.26
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.69**
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.62
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.59***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.1
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.22
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.59
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.83***
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.21
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.4
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.17
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.05
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.02
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.54
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.67
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.14
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive -2.72
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.76
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -1
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 0.29
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.31
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.83
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.61
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.02
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.46
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.8
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.48*
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.42
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.39**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.89
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.02
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.38.
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.62**
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.41
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.6
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.37
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.25
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.19
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.34
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.87
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.34
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.96
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial 1.72
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 3.01
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.41
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 3.55
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.11
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.74
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 5.19
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -1.07
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -5.76.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -0.7
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -7.66*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -0.17
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.3
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.66
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.9*
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.13
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.33
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.09
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.97.
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.91
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.38
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.59
## RespChinese:NameIndian:V_Productbabyformula:V_presentation3Defensive - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.06
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial -0.24
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.05
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.55
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.59
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.15
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.78
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.22
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.03
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.72*
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.66
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.62**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.26
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.62
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.86**
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.17
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.36
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.13
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.01
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.58
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.63.
## RespWhite:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.1
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial 1.29
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -0.31
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 1.83
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.39
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.02
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.46
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.79
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.48*
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.42
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.38**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.89
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.02
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.38
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.62**
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.41
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.6
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.37
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.25
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.19
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.34
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.87
## RespChinese:NameWhite:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.34
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial -1.6
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.54
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -0.9
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.27
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.18
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.08.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.77**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.71
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.67**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.18
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.31
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.67.
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.91**
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.12
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.32
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.09
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.96
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.1
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.63
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.58
## RespWhite:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.06
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 2.14
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial 0.7
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.33
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.78
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -2.48
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.17*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.11
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.07*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.58
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.71
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.07
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -8.31*
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.72
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.92
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.69
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.56
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.5
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.03
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.18
## RespChinese:NameBlack:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.65
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial -1.44
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial -0.81
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 1.64
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.62.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -9.31**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -4.25.
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -11.21**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -3.72
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.85
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.21*
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -10.45**
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.58
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.23
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.46
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.42
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.64
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.17
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.04
## RespWhite:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.49
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 0.63
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 3.08
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.18
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -7.87*
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -2.81
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -9.77**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.28
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -4.41
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -3.77
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.01**
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 2.02
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.21
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.98
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.86
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.8
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.73
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.48
## RespChinese:NameChinese:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.95
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial 2.45
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -3.81.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -8.5**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -3.44
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -10.4**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.91
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.04
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.4.
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -9.64**
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 1.39
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 0.58
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.35
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.23
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.17
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.36
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.85
## RespWhite:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.32
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial -6.26.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -10.95***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial -5.88.
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -12.85***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial -5.36
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -7.49*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.85*
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -12.09***
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.05
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -1.86
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -2.09
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 0.79
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.28
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -4.8
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.41
## RespChinese:NameIndian:V_Producthardwaresupplies:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.12
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameWhite:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameBlack:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameChinese:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespChinese:NameIndian:V_Producttoiletpaper:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial NA
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial -4.69
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 0.38
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.59.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.9
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.23
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.59
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.83.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.21*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.4
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.17.
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.05*
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.98
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.66**
## RespWhite:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.14
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial 5.06
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -1.9
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.59.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 3.46
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 4.1
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.14
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.89**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 9.09**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.85**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 11.73***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.67**
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 6.14.
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 11.35***
## RespChinese:NameWhite:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 8.82**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial -6.97*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 0.53
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -1.6
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -0.96
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.2.
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.83*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.02
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.79
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.67*
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.61
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 1.08
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 6.29**
## RespWhite:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.76
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial 7.49*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial 5.36
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 6.
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.76
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.8***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.99**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10.76**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 13.64***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 10.57**
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 8.05*
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 13.25***
## RespChinese:NameBlack:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 10.73**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial -2.13
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial -1.49
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -6.73*
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.3.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 3.5
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 3.27
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 6.14.
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 3.08
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 0.55
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.76**
## RespWhite:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 3.24
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial 0.64
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -4.6
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 6.43.
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.62
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 5.39
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 8.27*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 5.21
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.68
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.89*
## RespChinese:NameChinese:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.36
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial -5.24
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 5.79*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 4.99
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 4.76.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 7.63*
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 4.57.
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 2.04
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 7.25**
## RespWhite:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 4.73
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial 11.03***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial 10.23**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial 10**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 12.87***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial 9.81**
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial 7.28*
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 12.49***
## RespChinese:NameIndian:V_Productcigarettes:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 9.97**
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial -0.81
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -1.04
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 1.84
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -1.22
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.75
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 1.46
## RespWhite:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -1.07
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial -0.23
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.65
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.42
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.94
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.27
## RespChinese:NameWhite:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.26
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial 2.88
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -0.18
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.71
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.5
## RespWhite:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.03
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial -3.06
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -5.59
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial -0.38
## RespChinese:NameBlack:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.91
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial -2.53
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.68
## RespWhite:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 0.15
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial 5.21
## RespChinese:NameChinese:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial 2.68
## RespWhite:NameIndian:V_Productbabyformula:V_presentation3Prosocial - RespChinese:NameIndian:V_Productbabyformula:V_presentation3Prosocial -2.53
xtable::xtable(dff.means)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:41:06 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{rlll}
## \hline
## & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite - RespChinese & NA & NA & NA \\
## NameWhite - NameBlack & NA & NA & NA \\
## NameWhite - NameChinese & NA & NA & NA \\
## NameWhite - NameIndian & NA & NA & NA \\
## NameBlack - NameChinese & NA & NA & NA \\
## NameBlack - NameIndian & NA & NA & NA \\
## NameChinese - NameIndian & NA & NA & NA \\
## V\_Producthardwaresupplies - V\_Producttoiletpaper & NA & NA & NA \\
## V\_Producthardwaresupplies - V\_Productcigarettes & -10.04*** & -5.82*** & -4.83*** \\
## V\_Producthardwaresupplies - V\_Productbabyformula & 6.03*** & 1.18* & 1.25* \\
## V\_Producttoiletpaper - V\_Productcigarettes & NA & NA & NA \\
## V\_Producttoiletpaper - V\_Productbabyformula & NA & NA & NA \\
## V\_Productcigarettes - V\_Productbabyformula & 16.07*** & 7*** & 6.08*** \\
## V\_presentation3NONE - V\_presentation3Defensive & -5.87*** & 1.03* & 0.85* \\
## V\_presentation3NONE - V\_presentation3Prosocial & NA & NA & NA \\
## V\_presentation3Defensive - V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite - RespChinese:NameWhite & NA & NA & NA \\
## RespWhite:NameWhite - RespWhite:NameBlack & NA & NA & NA \\
## RespWhite:NameWhite - RespChinese:NameBlack & NA & NA & NA \\
## RespWhite:NameWhite - RespWhite:NameChinese & NA & NA & NA \\
## RespWhite:NameWhite - RespChinese:NameChinese & NA & NA & NA \\
## RespWhite:NameWhite - RespWhite:NameIndian & NA & NA & NA \\
## RespWhite:NameWhite - RespChinese:NameIndian & NA & NA & NA \\
## RespChinese:NameWhite - RespWhite:NameBlack & NA & NA & NA \\
## RespChinese:NameWhite - RespChinese:NameBlack & NA & NA & NA \\
## RespChinese:NameWhite - RespWhite:NameChinese & NA & NA & NA \\
## RespChinese:NameWhite - RespChinese:NameChinese & NA & NA & NA \\
## RespChinese:NameWhite - RespWhite:NameIndian & NA & NA & NA \\
## RespChinese:NameWhite - RespChinese:NameIndian & NA & NA & NA \\
## RespWhite:NameBlack - RespChinese:NameBlack & NA & NA & NA \\
## RespWhite:NameBlack - RespWhite:NameChinese & NA & NA & NA \\
## RespWhite:NameBlack - RespChinese:NameChinese & NA & NA & NA \\
## RespWhite:NameBlack - RespWhite:NameIndian & NA & NA & NA \\
## RespWhite:NameBlack - RespChinese:NameIndian & NA & NA & NA \\
## RespChinese:NameBlack - RespWhite:NameChinese & NA & NA & NA \\
## RespChinese:NameBlack - RespChinese:NameChinese & NA & NA & NA \\
## RespChinese:NameBlack - RespWhite:NameIndian & NA & NA & NA \\
## RespChinese:NameBlack - RespChinese:NameIndian & NA & NA & NA \\
## RespWhite:NameChinese - RespChinese:NameChinese & NA & NA & NA \\
## RespWhite:NameChinese - RespWhite:NameIndian & NA & NA & NA \\
## RespWhite:NameChinese - RespChinese:NameIndian & NA & NA & NA \\
## RespChinese:NameChinese - RespWhite:NameIndian & NA & NA & NA \\
## RespChinese:NameChinese - RespChinese:NameIndian & NA & NA & NA \\
## RespWhite:NameIndian - RespChinese:NameIndian & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies - RespChinese:V\_Producthardwaresupplies & -0.47 & -1.28 & -1.62 \\
## RespWhite:V\_Producthardwaresupplies - RespWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies - RespChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies - RespWhite:V\_Productcigarettes & -8.78*** & -3.79*** & -3.47*** \\
## RespWhite:V\_Producthardwaresupplies - RespChinese:V\_Productcigarettes & -11.77*** & -9.13*** & -7.8*** \\
## RespWhite:V\_Producthardwaresupplies - RespWhite:V\_Productbabyformula & 5.68*** & 1.14* & 0.59 \\
## RespWhite:V\_Producthardwaresupplies - RespChinese:V\_Productbabyformula & 5.91** & -0.06 & 0.29 \\
## RespChinese:V\_Producthardwaresupplies - RespWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies - RespChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies - RespWhite:V\_Productcigarettes & -8.31*** & -2.51 & -1.85 \\
## RespChinese:V\_Producthardwaresupplies - RespChinese:V\_Productcigarettes & -11.3*** & -7.85*** & -6.18*** \\
## RespChinese:V\_Producthardwaresupplies - RespWhite:V\_Productbabyformula & 6.15** & 2.42 & 2.21 \\
## RespChinese:V\_Producthardwaresupplies - RespChinese:V\_Productbabyformula & 6.38*** & 1.21 & 1.91* \\
## RespWhite:V\_Producttoiletpaper - RespChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper - RespWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper - RespChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper - RespWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper - RespChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper - RespWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper - RespChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper - RespWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper - RespChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:V\_Productcigarettes - RespChinese:V\_Productcigarettes & -2.99 & -5.34** & -4.33* \\
## RespWhite:V\_Productcigarettes - RespWhite:V\_Productbabyformula & 14.46*** & 4.93*** & 4.06*** \\
## RespWhite:V\_Productcigarettes - RespChinese:V\_Productbabyformula & 14.69*** & 3.72* & 3.76. \\
## RespChinese:V\_Productcigarettes - RespWhite:V\_Productbabyformula & 17.45*** & 10.27*** & 8.39*** \\
## RespChinese:V\_Productcigarettes - RespChinese:V\_Productbabyformula & 17.68*** & 9.06*** & 8.1*** \\
## RespWhite:V\_Productbabyformula - RespChinese:V\_Productbabyformula & 0.23 & -1.21 & -0.3 \\
## NameWhite:V\_Producthardwaresupplies - NameBlack:V\_Producthardwaresupplies & -0.34 & -0.14 & 0.35 \\
## NameWhite:V\_Producthardwaresupplies - NameChinese:V\_Producthardwaresupplies & -0.59 & 0.22 & 1.34 \\
## NameWhite:V\_Producthardwaresupplies - NameIndian:V\_Producthardwaresupplies & -1.49 & -1.57 & 0.74 \\
## NameWhite:V\_Producthardwaresupplies - NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies - NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies - NameWhite:V\_Productcigarettes & -14.19*** & -7.66*** & -5.83*** \\
## NameWhite:V\_Producthardwaresupplies - NameBlack:V\_Productcigarettes & -10.92*** & -6.05*** & -3.56** \\
## NameWhite:V\_Producthardwaresupplies - NameChinese:V\_Productcigarettes & -6.5** & -5.99*** & -3.76** \\
## NameWhite:V\_Producthardwaresupplies - NameIndian:V\_Productcigarettes & -10.97*** & -5.06*** & -3.73*** \\
## NameWhite:V\_Producthardwaresupplies - NameWhite:V\_Productbabyformula & 5.34* & 1.18 & 2.28. \\
## NameWhite:V\_Producthardwaresupplies - NameBlack:V\_Productbabyformula & 5.94** & 0.91 & 1.95. \\
## NameWhite:V\_Producthardwaresupplies - NameChinese:V\_Productbabyformula & 5.23** & 0.38 & 1.23 \\
## NameWhite:V\_Producthardwaresupplies - NameIndian:V\_Productbabyformula & 5.18* & 0.75 & 1.98. \\
## NameBlack:V\_Producthardwaresupplies - NameChinese:V\_Producthardwaresupplies & -0.25 & 0.36 & 0.99 \\
## NameBlack:V\_Producthardwaresupplies - NameIndian:V\_Producthardwaresupplies & -1.15 & -1.43 & 0.39 \\
## NameBlack:V\_Producthardwaresupplies - NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies - NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies - NameWhite:V\_Productcigarettes & -13.85*** & -7.53*** & -6.18*** \\
## NameBlack:V\_Producthardwaresupplies - NameBlack:V\_Productcigarettes & -10.58*** & -5.92*** & -3.91*** \\
## NameBlack:V\_Producthardwaresupplies - NameChinese:V\_Productcigarettes & -6.16** & -5.85*** & -4.11*** \\
## NameBlack:V\_Producthardwaresupplies - NameIndian:V\_Productcigarettes & -10.63*** & -4.92*** & -4.09*** \\
## NameBlack:V\_Producthardwaresupplies - NameWhite:V\_Productbabyformula & 5.68** & 1.32 & 1.93. \\
## NameBlack:V\_Producthardwaresupplies - NameBlack:V\_Productbabyformula & 6.29** & 1.05 & 1.59 \\
## NameBlack:V\_Producthardwaresupplies - NameChinese:V\_Productbabyformula & 5.57** & 0.52 & 0.88 \\
## NameBlack:V\_Producthardwaresupplies - NameIndian:V\_Productbabyformula & 5.53** & 0.89 & 1.62 \\
## NameChinese:V\_Producthardwaresupplies - NameIndian:V\_Producthardwaresupplies & -0.9 & -1.78 & -0.6 \\
## NameChinese:V\_Producthardwaresupplies - NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies - NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies - NameWhite:V\_Productcigarettes & -13.6*** & -7.88*** & -7.16*** \\
## NameChinese:V\_Producthardwaresupplies - NameBlack:V\_Productcigarettes & -10.33*** & -6.27*** & -4.9*** \\
## NameChinese:V\_Producthardwaresupplies - NameChinese:V\_Productcigarettes & -5.91** & -6.21*** & -5.1*** \\
## NameChinese:V\_Producthardwaresupplies - NameIndian:V\_Productcigarettes & -10.38*** & -5.27*** & -5.07*** \\
## NameChinese:V\_Producthardwaresupplies - NameWhite:V\_Productbabyformula & 5.93** & 0.97 & 0.94 \\
## NameChinese:V\_Producthardwaresupplies - NameBlack:V\_Productbabyformula & 6.53** & 0.69 & 0.61 \\
## NameChinese:V\_Producthardwaresupplies - NameChinese:V\_Productbabyformula & 5.82** & 0.16 & -0.11 \\
## NameChinese:V\_Producthardwaresupplies - NameIndian:V\_Productbabyformula & 5.77** & 0.53 & 0.64 \\
## NameIndian:V\_Producthardwaresupplies - NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies - NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies - NameWhite:V\_Productcigarettes & -12.7*** & -6.1*** & -6.57*** \\
## NameIndian:V\_Producthardwaresupplies - NameBlack:V\_Productcigarettes & -9.43*** & -4.49*** & -4.3*** \\
## NameIndian:V\_Producthardwaresupplies - NameChinese:V\_Productcigarettes & -5.01* & -4.43*** & -4.5*** \\
## NameIndian:V\_Producthardwaresupplies - NameIndian:V\_Productcigarettes & -9.48*** & -3.49** & -4.48*** \\
## NameIndian:V\_Producthardwaresupplies - NameWhite:V\_Productbabyformula & 6.83*** & 2.75* & 1.54 \\
## NameIndian:V\_Producthardwaresupplies - NameBlack:V\_Productbabyformula & 7.43*** & 2.48* & 1.21 \\
## NameIndian:V\_Producthardwaresupplies - NameChinese:V\_Productbabyformula & 6.72*** & 1.95. & 0.49 \\
## NameIndian:V\_Producthardwaresupplies - NameIndian:V\_Productbabyformula & 6.67** & 2.31* & 1.24 \\
## NameWhite:V\_Producttoiletpaper - NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameWhite:V\_Productcigarettes & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameBlack:V\_Productcigarettes & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameChinese:V\_Productcigarettes & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameIndian:V\_Productcigarettes & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameWhite:V\_Productbabyformula & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameBlack:V\_Productbabyformula & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameChinese:V\_Productbabyformula & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper - NameIndian:V\_Productbabyformula & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameWhite:V\_Productcigarettes & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameBlack:V\_Productcigarettes & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameChinese:V\_Productcigarettes & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameIndian:V\_Productcigarettes & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameWhite:V\_Productbabyformula & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameBlack:V\_Productbabyformula & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameChinese:V\_Productbabyformula & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper - NameIndian:V\_Productbabyformula & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameWhite:V\_Productcigarettes & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameBlack:V\_Productcigarettes & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameChinese:V\_Productcigarettes & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameIndian:V\_Productcigarettes & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameWhite:V\_Productbabyformula & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameBlack:V\_Productbabyformula & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameChinese:V\_Productbabyformula & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper - NameIndian:V\_Productbabyformula & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameWhite:V\_Productcigarettes & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameBlack:V\_Productcigarettes & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameChinese:V\_Productcigarettes & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameIndian:V\_Productcigarettes & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameWhite:V\_Productbabyformula & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameBlack:V\_Productbabyformula & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameChinese:V\_Productbabyformula & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper - NameIndian:V\_Productbabyformula & NA & NA & NA \\
## NameWhite:V\_Productcigarettes - NameBlack:V\_Productcigarettes & 3.27 & 1.61 & 2.27* \\
## NameWhite:V\_Productcigarettes - NameChinese:V\_Productcigarettes & 7.69*** & 1.67 & 2.07. \\
## NameWhite:V\_Productcigarettes - NameIndian:V\_Productcigarettes & 3.22 & 2.61* & 2.09. \\
## NameWhite:V\_Productcigarettes - NameWhite:V\_Productbabyformula & 19.53*** & 8.85*** & 8.11*** \\
## NameWhite:V\_Productcigarettes - NameBlack:V\_Productbabyformula & 20.14*** & 8.57*** & 7.77*** \\
## NameWhite:V\_Productcigarettes - NameChinese:V\_Productbabyformula & 19.42*** & 8.04*** & 7.06*** \\
## NameWhite:V\_Productcigarettes - NameIndian:V\_Productbabyformula & 19.38*** & 8.41*** & 7.8*** \\
## NameBlack:V\_Productcigarettes - NameChinese:V\_Productcigarettes & 4.42* & 0.06 & -0.2 \\
## NameBlack:V\_Productcigarettes - NameIndian:V\_Productcigarettes & -0.05 & 1 & -0.18 \\
## NameBlack:V\_Productcigarettes - NameWhite:V\_Productbabyformula & 16.26*** & 7.24*** & 5.84*** \\
## NameBlack:V\_Productcigarettes - NameBlack:V\_Productbabyformula & 16.87*** & 6.96*** & 5.5*** \\
## NameBlack:V\_Productcigarettes - NameChinese:V\_Productbabyformula & 16.15*** & 6.43*** & 4.79*** \\
## NameBlack:V\_Productcigarettes - NameIndian:V\_Productbabyformula & 16.11*** & 6.8*** & 5.53*** \\
## NameChinese:V\_Productcigarettes - NameIndian:V\_Productcigarettes & -4.47* & 0.94 & 0.02 \\
## NameChinese:V\_Productcigarettes - NameWhite:V\_Productbabyformula & 11.84*** & 7.18*** & 6.04*** \\
## NameChinese:V\_Productcigarettes - NameBlack:V\_Productbabyformula & 12.44*** & 6.9*** & 5.71*** \\
## NameChinese:V\_Productcigarettes - NameChinese:V\_Productbabyformula & 11.73*** & 6.37*** & 4.99*** \\
## NameChinese:V\_Productcigarettes - NameIndian:V\_Productbabyformula & 11.68*** & 6.74*** & 5.74*** \\
## NameIndian:V\_Productcigarettes - NameWhite:V\_Productbabyformula & 16.31*** & 6.24*** & 6.02*** \\
## NameIndian:V\_Productcigarettes - NameBlack:V\_Productbabyformula & 16.92*** & 5.97*** & 5.68*** \\
## NameIndian:V\_Productcigarettes - NameChinese:V\_Productbabyformula & 16.2*** & 5.44*** & 4.96*** \\
## NameIndian:V\_Productcigarettes - NameIndian:V\_Productbabyformula & 16.16*** & 5.8*** & 5.71*** \\
## NameWhite:V\_Productbabyformula - NameBlack:V\_Productbabyformula & 0.61 & -0.27 & -0.33 \\
## NameWhite:V\_Productbabyformula - NameChinese:V\_Productbabyformula & -0.11 & -0.8 & -1.05 \\
## NameWhite:V\_Productbabyformula - NameIndian:V\_Productbabyformula & -0.15 & -0.44 & -0.3 \\
## NameBlack:V\_Productbabyformula - NameChinese:V\_Productbabyformula & -0.72 & -0.53 & -0.72 \\
## NameBlack:V\_Productbabyformula - NameIndian:V\_Productbabyformula & -0.76 & -0.16 & 0.03 \\
## NameChinese:V\_Productbabyformula - NameIndian:V\_Productbabyformula & -0.04 & 0.37 & 0.75 \\
## RespWhite:V\_presentation3NONE - RespChinese:V\_presentation3NONE & -2.36 & -2.74 & -1.87 \\
## RespWhite:V\_presentation3NONE - RespWhite:V\_presentation3Defensive & -5.76*** & 1.1* & 1.05* \\
## RespWhite:V\_presentation3NONE - RespChinese:V\_presentation3Defensive & -8.35*** & -1.78 & -1.22 \\
## RespWhite:V\_presentation3NONE - RespWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_presentation3NONE - RespChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_presentation3NONE - RespWhite:V\_presentation3Defensive & -3.4. & 3.84* & 2.92 \\
## RespChinese:V\_presentation3NONE - RespChinese:V\_presentation3Defensive & -5.99*** & 0.96 & 0.66 \\
## RespChinese:V\_presentation3NONE - RespWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_presentation3NONE - RespChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_presentation3Defensive - RespChinese:V\_presentation3Defensive & -2.59 & -2.88 & -2.26 \\
## RespWhite:V\_presentation3Defensive - RespWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_presentation3Defensive - RespChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_presentation3Defensive - RespWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_presentation3Defensive - RespChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_presentation3Prosocial - RespChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3NONE - NameBlack:V\_presentation3NONE & 3.55** & 0.8 & 1.23. \\
## NameWhite:V\_presentation3NONE - NameChinese:V\_presentation3NONE & 3.7** & 1.03 & 0.75 \\
## NameWhite:V\_presentation3NONE - NameIndian:V\_presentation3NONE & 1.37 & 0.52 & 1.42* \\
## NameWhite:V\_presentation3NONE - NameWhite:V\_presentation3Defensive & -4.41** & 1.41. & 1.37 \\
## NameWhite:V\_presentation3NONE - NameBlack:V\_presentation3Defensive & -4.45** & 1.43. & 2.02* \\
## NameWhite:V\_presentation3NONE - NameChinese:V\_presentation3Defensive & -1.08 & 1.9* & 2* \\
## NameWhite:V\_presentation3NONE - NameIndian:V\_presentation3Defensive & -4.92** & 1.72* & 1.41 \\
## NameWhite:V\_presentation3NONE - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3NONE - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3NONE - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3NONE - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3NONE - NameChinese:V\_presentation3NONE & 0.15 & 0.24 & -0.48 \\
## NameBlack:V\_presentation3NONE - NameIndian:V\_presentation3NONE & -2.18. & -0.27 & 0.2 \\
## NameBlack:V\_presentation3NONE - NameWhite:V\_presentation3Defensive & -7.96*** & 0.62 & 0.15 \\
## NameBlack:V\_presentation3NONE - NameBlack:V\_presentation3Defensive & -8*** & 0.63 & 0.8 \\
## NameBlack:V\_presentation3NONE - NameChinese:V\_presentation3Defensive & -4.64** & 1.11 & 0.78 \\
## NameBlack:V\_presentation3NONE - NameIndian:V\_presentation3Defensive & -8.47*** & 0.92 & 0.18 \\
## NameBlack:V\_presentation3NONE - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3NONE - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3NONE - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3NONE - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3NONE - NameIndian:V\_presentation3NONE & -2.33. & -0.51 & 0.67 \\
## NameChinese:V\_presentation3NONE - NameWhite:V\_presentation3Defensive & -8.11*** & 0.38 & 0.63 \\
## NameChinese:V\_presentation3NONE - NameBlack:V\_presentation3Defensive & -8.15*** & 0.39 & 1.27 \\
## NameChinese:V\_presentation3NONE - NameChinese:V\_presentation3Defensive & -4.79** & 0.87 & 1.25 \\
## NameChinese:V\_presentation3NONE - NameIndian:V\_presentation3Defensive & -8.62*** & 0.69 & 0.66 \\
## NameChinese:V\_presentation3NONE - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3NONE - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3NONE - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3NONE - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3NONE - NameWhite:V\_presentation3Defensive & -5.78*** & 0.89 & -0.05 \\
## NameIndian:V\_presentation3NONE - NameBlack:V\_presentation3Defensive & -5.82*** & 0.91 & 0.6 \\
## NameIndian:V\_presentation3NONE - NameChinese:V\_presentation3Defensive & -2.45 & 1.38. & 0.58 \\
## NameIndian:V\_presentation3NONE - NameIndian:V\_presentation3Defensive & -6.29*** & 1.2 & -0.01 \\
## NameIndian:V\_presentation3NONE - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3NONE - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3NONE - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3NONE - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Defensive - NameBlack:V\_presentation3Defensive & -0.04 & 0.01 & 0.65 \\
## NameWhite:V\_presentation3Defensive - NameChinese:V\_presentation3Defensive & 3.33. & 0.49 & 0.63 \\
## NameWhite:V\_presentation3Defensive - NameIndian:V\_presentation3Defensive & -0.51 & 0.31 & 0.04 \\
## NameWhite:V\_presentation3Defensive - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Defensive - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Defensive - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Defensive - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Defensive - NameChinese:V\_presentation3Defensive & 3.37. & 0.48 & -0.02 \\
## NameBlack:V\_presentation3Defensive - NameIndian:V\_presentation3Defensive & -0.47 & 0.29 & -0.61 \\
## NameBlack:V\_presentation3Defensive - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Defensive - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Defensive - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Defensive - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3Defensive - NameIndian:V\_presentation3Defensive & -3.84* & -0.18 & -0.59 \\
## NameChinese:V\_presentation3Defensive - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3Defensive - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3Defensive - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3Defensive - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3Defensive - NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3Defensive - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3Defensive - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_presentation3Defensive - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Prosocial - NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Prosocial - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_presentation3Prosocial - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Prosocial - NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_presentation3Prosocial - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_presentation3Prosocial - NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3NONE & -12.22*** & -0.99 & -1.33* \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3NONE & -12.89*** & -7.34*** & -5.71*** \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3NONE & 5.73*** & 0.92 & 0.62 \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Defensive & -13.14*** & -0.27 & -0.87 \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Defensive & -15.38*** & 0.7 & 0.09 \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Defensive & -12.61*** & -5.31*** & -3.65*** \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Defensive & -1.73 & 1.58. & 1.42. \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.07*** & 1.83* & 1.92* \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Prosocial & -5.69*** & -3.26*** & -4.07*** \\
## V\_Producthardwaresupplies:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Prosocial & 13.02*** & 2.58** & 2.77** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3NONE & -0.66 & -6.35*** & -4.38*** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3NONE & 17.96*** & 1.91** & 1.96** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Defensive & -0.92 & 0.72 & 0.47 \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Defensive & -3.16* & 1.69* & 1.42. \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Defensive & -0.39 & -4.32*** & -2.32** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Defensive & 10.49*** & 2.57** & 2.75** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.29*** & 2.82*** & 3.26*** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Prosocial & 6.53*** & -2.27** & -2.73** \\
## V\_Producttoiletpaper:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Prosocial & 25.24*** & 3.57*** & 4.1*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3NONE & 18.62*** & 8.25*** & 6.33*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Defensive & -0.25 & 7.06*** & 4.84*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Defensive & -2.49 & 8.04*** & 5.8*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Defensive & 0.28 & 2.03* & 2.06* \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Defensive & 11.15*** & 8.92*** & 7.12*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.96*** & 9.16*** & 7.63*** \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Prosocial & 7.19*** & 4.08*** & 1.64. \\
## V\_Productcigarettes:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Prosocial & 25.91*** & 9.92*** & 8.48*** \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Defensive & -18.87*** & -1.19 & -1.49. \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Defensive & -21.11*** & -0.21 & -0.53 \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Defensive & -18.34*** & -6.23*** & -4.27*** \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Defensive & -7.47*** & 0.67 & 0.79 \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.34*** & 0.91 & 1.3 \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Productcigarettes:V\_presentation3Prosocial & -11.43*** & -4.18*** & -4.69*** \\
## V\_Productbabyformula:V\_presentation3NONE - V\_Productbabyformula:V\_presentation3Prosocial & 7.28*** & 1.67* & 2.15* \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Producttoiletpaper:V\_presentation3Defensive & -2.24 & 0.98 & 0.96 \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Defensive & 0.53 & -5.03*** & -2.78** \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Defensive & 11.41*** & 1.86. & 2.28* \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.21*** & 2.1* & 2.79** \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Prosocial & 7.45*** & -2.99** & -3.2** \\
## V\_Producthardwaresupplies:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Prosocial & 26.16*** & 2.86** & 3.64*** \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Defensive & 2.77 & -6.01*** & -3.74*** \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Defensive & 13.65*** & 0.88 & 1.32 \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.45*** & 1.12 & 1.83. \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Prosocial & 9.69*** & -3.96*** & -4.16*** \\
## V\_Producttoiletpaper:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Prosocial & 28.4*** & 1.88* & 2.68** \\
## V\_Productcigarettes:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Defensive & 10.88*** & 6.89*** & 5.06*** \\
## V\_Productcigarettes:V\_presentation3Defensive - V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.68*** & 7.14*** & 5.57*** \\
## V\_Productcigarettes:V\_presentation3Defensive - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Productcigarettes:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Prosocial & 6.92*** & 2.05* & -0.42 \\
## V\_Productcigarettes:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Prosocial & 25.63*** & 7.89*** & 6.42*** \\
## V\_Productbabyformula:V\_presentation3Defensive - V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.8*** & 0.24 & 0.51 \\
## V\_Productbabyformula:V\_presentation3Defensive - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Productbabyformula:V\_presentation3Defensive - V\_Productcigarettes:V\_presentation3Prosocial & -3.96* & -4.84*** & -5.48*** \\
## V\_Productbabyformula:V\_presentation3Defensive - V\_Productbabyformula:V\_presentation3Prosocial & 14.75*** & 1 & 1.35 \\
## V\_Producthardwaresupplies:V\_presentation3Prosocial - V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producthardwaresupplies:V\_presentation3Prosocial - V\_Productcigarettes:V\_presentation3Prosocial & -17.76*** & -5.09*** & -5.99*** \\
## V\_Producthardwaresupplies:V\_presentation3Prosocial - V\_Productbabyformula:V\_presentation3Prosocial & 0.95 & 0.76 & 0.85 \\
## V\_Producttoiletpaper:V\_presentation3Prosocial - V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Producttoiletpaper:V\_presentation3Prosocial - V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## V\_Productcigarettes:V\_presentation3Prosocial - V\_Productbabyformula:V\_presentation3Prosocial & 18.71*** & 5.84*** & 6.84*** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producthardwaresupplies & -1.39 & -0.19 & -0.41 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producthardwaresupplies & -1.06 & 0.38 & 0.67 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producthardwaresupplies & -1.01 & -0.84 & -0.37 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producthardwaresupplies & 0.04 & 0.86 & 2.57. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producthardwaresupplies & -2.6 & -0.61 & -0.3 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -3.23 & -0.54 & 1.61 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & -1.14 & -2.78 & -0.54 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -13.54*** & -6.37*** & -3.95** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -16.23*** & -9.15*** & -8.11*** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -11.54*** & -3.09* & -1.92 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -11.69*** & -9.2*** & -5.6* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -6.35** & -2.16. & -1.16 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -8.04* & -10.01*** & -6.77** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -7.95*** & -2.84* & -2.01 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -15.37*** & -7.46** & -5.87* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 5.26* & 2.25. & 1.97 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 4.03 & -0.06 & 2.18 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 6.82** & 0.66 & 0.96 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 3.68 & 0.97 & 2.53 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 3.61 & 0.93 & 1.19 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 5.46. & -0.35 & 0.86 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 2.78 & 1.43 & 3.09* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 6.2. & -0.12 & 0.45 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producthardwaresupplies & 0.32 & 0.56 & 1.08 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producthardwaresupplies & 0.38 & -0.65 & 0.04 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producthardwaresupplies & 1.42 & 1.04 & 2.98 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producthardwaresupplies & -1.22 & -0.42 & 0.11 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -1.84 & -0.35 & 2.02 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & 0.25 & -2.59 & -0.13 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -12.15*** & -6.18** & -3.54 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -14.85*** & -8.96*** & -7.7*** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -10.16** & -2.9 & -1.51 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -10.3** & -9.01*** & -5.19** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -4.96 & -1.97 & -0.74 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -6.65. & -9.83*** & -6.36** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -6.57. & -2.65 & -1.6 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -13.99*** & -7.27*** & -5.46** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 6.65. & 2.43 & 2.38 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 5.41 & 0.12 & 2.59 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 8.2* & 0.85 & 1.37 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 5.07 & 1.16 & 2.94 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 5 & 1.11 & 1.6 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 6.84* & -0.17 & 1.28 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 4.16 & 1.61 & 3.5 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 7.59* & 0.07 & 0.86 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producthardwaresupplies & 0.05 & -1.22 & -1.03 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producthardwaresupplies & 1.1 & 0.48 & 1.9 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producthardwaresupplies & -1.54 & -0.99 & -0.96 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -2.17 & -0.92 & 0.95 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & -0.08 & -3.16 & -1.21 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -12.48*** & -6.74*** & -4.62*** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -15.17*** & -9.52*** & -8.78*** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -10.48*** & -3.47** & -2.59. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -10.62** & -9.58*** & -6.27** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -5.29* & -2.54* & -1.82 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -6.98* & -10.39*** & -7.44** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -6.89** & -3.21* & -2.67* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -14.31*** & -7.84*** & -6.54** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 6.32** & 1.87 & 1.31 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 5.09 & -0.44 & 1.52 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 7.88*** & 0.28 & 0.29 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 4.75 & 0.59 & 1.86 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 4.67* & 0.55 & 0.52 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 6.52* & -0.73 & 0.2 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 3.84. & 1.05 & 2.43. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 7.27* & -0.49 & -0.22 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producthardwaresupplies & 1.05 & 1.7 & 2.93 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producthardwaresupplies & -1.6 & 0.23 & 0.07 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -2.22 & 0.3 & 1.98 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & -0.13 & -1.94 & -0.17 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -12.53*** & -5.53* & -3.58 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -15.23*** & -8.31*** & -7.74*** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -10.54** & -2.25 & -1.55 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -10.68** & -8.36*** & -5.23** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -5.34 & -1.32 & -0.79 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -7.03* & -9.17*** & -6.4*** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -6.95* & -2 & -1.64 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -14.36*** & -6.62*** & -5.5** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 6.27. & 3.08 & 2.34 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 5.03 & 0.77 & 2.55 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 7.83* & 1.5 & 1.33 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 4.69 & 1.81 & 2.9 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 4.62 & 1.76 & 1.56 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 6.46. & 0.49 & 1.23 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 3.79 & 2.27 & 3.46 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 7.21* & 0.72 & 0.82 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producthardwaresupplies & -2.64 & -1.46 & -2.86 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -3.27 & -1.4 & -0.95 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & -1.17 & -3.64 & -3.11 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -13.58*** & -7.22*** & -6.52*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -16.27*** & -10*** & -10.68*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -11.58*** & -3.95** & -4.49*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -11.72*** & -10.06*** & -8.17*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -6.39** & -3.02* & -3.72** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -8.08* & -10.87*** & -9.34*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -7.99*** & -3.69** & -4.57*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -15.41*** & -8.32*** & -8.44*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 5.22* & 1.39 & -0.59 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 3.99 & -0.92 & -0.38 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 6.78** & -0.2 & -1.61 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 3.65 & 0.11 & -0.04 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 3.58 & 0.07 & -1.38 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 5.42 & -1.21 & -1.7 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 2.74 & 0.57 & 0.53 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 6.17. & -0.97 & -2.12 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producthardwaresupplies & -0.62 & 0.07 & 1.91 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & 1.47 & -2.17 & -0.25 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -10.94** & -5.76* & -3.65 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -13.63*** & -8.54*** & -7.81*** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -8.94** & -2.48 & -1.62 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -9.08** & -8.59*** & -5.3** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -3.74 & -1.55 & -0.86 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -5.43 & -9.41*** & -6.48** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -5.35 & -2.23 & -1.71 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -12.77*** & -6.85*** & -5.57** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 7.86* & 2.85 & 2.27 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 6.63. & 0.54 & 2.48 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 9.42** & 1.27 & 1.25 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 6.29. & 1.58 & 2.83 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 6.22. & 1.53 & 1.48 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 8.06* & 0.26 & 1.16 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 5.38 & 2.03 & 3.39 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 8.81** & 0.49 & 0.75 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producthardwaresupplies & 2.09 & -2.24 & -2.16 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -10.31*** & -5.83*** & -5.56*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -13*** & -8.61*** & -9.73*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -8.31*** & -2.55* & -3.53** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -8.46* & -8.66*** & -7.21** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -3.12 & -1.62 & -2.77* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -4.81 & -9.47*** & -8.39*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -4.73. & -2.3. & -3.62** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -12.14*** & -6.92** & -7.48** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 8.49*** & 2.78* & 0.36 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 7.26* & 0.47 & 0.57 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 10.05*** & 1.2 & -0.66 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 6.91* & 1.51 & 0.91 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 6.84** & 1.46 & -0.43 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 8.69** & 0.19 & -0.75 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 6.01* & 1.97 & 1.48 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 9.43** & 0.42 & -1.16 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productcigarettes & -12.4*** & -3.59 & -3.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productcigarettes & -15.1*** & -6.37*** & -7.57*** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productcigarettes & -10.41** & -0.31 & -1.38 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productcigarettes & -10.55*** & -6.42*** & -5.06** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productcigarettes & -5.21 & 0.62 & -0.61 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productcigarettes & -6.9* & -7.23*** & -6.23** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productcigarettes & -6.82* & -0.06 & -1.47 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productcigarettes & -14.24*** & -4.68* & -5.33** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameWhite:V\_Productbabyformula & 6.4. & 5.03* & 2.51 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameWhite:V\_Productbabyformula & 5.16 & 2.71 & 2.72 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameBlack:V\_Productbabyformula & 7.96* & 3.44 & 1.5 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameBlack:V\_Productbabyformula & 4.82 & 3.75* & 3.07. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameChinese:V\_Productbabyformula & 4.75 & 3.7 & 1.73 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameChinese:V\_Productbabyformula & 6.59* & 2.43 & 1.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespWhite:NameIndian:V\_Productbabyformula & 3.92 & 4.21. & 3.64 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies - RespChinese:NameIndian:V\_Productbabyformula & 7.34* & 2.66 & 0.99 \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Producttoiletpaper & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productcigarettes & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameWhite:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameBlack:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameChinese:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespWhite:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper - RespChinese:NameIndian:V\_Productbabyformula & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameWhite:V\_Productcigarettes & -2.69 & -2.78 & -4.16. \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameBlack:V\_Productcigarettes & 2 & 3.27* & 2.03 \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameBlack:V\_Productcigarettes & 1.85 & -2.84 & -1.65 \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameChinese:V\_Productcigarettes & 7.19** & 4.21*** & 2.79* \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameChinese:V\_Productcigarettes & 5.5 & -3.65 & -2.82 \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & 5.58* & 3.53** & 1.94 \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -1.83 & -1.09 & -1.92 \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 18.8*** & 8.61*** & 5.92*** \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 17.57*** & 6.3** & 6.13* \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 20.36*** & 7.03*** & 4.91*** \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 17.22*** & 7.34** & 6.48** \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 17.15*** & 7.29*** & 5.14*** \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 19*** & 6.01** & 4.81* \\
## RespWhite:NameWhite:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 16.32*** & 7.79*** & 7.04*** \\
## RespWhite:NameWhite:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 19.74*** & 6.25** & 4.4. \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameBlack:V\_Productcigarettes & 4.69 & 6.06** & 6.19** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameBlack:V\_Productcigarettes & 4.55 & -0.05 & 2.51 \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameChinese:V\_Productcigarettes & 9.89** & 6.99** & 6.96** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameChinese:V\_Productcigarettes & 8.2* & -0.87 & 1.34 \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & 8.28* & 6.31** & 6.1* \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & 0.86 & 1.69 & 2.24 \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 21.49*** & 11.39*** & 10.08*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 20.26*** & 9.08*** & 10.29*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 23.05*** & 9.81*** & 9.07*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 19.92*** & 10.12*** & 10.64*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 19.85*** & 10.07*** & 9.3*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 21.69*** & 8.79*** & 8.98*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 19.01*** & 10.57*** & 11.21*** \\
## RespChinese:NameWhite:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 22.44*** & 9.03*** & 8.56*** \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameBlack:V\_Productcigarettes & -0.14 & -6.11** & -3.68 \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameChinese:V\_Productcigarettes & 5.2* & 0.93 & 0.77 \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameChinese:V\_Productcigarettes & 3.51 & -6.92** & -4.85. \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & 3.59 & 0.25 & -0.09 \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -3.83 & -4.37. & -3.95 \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 16.8*** & 5.34*** & 3.89** \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 15.57*** & 3.03 & 4.1. \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 18.36*** & 3.75** & 2.88* \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 15.23*** & 4.06. & 4.45. \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 15.16*** & 4.02** & 3.11* \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 17*** & 2.74 & 2.79 \\
## RespWhite:NameBlack:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 14.32*** & 4.52*** & 5.02*** \\
## RespWhite:NameBlack:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 17.75*** & 2.97 & 2.37 \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameChinese:V\_Productcigarettes & 5.34 & 7.04** & 4.45. \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameChinese:V\_Productcigarettes & 3.65 & -0.81 & -1.17 \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & 3.73 & 6.36** & 3.59 \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -3.69 & 1.74 & -0.27 \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 16.95*** & 11.45*** & 7.57** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 15.71*** & 9.14*** & 7.78*** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 18.51*** & 9.86*** & 6.56** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 15.37*** & 10.17*** & 8.13*** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 15.3*** & 10.13*** & 6.79** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 17.14*** & 8.85*** & 6.47*** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 14.46*** & 10.63*** & 8.69*** \\
## RespChinese:NameBlack:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 17.89*** & 9.08*** & 6.05** \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameChinese:V\_Productcigarettes & -1.69 & -7.86*** & -5.62* \\
## RespWhite:NameChinese:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & -1.61 & -0.68 & -0.85 \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -9.03** & -5.3* & -4.72* \\
## RespWhite:NameChinese:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 11.61*** & 4.4*** & 3.13* \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 10.37** & 2.09 & 3.34 \\
## RespWhite:NameChinese:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 13.17*** & 2.82* & 2.11. \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 10.03** & 3.13 & 3.68 \\
## RespWhite:NameChinese:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 9.96*** & 3.08* & 2.34. \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 11.8*** & 1.81 & 2.02 \\
## RespWhite:NameChinese:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 9.13*** & 3.58** & 4.25*** \\
## RespWhite:NameChinese:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 12.55*** & 2.04 & 1.6 \\
## RespChinese:NameChinese:V\_Productcigarettes - RespWhite:NameIndian:V\_Productcigarettes & 0.08 & 7.18** & 4.77. \\
## RespChinese:NameChinese:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -7.33* & 2.55 & 0.9 \\
## RespChinese:NameChinese:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 13.3*** & 12.26*** & 8.75*** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 12.06*** & 9.95*** & 8.95*** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 14.86*** & 10.68*** & 7.73** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 11.72*** & 10.98*** & 9.3*** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 11.65** & 10.94*** & 7.96** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 13.49*** & 9.66*** & 7.64*** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 10.82** & 11.44*** & 9.87*** \\
## RespChinese:NameChinese:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 14.24*** & 9.9*** & 7.22*** \\
## RespWhite:NameIndian:V\_Productcigarettes - RespChinese:NameIndian:V\_Productcigarettes & -7.42* & -4.62* & -3.86 \\
## RespWhite:NameIndian:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 13.22*** & 5.08*** & 3.98** \\
## RespWhite:NameIndian:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 11.98*** & 2.77 & 4.19. \\
## RespWhite:NameIndian:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 14.77*** & 3.5** & 2.96* \\
## RespWhite:NameIndian:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 11.64*** & 3.81. & 4.54. \\
## RespWhite:NameIndian:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 11.57*** & 3.76** & 3.2* \\
## RespWhite:NameIndian:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 13.41*** & 2.49 & 2.87 \\
## RespWhite:NameIndian:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 10.73*** & 4.26** & 5.1*** \\
## RespWhite:NameIndian:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 14.16*** & 2.72 & 2.46 \\
## RespChinese:NameIndian:V\_Productcigarettes - RespWhite:NameWhite:V\_Productbabyformula & 20.63*** & 9.71*** & 7.84** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespChinese:NameWhite:V\_Productbabyformula & 19.4*** & 7.4*** & 8.05*** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespWhite:NameBlack:V\_Productbabyformula & 22.19*** & 8.12*** & 6.83** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespChinese:NameBlack:V\_Productbabyformula & 19.06*** & 8.43*** & 8.4*** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespWhite:NameChinese:V\_Productbabyformula & 18.99*** & 8.39*** & 7.06** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespChinese:NameChinese:V\_Productbabyformula & 20.83*** & 7.11*** & 6.73*** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespWhite:NameIndian:V\_Productbabyformula & 18.15*** & 8.89*** & 8.96*** \\
## RespChinese:NameIndian:V\_Productcigarettes - RespChinese:NameIndian:V\_Productbabyformula & 21.58*** & 7.34*** & 6.32** \\
## RespWhite:NameWhite:V\_Productbabyformula - RespChinese:NameWhite:V\_Productbabyformula & -1.23 & -2.31 & 0.21 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespWhite:NameBlack:V\_Productbabyformula & 1.56 & -1.58 & -1.02 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespChinese:NameBlack:V\_Productbabyformula & -1.58 & -1.28 & 0.56 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespWhite:NameChinese:V\_Productbabyformula & -1.65 & -1.32 & -0.79 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespChinese:NameChinese:V\_Productbabyformula & 0.2 & -2.6 & -1.11 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -2.48 & -0.82 & 1.12 \\
## RespWhite:NameWhite:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 0.94 & -2.36 & -1.52 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespWhite:NameBlack:V\_Productbabyformula & 2.79 & 0.73 & -1.22 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespChinese:NameBlack:V\_Productbabyformula & -0.34 & 1.04 & 0.35 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespWhite:NameChinese:V\_Productbabyformula & -0.41 & 0.99 & -0.99 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespChinese:NameChinese:V\_Productbabyformula & 1.43 & -0.29 & -1.32 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -1.25 & 1.49 & 0.91 \\
## RespChinese:NameWhite:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 2.18 & -0.05 & -1.73 \\
## RespWhite:NameBlack:V\_Productbabyformula - RespChinese:NameBlack:V\_Productbabyformula & -3.13 & 0.31 & 1.57 \\
## RespWhite:NameBlack:V\_Productbabyformula - RespWhite:NameChinese:V\_Productbabyformula & -3.21 & 0.26 & 0.23 \\
## RespWhite:NameBlack:V\_Productbabyformula - RespChinese:NameChinese:V\_Productbabyformula & -1.36 & -1.01 & -0.09 \\
## RespWhite:NameBlack:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -4.04. & 0.76 & 2.14 \\
## RespWhite:NameBlack:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & -0.61 & -0.78 & -0.51 \\
## RespChinese:NameBlack:V\_Productbabyformula - RespWhite:NameChinese:V\_Productbabyformula & -0.07 & -0.05 & -1.34 \\
## RespChinese:NameBlack:V\_Productbabyformula - RespChinese:NameChinese:V\_Productbabyformula & 1.77 & -1.32 & -1.66 \\
## RespChinese:NameBlack:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -0.91 & 0.46 & 0.57 \\
## RespChinese:NameBlack:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 2.52 & -1.09 & -2.08 \\
## RespWhite:NameChinese:V\_Productbabyformula - RespChinese:NameChinese:V\_Productbabyformula & 1.84 & -1.28 & -0.32 \\
## RespWhite:NameChinese:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -0.83 & 0.5 & 1.91 \\
## RespWhite:NameChinese:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 2.59 & -1.04 & -0.74 \\
## RespChinese:NameChinese:V\_Productbabyformula - RespWhite:NameIndian:V\_Productbabyformula & -2.68 & 1.78 & 2.23 \\
## RespChinese:NameChinese:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 0.75 & 0.24 & -0.41 \\
## RespWhite:NameIndian:V\_Productbabyformula - RespChinese:NameIndian:V\_Productbabyformula & 3.43 & -1.54 & -2.64 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3NONE & -4.28. & -2.38 & -0.98 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3NONE & 1.99 & 1.14 & 1.77* \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3NONE & 0.84 & -1.93 & -0.29 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3NONE & 2.32. & 1.04 & 1.45. \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3NONE & 0.8 & -1.36 & -0.93 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & 0.47 & 0.88 & 1.98* \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -2.01 & -2.21 & -0.11 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -5.09** & 1.15 & 2.04* \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -8** & -0.71 & -0.27 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -5.64** & 1.41 & 2.04* \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -7.54** & -0.93 & 1.03 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -2.11 & 2.7** & 2.67** \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -4.34 & -1.28 & 0.35 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -5.4** & 2.2* & 2.63** \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -8.72** & -1.14 & -0.78 \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3NONE & 6.27* & 3.52. & 2.74 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3NONE & 5.12* & 0.45 & 0.69 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3NONE & 6.6** & 3.43. & 2.43 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3NONE & 5.08* & 1.03 & 0.05 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & 4.75. & 3.26. & 2.95 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & 2.27 & 0.17 & 0.87 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -0.81 & 3.53. & 3.02 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -3.73 & 1.68 & 0.71 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -1.36 & 3.79. & 3.02 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -3.26 & 1.45 & 2.01 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & 2.17 & 5.08* & 3.65. \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -0.06 & 1.11 & 1.33 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -1.12 & 4.58* & 3.6. \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -4.44. & 1.24 & 0.19 \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3NONE & -1.15 & -3.07 & -2.06 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3NONE & 0.33 & -0.1 & -0.31 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3NONE & -1.19 & -2.5 & -2.7 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & -1.52 & -0.26 & 0.21 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -4 & -3.35. & -1.87 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -7.08*** & 0.01 & 0.28 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -9.99*** & -1.85 & -2.04 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -7.63*** & 0.27 & 0.28 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -9.53*** & -2.07 & -0.74 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -4.1* & 1.56. & 0.91 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -6.33* & -2.41 & -1.41 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -7.39*** & 1.06 & 0.86 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -10.71*** & -2.28 & -2.55 \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3NONE & 1.49 & 2.97 & 1.74 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3NONE & -0.04 & 0.57 & -0.64 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & -0.37 & 2.8 & 2.27 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -2.85 & -0.29 & 0.18 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -5.93* & 3.08 & 2.33 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -8.84*** & 1.22 & 0.02 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -6.48* & 3.34 & 2.33 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -8.38*** & 0.99 & 1.32 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -2.95 & 4.63* & 2.96 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -5.17* & 0.65 & 0.64 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -6.24* & 4.13* & 2.92 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -9.56*** & 0.79 & -0.49 \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3NONE & -1.52 & -2.4 & -2.38 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & -1.85 & -0.17 & 0.52 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -4.33. & -3.26. & -1.56 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -7.42*** & 0.11 & 0.59 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -10.33*** & -1.75 & -1.72 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -7.96*** & 0.36 & 0.59 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -9.87*** & -1.98 & -0.42 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -4.43* & 1.66. & 1.22 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -6.66* & -2.32 & -1.1 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -7.72*** & 1.16 & 1.17 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -11.04*** & -2.18 & -2.23 \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3NONE & -0.33 & 2.23 & 2.91 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -2.81 & -0.86 & 0.82 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -5.9* & 2.51 & 2.97 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -8.81*** & 0.65 & 0.66 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -6.44* & 2.76 & 2.97 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -8.34*** & 0.42 & 1.96 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -2.91 & 4.06* & 3.6. \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -5.14* & 0.08 & 1.28 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -6.2* & 3.56. & 3.56. \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -9.52*** & 0.22 & 0.15 \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3NONE & -2.48 & -3.09 & -2.08 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -5.56** & 0.28 & 0.07 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -8.48** & -1.58 & -2.25 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -6.11*** & 0.53 & 0.07 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -8.01** & -1.81 & -0.95 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -2.58 & 1.82* & 0.7 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -4.81. & -2.15 & -1.62 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -5.87** & 1.32 & 0.65 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -9.19** & -2.02 & -2.76 \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Defensive & -3.08 & 3.37 & 2.15 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Defensive & -6* & 1.51 & -0.16 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Defensive & -3.63 & 3.62. & 2.15 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Defensive & -5.53* & 1.28 & 1.14 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Defensive & -0.1 & 4.92* & 2.78 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Defensive & -2.33 & 0.94 & 0.46 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Defensive & -3.39 & 4.42* & 2.73 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Defensive & -6.71* & 1.07 & -0.67 \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3NONE - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Defensive & -2.91 & -1.86 & -2.31 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Defensive & -0.54 & 0.26 & 0 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Defensive & -2.45 & -2.09 & -1.01 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Defensive & 2.98 & 1.55 & 0.63 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Defensive & 0.76 & -2.43 & -1.69 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & -0.31 & 1.05 & 0.58 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -3.62 & -2.29 & -2.82 \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Defensive & 2.37 & 2.11 & 2.31 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Defensive & 0.46 & -0.23 & 1.3 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Defensive & 5.9. & 3.41 & 2.94 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Defensive & 3.67 & -0.57 & 0.62 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & 2.61 & 2.91 & 2.9 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -0.71 & -0.43 & -0.51 \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Defensive & -1.91 & -2.34 & -1.01 \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Defensive & 3.53. & 1.29 & 0.63 \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Defensive & 1.3 & -2.68 & -1.69 \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & 0.24 & 0.79 & 0.58 \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -3.08 & -2.55 & -2.82 \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Defensive & 5.43. & 3.64. & 1.65 \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Defensive & 3.21 & -0.34 & -0.68 \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & 2.14 & 3.14 & 1.6 \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -1.18 & -0.21 & -1.81 \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Defensive & -2.23 & -3.98. & -2.32 \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & -3.29 & -0.5 & -0.05 \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -6.61* & -3.84. & -3.46 \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Defensive & -1.06 & 3.48 & 2.27 \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -4.38 & 0.13 & -1.14 \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Defensive & -3.32 & -3.34 & -3.41 \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespWhite:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_presentation3Defensive - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespChinese:NameWhite:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespWhite:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Prosocial - RespChinese:NameBlack:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Prosocial - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Prosocial - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Prosocial - RespWhite:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Prosocial - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Prosocial - RespChinese:NameChinese:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Prosocial - RespWhite:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_presentation3Prosocial - RespChinese:NameIndian:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE & 0.54 & -1.54 & -1.85 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3NONE & -10.69*** & -0.51 & -1.34. \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3NONE & -13.22*** & -3.01 & -3.18 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3NONE & -9.57*** & -5.29*** & -4.89*** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3NONE & -15.67*** & -10.92*** & -8.38*** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 6.67*** & 0.78 & -0.15 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 5.33* & -0.49 & -0.46 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.53*** & -0.48 & -0.4 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.21*** & -1.61 & -3.19 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.49*** & 1.19 & 0.01 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -16.73*** & -1.33 & -1.68 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.29*** & -2.64** & -2.21* \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.39*** & -9.51*** & -6.94** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & -1.29 & 1.32 & 0.41 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.64 & 0.31 & 0.57 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.98*** & 1.64. & 1.1 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.71*** & 0.47 & 0.89 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.04*** & -2.27* & -2.62** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -4.81. & -5.79** & -7.37*** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.11*** & 2.48** & 2.22* \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 14.47*** & 1.15 & 1.47 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3NONE & -11.23*** & 1.03 & 0.51 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3NONE & -13.76*** & -1.48 & -1.33 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3NONE & -10.11*** & -3.75. & -3.03 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3NONE & -16.21*** & -9.39*** & -6.53*** \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 6.13* & 2.32 & 1.7 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 4.79* & 1.05 & 1.4 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.07*** & 1.06 & 1.46 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.75*** & -0.07 & -1.33 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -14.03*** & 2.73 & 1.86 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.27*** & 0.21 & 0.17 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.84*** & -1.11 & -0.35 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.93*** & -7.98*** & -5.09*** \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & -1.83 & 2.86 & 2.26 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & -2.18 & 1.85 & 2.42. \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.43*** & 3.18 & 2.95 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.16*** & 2.01 & 2.74. \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.58* & -0.73 & -0.76 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -5.35* & -4.26** & -5.52*** \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.56*** & 4.02* & 4.07. \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.93*** & 2.68. & 3.32* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3NONE & -2.53 & -2.5 & -1.84 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3NONE & 1.12 & -4.78*** & -3.55*** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3NONE & -4.98* & -10.41*** & -7.04*** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 17.36*** & 1.29. & 1.19 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 16.02*** & 0.02 & 0.88 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.84 & 0.03 & 0.94 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.52 & -1.1 & -1.85 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -2.8 & 1.7. & 1.35 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -6.04* & -0.82 & -0.34 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.39 & -2.14* & -0.87 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -3.7 & -9*** & -5.61* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.4*** & 1.83. & 1.75. \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.05** & 0.82 & 1.91 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.66*** & 2.15* & 2.44* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.39*** & 0.98 & 2.23 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.65** & -1.76. & -1.28 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.88* & -5.28* & -6.03** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.79*** & 2.99** & 3.56*** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 25.16*** & 1.65 & 2.81 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3NONE & 3.65 & -2.28 & -1.71 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3NONE & -2.45 & -7.91*** & -5.2*** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 19.89*** & 3.79. & 3.03 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 18.55*** & 2.52* & 2.72* \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.69 & 2.53 & 2.78 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.99 & 1.4 & -0.01 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.27 & 4.2* & 3.19 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.51 & 1.68 & 1.5 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 2.92 & 0.37 & 0.97 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -1.17 & -6.5*** & -3.76** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.93*** & 4.33* & 3.59. \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.58*** & 3.32* & 3.75** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.19*** & 4.65* & 4.28* \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.92*** & 3.48* & 4.07** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.18** & 0.74 & 0.56 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.41*** & -2.78* & -4.19** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.32*** & 5.5** & 5.4* \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.69*** & 4.16** & 4.65*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3NONE & -6.1* & -5.63** & -3.5. \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 16.24*** & 6.07*** & 4.74*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 14.9*** & 4.8* & 4.43* \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.96 & 4.81*** & 4.49*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.64 & 3.68. & 1.7 \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.93* & 6.48*** & 4.9*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -7.16* & 3.96. & 3.21 \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.73 & 2.64** & 2.68** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -4.82 & -4.22* & -2.06 \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.28*** & 6.61*** & 5.29*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.93** & 5.6** & 5.46* \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.54*** & 6.93*** & 5.99*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.27*** & 5.76** & 5.78** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 3.52* & 3.02** & 2.27* \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.76. & -0.5 & -2.48 \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.67*** & 7.77*** & 7.1*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.04*** & 6.43** & 6.36** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3NONE & 22.34*** & 11.7*** & 8.23*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & 21*** & 10.44*** & 7.93*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.14 & 10.44*** & 7.99*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.46 & 9.32*** & 5.2*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 2.18 & 12.12*** & 8.39*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -1.06 & 9.6*** & 6.7*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 5.38* & 8.28*** & 6.18** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & 1.28 & 1.41 & 1.44 \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.38*** & 12.24*** & 8.79*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.03*** & 11.23*** & 8.96*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.65*** & 12.57*** & 9.48*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.38*** & 11.4*** & 9.28*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.63*** & 8.66*** & 5.77** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.86*** & 5.13*** & 1.01 \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.77*** & 13.41*** & 10.6*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 30.14*** & 12.07*** & 9.85*** \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3NONE & -1.34 & -1.27 & -0.31 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.2*** & -1.26 & -0.25 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.88*** & -2.39 & -3.04 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -20.17*** & 0.41 & 0.16 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -23.4*** & -2.11 & -1.53 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & -16.97*** & -3.43*** & -2.06* \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -21.06*** & -10.29*** & -6.79** \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.96*** & 0.54 & 0.56 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.31** & -0.47 & 0.72 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.3** & 0.86 & 1.25 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.03* & -0.31 & 1.04 \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -12.72*** & -3.05** & -2.47* \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -11.48*** & -6.57** & -7.22** \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 5.43** & 1.7. & 2.37* \\
## RespWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.8** & 0.36 & 1.62 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.86*** & 0.01 & 0.06 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.54*** & -1.12 & -2.73* \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -18.83*** & 1.68 & 0.47 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -22.06*** & -0.84 & -1.22 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & -15.63*** & -2.16 & -1.75 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -19.72*** & -9.02*** & -6.49*** \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & -6.62* & 1.81 & 0.86 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.97** & 0.8 & 1.03 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.64* & 2.13 & 1.56 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.37** & 0.96 & 1.35 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -11.38*** & -1.78 & -2.16 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -10.14*** & -5.31*** & -6.91*** \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.77* & 2.97 & 2.67 \\
## RespChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.14*** & 1.63 & 1.93 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.68 & -1.13 & -2.79 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.96 & 1.67 & 0.41 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -5.2. & -0.85 & -1.28 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 1.23 & -2.16. & -1.81 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -2.86 & -9.03*** & -6.55** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.24*** & 1.8 & 0.81 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.89** & 0.79 & 0.97 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.5*** & 2.12. & 1.5 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.23*** & 0.95 & 1.29 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.49** & -1.79 & -2.22. \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.72* & -5.31* & -6.97** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.63*** & 2.96** & 2.61* \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26*** & 1.62 & 1.87 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 0.72 & 2.8 & 3.2 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.52 & 0.28 & 1.51 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 3.92 & -1.04 & 0.98 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -0.18 & -7.91*** & -3.76* \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.92*** & 2.93 & 3.59 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.57*** & 1.92 & 3.76* \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.19*** & 3.25 & 4.29. \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.92*** & 2.08 & 4.08* \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.17** & -0.66 & 0.57 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.4** & -4.19** & -4.19** \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.32*** & 4.09. & 5.4* \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.68*** & 2.75. & 4.66** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.24 & -2.52 & -1.69 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 3.2 & -3.84*** & -2.22* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -0.9 & -10.7*** & -6.96** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.2*** & 0.13 & 0.4 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.85*** & -0.88 & 0.56 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.47*** & 0.45 & 1.09 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.2*** & -0.72 & 0.88 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.45*** & -3.46** & -2.63* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.69** & -6.99** & -7.38** \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.6*** & 1.29 & 2.21* \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.96*** & -0.05 & 1.46 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Defensive & 6.44* & -1.32 & -0.52 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.34 & -8.19*** & -5.26** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.44*** & 2.65 & 2.09 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.09*** & 1.64 & 2.25 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.71*** & 2.97 & 2.78 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.44*** & 1.8 & 2.57 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.69*** & -0.94 & -0.94 \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.92*** & -4.47** & -5.69*** \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.83*** & 3.81. & 3.9. \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 31.2*** & 2.47 & 3.15. \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Defensive & -4.09 & -6.87** & -4.74* \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 9*** & 3.96*** & 2.61* \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.66** & 2.96 & 2.78 \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.27*** & 4.29*** & 3.31** \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23*** & 3.12 & 3.1 \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.25* & 0.38 & -0.41 \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.49. & -3.15 & -5.17* \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.4*** & 5.13*** & 4.42*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.76*** & 3.79. & 3.68 \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.1*** & 10.83*** & 7.35** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.75*** & 9.82*** & 7.52*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.36*** & 11.15*** & 8.04*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.09*** & 9.98*** & 7.84*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.34** & 7.24** & 4.33. \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.58** & 3.72* & -0.43 \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.49*** & 12*** & 9.16*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.86*** & 10.66*** & 8.42*** \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.35 & -1.01 & 0.16 \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.27*** & 0.32 & 0.69 \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.99*** & -0.85 & 0.48 \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.75* & -3.59** & -3.02** \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.52 & -7.11** & -7.78*** \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.39*** & 1.16 & 1.81 \\
## RespWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 15.76*** & -0.18 & 1.06 \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.61*** & 1.33 & 0.53 \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.34*** & 0.16 & 0.32 \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.4 & -2.58 & -3.19 \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.17 & -6.1*** & -7.94*** \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.74*** & 2.17 & 1.65 \\
## RespChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.11*** & 0.83 & 0.9 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 0.73 & -1.17 & -0.21 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -18.02*** & -3.91*** & -3.72** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -16.78*** & -7.44*** & -8.47*** \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.13 & 0.84 & 1.12 \\
## RespWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.49 & -0.5 & 0.37 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & -18.75*** & -2.74 & -3.51 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & -17.51*** & -6.27*** & -8.26*** \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & -0.6 & 2.01 & 1.33 \\
## RespChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.77 & 0.67 & 0.58 \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:V\_Productcigarettes:V\_presentation3Prosocial & 1.24 & -3.53 & -4.76* \\
## RespWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.15*** & 4.75*** & 4.83*** \\
## RespWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.51*** & 3.41 & 4.09. \\
## RespChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:V\_Productbabyformula:V\_presentation3Prosocial & 16.91*** & 8.28*** & 9.59*** \\
## RespChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.28*** & 6.94*** & 8.84*** \\
## RespWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.37 & -1.34 & -0.75 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & 3.43 & 0.85 & 0.53 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -1.3 & -0.73 & 0.12 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -1.98 & -2.38. & -0.41 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -15*** & -2.48. & -2.18 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -11.49*** & -2.99* & -1.58 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -9.82*** & 0.07 & -0.72 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -12.43*** & -0.84 & -0.61 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -17.36*** & -9.96*** & -7.71*** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -12.52*** & -7.11*** & -4.49** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & -8.29** & -7.9*** & -6.42*** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -13.23*** & -6.65*** & -3.98** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 4.51. & 0.4 & 0.32 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 6.94** & 0.41 & 0.86 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 6.36* & 0.66 & 0.44 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 5.28* & -0.08 & 1.11 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.4*** & -0.44 & -1.7 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.72*** & -1.51 & -1.54 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.96*** & 1.02 & 1.21 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.33*** & -2.44 & -1.19 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -15.88*** & 0.75 & 0.89 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -16.14*** & -0.26 & 1.33 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -12.51*** & -0.08 & -1.04 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -16.84*** & 0.13 & -0.57 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -17.56*** & -8.01*** & -6.21*** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -11.44*** & -5.03** & -1.86 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -7.76* & -6.71*** & -3.48. \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -13.54*** & -3.76* & -2.8 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 0.34 & 1.31 & 2.94 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -3.35 & 0.47 & 0.59 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.96 & 1.35 & 1.74 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -2.82 & 0.93 & 0.63 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.26*** & 1.4 & 1.11 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.13** & 1.21 & 1.48 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.34*** & 1.34 & 2.1 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.7*** & 1.09 & 3.24. \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.81* & -4.06* & -4.14* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.95* & -5.05** & -4.91** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.59 & -2.41 & -1.96 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.28. & -3.79* & -5.01** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.02*** & 2.8 & 3. \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 15.11*** & 2.81. & 3.81* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.14** & 0.09 & 0.92 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 13.96*** & 2.36 & 3.6* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -4.73. & -1.58 & -0.41 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -5.41* & -3.24* & -0.94 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -18.43*** & -3.33* & -2.71. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -14.92*** & -3.84** & -2.11 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -13.25*** & -0.78 & -1.25 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -15.86*** & -1.69 & -1.14 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -20.79*** & -10.81*** & -8.24*** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -15.95*** & -7.96*** & -5.02*** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & -11.72*** & -8.75*** & -6.95*** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -16.66*** & -7.5*** & -4.51** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 1.08 & -0.45 & -0.21 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 3.5 & -0.44 & 0.33 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 2.93 & -0.19 & -0.09 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 1.85 & -0.93 & 0.58 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.83*** & -1.29 & -2.23 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.16*** & -2.36 & -2.07 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.39*** & 0.17 & 0.68 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.76*** & -3.29. & -1.72 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -19.31*** & -0.1 & 0.36 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.57*** & -1.11 & 0.8 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -15.94*** & -0.93 & -1.57 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -20.28*** & -0.72 & -1.11 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.99*** & -8.86*** & -6.74*** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -14.87*** & -5.88*** & -2.39 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -11.19*** & -7.56*** & -4.01* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -16.97*** & -4.61** & -3.33. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -3.09 & 0.46 & 2.41 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.78* & -0.38 & 0.06 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -4.39 & 0.5 & 1.21 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -6.25. & 0.08 & 0.1 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.83** & 0.55 & 0.58 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.7* & 0.36 & 0.95 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.91* & 0.49 & 1.57 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.27** & 0.24 & 2.7 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.24*** & -4.91** & -4.68** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.38*** & -5.9*** & -5.44** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -6.02. & -3.26. & -2.5 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -8.71** & -4.64** & -5.54** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 8.59** & 1.95 & 2.47 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 11.68*** & 1.96 & 3.27. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.71* & -0.76 & 0.39 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.53*** & 1.51 & 3.07. \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -0.69 & -1.65 & -0.52 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -13.71*** & -1.75 & -2.3 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -10.19*** & -2.26 & -1.69 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -8.52** & 0.81 & -0.84 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -11.14*** & -0.1 & -0.73 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -16.06*** & -9.23*** & -7.82*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -11.22*** & -6.38*** & -4.61** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & -6.99* & -7.16*** & -6.54*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -11.94*** & -5.91*** & -4.1** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 5.8* & 1.14 & 0.2 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 8.23** & 1.14 & 0.74 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 7.66** & 1.39 & 0.33 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 6.58* & 0.66 & 0.99 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.1** & 0.29 & -1.82 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.43*** & -0.77 & -1.66 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.66** & 1.75 & 1.09 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.03*** & -1.71 & -1.31 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -14.58*** & 1.49 & 0.78 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -14.84*** & 0.47 & 1.21 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -11.21*** & 0.66 & -1.16 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -15.55*** & 0.86 & -0.69 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -16.26*** & -7.27*** & -6.33*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -10.14** & -4.29** & -1.97 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -6.46. & -5.97*** & -3.6* \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -12.24*** & -3.03. & -2.92 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 1.64 & 2.05 & 2.82 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -2.05 & 1.21 & 0.47 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 0.34 & 2.09 & 1.63 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.53 & 1.66 & 0.52 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.56*** & 2.14 & 1 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.42*** & 1.94 & 1.36 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.64*** & 2.07 & 1.98 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14*** & 1.83 & 3.12. \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -5.51. & -3.32* & -4.26* \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -6.65* & -4.32* & -5.03** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.3 & -1.68 & -2.08 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.99 & -3.06. & -5.13** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.31*** & 3.53* & 2.88. \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.4*** & 3.55* & 3.69* \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.44*** & 0.82 & 0.8 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.25*** & 3.09. & 3.48* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -13.02*** & -0.09 & -1.78 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -9.5*** & -0.61 & -1.17 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -7.84** & 2.46. & -0.31 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -10.45*** & 1.55 & -0.2 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -15.37*** & -7.57*** & -7.3*** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -10.54*** & -4.73*** & -4.08** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & -6.31* & -5.51*** & -6.01*** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -11.25*** & -4.26** & -3.57* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 6.49* & 2.79* & 0.72 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 8.92*** & 2.79* & 1.27 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 8.35*** & 3.05* & 0.85 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 7.26** & 2.31 & 1.52 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.42** & 1.95 & -1.29 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.74*** & 0.88 & -1.13 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -8.97** & 3.4* & 1.62 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.34*** & -0.05 & -0.78 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.89*** & 3.14. & 1.3 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -14.16*** & 2.12 & 1.73 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -10.53*** & 2.31 & -0.63 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -14.86*** & 2.51 & -0.17 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -15.57*** & -5.62** & -5.8** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -9.46** & -2.64 & -1.45 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -5.77. & -4.32* & -3.08. \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -11.55*** & -1.38 & -2.39 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 2.33 & 3.7* & 3.35. \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -1.37 & 2.86. & 0.99 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 1.02 & 3.74* & 2.15 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -0.84 & 3.31. & 1.04 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.24*** & 3.79* & 1.52 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.11*** & 3.59. & 1.89 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.33*** & 3.72* & 2.51 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.68*** & 3.48* & 3.64* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.82 & -1.67 & -3.74* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.96. & -2.67 & -4.5* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -0.61 & -0.02 & -1.56 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.3 & -1.41 & -4.6** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14*** & 5.18** & 3.41* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.09*** & 5.2** & 4.21* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.12*** & 2.48 & 1.32 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.94*** & 4.74** & 4.01* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 3.52 & -0.51 & 0.61 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 5.19* & 2.55. & 1.46 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 2.57 & 1.64 & 1.57 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -2.35 & -7.48*** & -5.52*** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & 2.48 & -4.63*** & -2.31. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 6.71** & -5.42*** & -4.24** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & 1.77 & -4.17** & -1.8 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 19.51*** & 2.88* & 2.5. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 21.94*** & 2.89* & 3.05* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.37*** & 3.14* & 2.63. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 20.28*** & 2.4. & 3.29* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.6 & 2.04 & 0.48 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.28 & 0.97 & 0.64 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.05 & 3.49* & 3.39. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.68 & 0.04 & 0.99 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.87 & 3.23* & 3.08. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.14 & 2.22 & 3.51* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.49 & 2.4 & 1.14 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.84 & 2.6 & 1.61 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.55 & -5.53** & -4.03* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.56 & -2.55 & 0.33 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.25* & -4.23* & -1.3 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.47 & -1.29 & -0.62 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.35*** & 3.79* & 5.12** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.65*** & 2.95. & 2.77 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.04*** & 3.83* & 3.93* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.18*** & 3.41. & 2.82 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.27*** & 3.88* & 3.3. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.13*** & 3.69* & 3.66. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.35*** & 3.81* & 4.29* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.7*** & 3.57* & 5.42** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.2** & -1.58 & -1.96 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.06* & -2.58 & -2.73 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.41*** & 0.07 & 0.22 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.72** & -1.31 & -2.83. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.02*** & 5.28** & 5.18** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.11*** & 5.29** & 5.99*** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.14*** & 2.57 & 3.1. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.96*** & 4.84** & 5.78*** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 1.67 & 3.07* & 0.86 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -0.95 & 2.16 & 0.97 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -5.87* & -6.97*** & -6.13*** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -1.03 & -4.12** & -2.91* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 3.2 & -4.91*** & -4.84** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -1.75 & -3.66** & -2.4. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16*** & 3.4* & 1.89 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 18.42*** & 3.4* & 2.44. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 17.85*** & 3.65** & 2.02 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 16.77*** & 2.91* & 2.69. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.91 & 2.55 & -0.12 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.24 & 1.49 & 0.04 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.53 & 4.01* & 2.79 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.84 & 0.55 & 0.38 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -4.39 & 3.75* & 2.47 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.65 & 2.73 & 2.9. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -1.02 & 2.91. & 0.54 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.36 & 3.12. & 1 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.07. & -5.02** & -4.63* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.05 & -2.04 & -0.28 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.73 & -3.72* & -1.91 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -2.05 & -0.77 & -1.22 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.83*** & 4.31* & 4.52* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.14* & 3.46* & 2.16 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.53*** & 4.34** & 3.32* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.67* & 3.92* & 2.21 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.75*** & 4.39** & 2.69 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.61*** & 4.2* & 3.06 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.83*** & 4.33* & 3.68* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.19*** & 4.08* & 4.81** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.68 & -1.07 & -2.57 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.54 & -2.06 & -3.33. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.9** & 0.58 & -0.39 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.2* & -0.8 & -3.43* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.51*** & 5.79*** & 4.58** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.59*** & 5.81*** & 5.38** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.63*** & 3.08. & 2.49 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.44*** & 5.35** & 5.18** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -2.61 & -0.91 & 0.11 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -7.54** & -10.03*** & -6.99*** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -2.7 & -7.19*** & -3.77** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 1.53 & -7.97*** & -5.7*** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -3.41 & -6.72*** & -3.26* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 14.33*** & 0.33 & 1.04 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 16.75*** & 0.33 & 1.58 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.18*** & 0.59 & 1.16 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 15.1*** & -0.15 & 1.83 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.58 & -0.51 & -0.98 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.91 & -1.58 & -0.82 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.14 & 0.94 & 1.93 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.51 & -2.51 & -0.47 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -6.06. & 0.68 & 1.61 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.32. & -0.34 & 2.05 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.69 & -0.15 & -0.32 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.03* & 0.05 & 0.15 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.74* & -8.08*** & -5.49** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -1.62 & -5.1** & -1.14 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.06 & -6.78*** & -2.76 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.72 & -3.84* & -2.08 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.16** & 1.24 & 3.66. \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 6.47* & 0.4 & 1.31 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.86** & 1.28 & 2.46 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7* & 0.85 & 1.35 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.08*** & 1.33 & 1.83 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.95*** & 1.13 & 2.2 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.16*** & 1.26 & 2.82 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.52*** & 1.02 & 3.95* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 3.01 & -4.13* & -3.43* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.87 & -5.13** & -4.19* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.23* & -2.48 & -1.24 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.54 & -3.87* & -4.29* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.84*** & 2.73 & 3.72* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.93*** & 2.74 & 4.53** \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.96*** & 0.02 & 1.64 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.77*** & 2.28 & 4.32* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3NONE & -4.92. & -9.12*** & -7.1*** \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & -0.09 & -6.28*** & -3.88** \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.14 & -7.06*** & -5.81*** \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -0.8 & -5.81*** & -3.37* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16.94*** & 1.24 & 0.93 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.37*** & 1.24 & 1.47 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 18.8*** & 1.5 & 1.05 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 17.71*** & 0.76 & 1.72 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.03 & 0.4 & -1.09 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.29 & -0.67 & -0.93 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.48 & 1.85 & 1.82 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.89 & -1.6 & -0.58 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.44 & 1.59 & 1.51 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.71 & 0.57 & 1.94 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.08 & 0.76 & -0.43 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.41 & 0.96 & 0.04 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.12 & -7.17*** & -5.6** \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.99 & -4.19* & -1.25 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.68 & -5.87*** & -2.87 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.1 & -2.93 & -2.19 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.78*** & 2.15 & 3.55. \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.08** & 1.31 & 1.2 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.47*** & 2.19 & 2.35 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.61** & 1.77 & 1.24 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.7*** & 2.24 & 1.72 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.56*** & 2.04 & 2.09 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.78*** & 2.17 & 2.71 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.13*** & 1.93 & 3.85* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.63. & -3.22. & -3.53* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.49 & -4.22* & -4.3* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.84** & -1.57 & -1.35 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.15* & -2.96. & -4.4* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.45*** & 3.64* & 3.61* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.54*** & 3.65* & 4.42* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.57*** & 0.93 & 1.53 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.39*** & 3.2. & 4.21* \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3NONE & 4.84. & 2.85* & 3.22* \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 9.07*** & 2.06 & 1.29 \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & 4.12 & 3.31* & 3.73* \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 21.87*** & 10.36*** & 8.02*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 24.29*** & 10.37*** & 8.57*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 23.72*** & 10.62*** & 8.15*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 22.64*** & 9.88*** & 8.82*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.96 & 9.52*** & 6.01** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.63 & 8.45*** & 6.17*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 6.4* & 10.98*** & 8.92*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.03 & 7.52*** & 6.52*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 1.48 & 10.71*** & 8.6*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 1.22 & 9.7*** & 9.03*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 4.85 & 9.88*** & 6.67*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 0.51 & 10.09*** & 7.13*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.2 & 1.95 & 1.5 \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 5.92. & 4.93** & 5.85*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.6** & 3.25. & 4.22* \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 3.82 & 6.2*** & 4.91** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 17.7*** & 11.27*** & 10.65*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.01*** & 10.43*** & 8.29*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.4*** & 11.31*** & 9.45*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.54*** & 10.89*** & 8.34*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.62*** & 11.36*** & 8.82*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.48*** & 11.17*** & 9.19*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.7*** & 11.3*** & 9.81*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.06*** & 11.05*** & 10.94*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.55*** & 5.9*** & 3.56* \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 9.41** & 4.91** & 2.8 \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.77*** & 7.55*** & 5.74** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.07*** & 6.17*** & 2.7 \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 29.38*** & 12.76*** & 10.71*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 32.46*** & 12.77*** & 11.51*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.5*** & 10.05*** & 8.62*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.31*** & 12.32*** & 11.31*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.23 & -0.78 & -1.93 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -0.71 & 0.47 & 0.51 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17.03*** & 7.52*** & 4.81*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.45*** & 7.52*** & 5.35*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 18.88*** & 7.77*** & 4.93*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 17.8*** & 7.04*** & 5.6*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.12 & 6.67*** & 2.79 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.21 & 5.61*** & 2.95. \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.56 & 8.13*** & 5.7** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.81 & 4.67** & 3.3. \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.36 & 7.87*** & 5.38** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.62 & 6.85*** & 5.82** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.01 & 7.04*** & 3.45* \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.33 & 7.24*** & 3.91* \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.04 & -0.89 & -1.72 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.08 & 2.08 & 2.63 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.76 & 0.41 & 1.01 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.02 & 3.35. & 1.69 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.86*** & 8.43*** & 7.43*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.17** & 7.59*** & 5.08** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.56*** & 8.46*** & 6.23*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.7** & 8.04*** & 5.12** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.78*** & 8.52*** & 5.6*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.65*** & 8.32*** & 5.97** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.86*** & 8.45*** & 6.59*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.22*** & 8.2*** & 7.72*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.71. & 3.06. & 0.34 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.57 & 2.06 & -0.42 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.93** & 4.7** & 2.52 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.24* & 3.32* & -0.52 \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.54*** & 9.91*** & 7.49*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.63*** & 9.93*** & 8.29*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.66*** & 7.2*** & 5.41** \\
## NameBlack:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.48*** & 9.47*** & 8.09*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3NONE & -4.94. & 1.25 & 2.44 \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 12.8*** & 8.3*** & 6.74*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 15.23*** & 8.3*** & 7.28*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 14.66*** & 8.56*** & 6.86*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 13.57*** & 7.82*** & 7.53*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.11 & 7.46*** & 4.72* \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.43* & 6.39*** & 4.88** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.66 & 8.91*** & 7.63*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.03. & 5.46** & 5.23** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -7.58* & 8.65*** & 7.31*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.85* & 7.63*** & 7.75*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -4.22 & 7.82*** & 5.38** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -8.55** & 8.02*** & 5.84** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -9.27** & -0.11 & 0.21 \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -3.15 & 2.87. & 4.56** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 0.54 & 1.19 & 2.94. \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -5.24 & 4.13* & 3.62. \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.64* & 9.21*** & 9.36*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.94 & 8.37*** & 7.01*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.33* & 9.25*** & 8.16*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5.47 & 8.83*** & 7.05*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.55*** & 9.3*** & 7.53*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.42*** & 9.1*** & 7.9*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.63*** & 9.23*** & 8.52*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.99*** & 8.99*** & 9.65*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 1.49 & 3.84* & 2.27 \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.35 & 2.84 & 1.51 \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.7. & 5.49** & 4.45* \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.01 & 4.1* & 1.41 \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.31*** & 10.7*** & 9.42*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.4*** & 10.71*** & 10.22*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.43*** & 7.99*** & 7.34*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.25*** & 10.26*** & 10.02*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17.74*** & 7.05*** & 4.3** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 20.17*** & 7.05*** & 4.84*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 19.6*** & 7.31*** & 4.42** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 18.51*** & 6.57*** & 5.09*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.83 & 6.21*** & 2.28 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.49 & 5.14** & 2.44 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.28 & 7.66*** & 5.19** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.09 & 4.21* & 2.79 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -2.64 & 7.4*** & 4.87** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.91 & 6.38*** & 5.31** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.72 & 6.57*** & 2.94. \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.61 & 6.77*** & 3.41. \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -4.32 & -1.36 & -2.23 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.79 & 1.62 & 2.12 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.48. & -0.06 & 0.5 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -0.3 & 2.88. & 1.18 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.58*** & 7.96*** & 6.92*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.88** & 7.12*** & 4.57** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.27*** & 8*** & 5.72*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.41** & 7.58*** & 4.61* \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.5*** & 8.05*** & 5.09** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.36*** & 7.85*** & 5.46** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.58*** & 7.98*** & 6.08*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.93*** & 7.74*** & 7.21*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.43* & 2.59 & -0.17 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.29 & 1.59 & -0.93 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.64** & 4.24* & 2.02 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.95** & 2.85. & -1.03 \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.25*** & 9.45*** & 6.98*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.34*** & 9.46*** & 7.78*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.37*** & 6.74*** & 4.9* \\
## NameIndian:V\_Productcigarettes:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.19*** & 9.01*** & 7.58*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3NONE & 2.43 & 0 & 0.55 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & 1.86 & 0.26 & 0.13 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & 0.77 & -0.48 & 0.79 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.91*** & -0.84 & -2.02 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.23*** & -1.91 & -1.86 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.46*** & 0.61 & 0.89 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.83*** & -2.84 & -1.51 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -20.38*** & 0.35 & 0.58 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -20.65*** & -0.67 & 1.01 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.02*** & -0.48 & -1.36 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.35*** & -0.28 & -0.89 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -22.07*** & -8.41*** & -6.53*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -15.95*** & -5.43** & -2.17 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -12.26*** & -7.11*** & -3.8* \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -18.04*** & -4.17* & -3.12. \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -4.16 & 0.91 & 2.62 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -7.86* & 0.07 & 0.27 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -5.47. & 0.95 & 1.43 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -7.33* & 0.52 & 0.32 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.75** & 1 & 0.8 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.62. & 0.8 & 1.16 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.84* & 0.93 & 1.78 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.19** & 0.69 & 2.92. \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -11.31*** & -4.46** & -4.46* \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -12.45*** & -5.46** & -5.23** \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -7.1* & -2.81 & -2.28 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -9.79** & -4.2* & -5.33** \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 7.51* & 2.4 & 2.68 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 10.6*** & 2.41 & 3.49* \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.63. & -0.31 & 0.6 \\
## NameWhite:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 9.45** & 1.95 & 3.28. \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3NONE & -0.57 & 0.25 & -0.42 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & -1.66 & -0.48 & 0.25 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.34*** & -0.85 & -2.56 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.66*** & -1.91 & -2.4 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.89*** & 0.61 & 0.35 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.26*** & -2.85. & -2.05 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -22.81*** & 0.35 & 0.03 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -23.08*** & -0.67 & 0.47 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -19.45*** & -0.48 & -1.9 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -23.78*** & -0.28 & -1.44 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -24.49*** & -8.41*** & -7.07*** \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -18.38*** & -5.43** & -2.72 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.69*** & -7.11*** & -4.34* \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -20.47*** & -4.17* & -3.66* \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -6.59. & 0.91 & 2.08 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -10.28*** & 0.07 & -0.27 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -7.9** & 0.94 & 0.88 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -9.76** & 0.52 & -0.23 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.33* & 1 & 0.25 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.19 & 0.8 & 0.62 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.41 & 0.93 & 1.24 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.76. & 0.69 & 2.37 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -13.74*** & -4.46** & -5.01** \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -14.88*** & -5.46** & -5.77** \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -9.53** & -2.82 & -2.83 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -12.22*** & -4.2* & -5.87*** \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 5.08 & 2.39 & 2.14 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 8.17** & 2.41 & 2.94. \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 4.2 & -0.32 & 0.06 \\
## NameBlack:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 7.02* & 1.95 & 2.74 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3NONE & -1.09 & -0.74 & 0.67 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.77*** & -1.1 & -2.14 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.09*** & -2.17 & -1.98 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.32*** & 0.35 & 0.77 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.69*** & -3.1. & -1.64 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -22.24*** & 0.09 & 0.45 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -22.51*** & -0.92 & 0.88 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -18.88*** & -0.74 & -1.48 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -23.21*** & -0.54 & -1.02 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -23.92*** & -8.67*** & -6.65*** \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.81*** & -5.69*** & -2.3 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.12*** & -7.37*** & -3.93* \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -19.9*** & -4.43* & -3.24. \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -6.02. & 0.65 & 2.5 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -9.71** & -0.19 & 0.14 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -7.33** & 0.69 & 1.3 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -9.19** & 0.27 & 0.19 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.9* & 0.74 & 0.67 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.76 & 0.55 & 1.04 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.98 & 0.67 & 1.66 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.34* & 0.43 & 2.79. \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -13.17*** & -4.72** & -4.59** \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -14.31*** & -5.71*** & -5.35** \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.96** & -3.07. & -2.41 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -11.65*** & -4.45** & -5.45** \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 5.65. & 2.14 & 2.56 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 8.74** & 2.15 & 3.36. \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 4.77 & -0.57 & 0.47 \\
## NameChinese:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 7.59* & 1.7 & 3.16. \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.68*** & -0.36 & -2.81 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -20*** & -1.43 & -2.65 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.24*** & 1.09 & 0.1 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.61*** & -2.36 & -2.3 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -21.15*** & 0.83 & -0.22 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.42*** & -0.19 & 0.22 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.79*** & 0 & -2.15 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -22.12*** & 0.2 & -1.69 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -22.84*** & -7.93*** & -7.32*** \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -16.72*** & -4.95** & -2.97. \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.03*** & -6.63*** & -4.59* \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -18.82*** & -3.69* & -3.91* \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -4.93 & 1.39 & 1.83 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -8.63** & 0.55 & -0.52 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.24* & 1.43 & 0.63 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.1* & 1.01 & -0.48 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.98* & 1.48 & 0 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.85. & 1.28 & 0.37 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.06. & 1.41 & 0.99 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.42* & 1.17 & 2.12 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -12.08*** & -3.98* & -5.26** \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -13.22*** & -4.98** & -6.02*** \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -7.87* & -2.33 & -3.08. \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -10.56*** & -3.71* & -6.12*** \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.74* & 2.88. & 1.89 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.83** & 2.89. & 2.69 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 5.86. & 0.17 & -0.19 \\
## NameIndian:V\_Productbabyformula:V\_presentation3NONE - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 8.68** & 2.44 & 2.49 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.32 & -1.07 & 0.16 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.44 & 1.45 & 2.91 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.92 & -2 & 0.51 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.47 & 1.19 & 2.59 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.74 & 0.18 & 3.03 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.11 & 0.36 & 0.66 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.44 & 0.56 & 1.13 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.16 & -7.57*** & -4.51* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.96 & -4.59* & -0.16 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.65 & -6.27** & -1.78 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.14 & -3.33 & -1.1 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.75** & 1.75 & 4.64* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.05* & 0.91 & 2.29 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.44** & 1.79 & 3.44. \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.58* & 1.37 & 2.33 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.66*** & 1.84 & 2.81 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.53*** & 1.65 & 3.18 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.74*** & 1.77 & 3.8. \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.1*** & 1.53 & 4.93* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.6 & -3.62. & -2.45 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.46 & -4.62* & -3.21 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.81* & -1.97 & -0.26 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.12. & -3.35. & -3.31 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.42*** & 3.24 & 4.7* \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.51*** & 3.25 & 5.5** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.54*** & 0.53 & 2.62 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.36*** & 2.8 & 5.3* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.77 & 2.52 & 2.75 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.4 & -0.93 & 0.35 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.15 & 2.26 & 2.43 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.42 & 1.24 & 2.87 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.21 & 1.43 & 0.5 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -2.12 & 1.63 & 0.96 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.83 & -6.5*** & -4.67* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.28 & -3.52. & -0.32 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.97. & -5.2** & -1.94 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.19 & -2.26 & -1.26 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.07*** & 2.82 & 4.48* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.38** & 1.98 & 2.13 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.76*** & 2.86 & 3.28. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.9** & 2.43 & 2.17 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.99*** & 2.91 & 2.65 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.85*** & 2.71 & 3.02 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.07*** & 2.84 & 3.64. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.42*** & 2.6 & 4.77* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.92* & -2.55 & -2.61 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 6.78. & -3.55. & -3.37. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.13*** & -0.9 & -0.43 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.44** & -2.29 & -3.47. \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.74*** & 4.3* & 4.54* \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.83*** & 4.32* & 5.34** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 25.86*** & 1.6 & 2.46 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.68*** & 3.86* & 5.14** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.37 & -3.45. & -2.4 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -4.92 & -0.26 & -0.32 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -5.18 & -1.28 & 0.12 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -1.55 & -1.09 & -2.25 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.89 & -0.89 & -1.79 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.6. & -9.02*** & -7.42*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.48 & -6.04** & -3.07 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.2 & -7.72*** & -4.69* \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -2.58 & -4.78* & -4.01. \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.3** & 0.3 & 1.73 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.61* & -0.54 & -0.62 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10** & 0.34 & 0.53 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.13* & -0.09 & -0.58 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.22*** & 0.39 & -0.1 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.08*** & 0.19 & 0.27 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.3*** & 0.32 & 0.89 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.66*** & 0.08 & 2.02 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.15 & -5.07** & -5.36** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.01 & -6.07** & -6.12** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.36* & -3.42. & -3.18 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.67 & -4.81* & -6.22** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.97*** & 1.78 & 1.79 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.06*** & 1.8 & 2.59 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.1*** & -0.92 & -0.29 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.91*** & 1.34 & 2.39 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.55 & 3.19. & 2.09 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.81 & 2.18 & 2.52 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 1.82 & 2.36 & 0.15 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -2.52 & 2.56 & 0.62 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -3.23 & -5.57** & -5.02* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.88 & -2.59 & -0.67 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.57. & -4.27* & -2.29 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 0.79 & -1.33 & -1.61 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.67*** & 3.75. & 4.13. \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.98** & 2.91 & 1.78 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.37*** & 3.79* & 2.94 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.5** & 3.37 & 1.82 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.59*** & 3.84* & 2.31 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.45*** & 3.65. & 2.67 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.67*** & 3.77. & 3.29 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.03*** & 3.53. & 4.43* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.52* & -1.62 & -2.95 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 6.38. & -2.61 & -3.72. \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.73** & 0.03 & -0.77 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.04* & -1.35 & -3.82. \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.34*** & 5.24** & 4.19* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.43*** & 5.25** & 5* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 25.47*** & 2.53 & 2.11 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.28*** & 4.8* & 4.79* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.27 & -1.02 & 0.43 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.36 & -0.83 & -1.93 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.97 & -0.63 & -1.47 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -1.68 & -8.76*** & -7.11*** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.43 & -5.78** & -2.75 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 8.12* & -7.46*** & -4.38* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.34 & -4.52* & -3.7. \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.22*** & 0.56 & 2.05 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 12.53*** & -0.28 & -0.31 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.92*** & 0.6 & 0.85 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.05*** & 0.17 & -0.26 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.14*** & 0.65 & 0.22 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27*** & 0.45 & 0.59 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.22*** & 0.58 & 1.21 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.58*** & 0.34 & 2.34 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.07* & -4.81* & -5.04* \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.93* & -5.81** & -5.8** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 13.28*** & -3.16 & -2.86 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.59** & -4.55* & -5.9** \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.89*** & 2.05 & 2.11 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.98*** & 2.06 & 2.91 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.01*** & -0.66 & 0.02 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 29.83*** & 1.6 & 2.7 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.63 & 0.19 & -2.37 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.7 & 0.39 & -1.9 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -1.42 & -7.74*** & -7.54*** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.7 & -4.77* & -3.18 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 8.39* & -6.44** & -4.81* \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.6 & -3.5. & -4.13. \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.49*** & 1.58 & 1.61 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 12.79*** & 0.73 & -0.74 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.18*** & 1.61 & 0.42 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.32*** & 1.19 & -0.69 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.4*** & 1.66 & -0.21 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.27*** & 1.47 & 0.15 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.48*** & 1.6 & 0.77 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.84*** & 1.35 & 1.91 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.34* & -3.79. & -5.47** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.2* & -4.79* & -6.24** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 13.55*** & -2.15 & -3.29 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.86** & -3.53. & -6.34** \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.16*** & 3.06 & 1.67 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.25*** & 3.08 & 2.48 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.28*** & 0.35 & -0.41 \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.1*** & 2.62 & 2.27 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.33 & 0.2 & 0.47 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.05 & -7.93*** & -5.17* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.07 & -4.95* & -0.82 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.76 & -6.63*** & -2.44 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.03 & -3.69. & -1.76 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.86*** & 1.39 & 3.98. \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.16* & 0.55 & 1.63 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.55*** & 1.43 & 2.78 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.69* & 1.01 & 1.67 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.77*** & 1.48 & 2.15 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.64*** & 1.28 & 2.52 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.85*** & 1.41 & 3.14 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.21*** & 1.17 & 4.27* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.71 & -3.98* & -3.11 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.57 & -4.98* & -3.87. \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.92** & -2.33 & -0.92 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.23* & -3.71. & -3.97* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.53*** & 2.88 & 4.04* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.62*** & 2.89 & 4.84* \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.65*** & 0.17 & 1.96 \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.47*** & 2.44 & 4.64* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.71 & -8.13*** & -5.64** \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 5.4 & -5.15** & -1.28 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.09* & -6.83*** & -2.91 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 3.31 & -3.89. & -2.23 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 17.19*** & 1.19 & 3.51 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.5*** & 0.35 & 1.16 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.88*** & 1.23 & 2.32 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.02*** & 0.8 & 1.21 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.11*** & 1.28 & 1.69 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.97*** & 1.08 & 2.05 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.19*** & 1.21 & 2.68 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.54*** & 0.97 & 3.81. \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.04** & -4.18* & -3.57. \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.9* & -5.18** & -4.33* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.25*** & -2.53 & -1.39 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 11.56** & -3.92* & -4.44* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.86*** & 2.67 & 3.57. \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.95*** & 2.69 & 4.38* \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.98*** & -0.03 & 1.49 \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.8*** & 2.23 & 4.17* \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 6.12 & 2.98 & 4.35* \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.8* & 1.3 & 2.73 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 4.02 & 4.24* & 3.41 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 17.9*** & 9.32*** & 9.15*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.21*** & 8.48*** & 6.8** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.6*** & 9.36*** & 7.96*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.74*** & 8.94*** & 6.84** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.82*** & 9.41*** & 7.32*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.69*** & 9.21*** & 7.69*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.9*** & 9.34*** & 8.31*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.26*** & 9.1*** & 9.45*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.75** & 3.95* & 2.07 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 9.61* & 2.95 & 1.3 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.97*** & 5.6** & 4.25. \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.27** & 4.22* & 1.2 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 29.58*** & 10.81*** & 9.21*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 32.66*** & 10.82*** & 10.02*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.7*** & 8.1*** & 7.13*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.51*** & 10.37*** & 9.81*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.69 & -1.68 & -1.63 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -2.1 & 1.26 & -0.94 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.79** & 6.34** & 4.8* \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.09* & 5.5** & 2.44 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.48** & 6.38*** & 3.6. \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.62* & 5.96** & 2.49 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.7*** & 6.43*** & 2.97 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.57*** & 6.24** & 3.34 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.78*** & 6.36** & 3.96* \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.14*** & 6.12** & 5.09** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.64 & 0.97 & -2.29 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.5 & -0.03 & -3.05 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.85* & 2.62 & -0.11 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.16. & 1.24 & -3.15 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.46*** & 7.83*** & 4.86* \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.55*** & 7.84*** & 5.66** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.58*** & 5.12* & 2.77 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.4*** & 7.39*** & 5.46** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -5.78 & 2.94 & 0.68 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.1* & 8.02*** & 6.42** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.41 & 7.18*** & 4.07* \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 6.79. & 8.06*** & 5.23** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 4.93 & 7.64*** & 4.12. \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.02*** & 8.11*** & 4.6* \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.88*** & 7.91*** & 4.96* \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.1*** & 8.04*** & 5.58** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.45*** & 7.8*** & 6.72*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 0.95 & 2.65 & -0.66 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -0.19 & 1.65 & -1.43 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.16 & 4.3* & 1.52 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.47 & 2.91 & -1.53 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.77*** & 9.51*** & 6.48** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 22.86*** & 9.52*** & 7.29*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.89*** & 6.8** & 4.4* \\
## NameChinese:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.71*** & 9.07*** & 7.08*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.88*** & 5.08* & 5.74** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.19** & 4.24* & 3.39 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.58*** & 5.12** & 4.54* \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.71** & 4.69* & 3.43 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.8*** & 5.17** & 3.91. \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.66*** & 4.97* & 4.28* \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.88*** & 5.1* & 4.9* \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.24*** & 4.86* & 6.04** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.73. & -0.29 & -1.34 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.59 & -1.29 & -2.11 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.94** & 1.36 & 0.84 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.25* & -0.03 & -2.21 \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.55*** & 6.56*** & 5.8** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.64*** & 6.58*** & 6.61** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.68*** & 3.86. & 3.72. \\
## NameIndian:V\_Productcigarettes:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.49*** & 6.12** & 6.4** \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -3.69 & -0.84 & -2.35 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.31 & 0.04 & -1.2 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.17 & -0.39 & -2.31 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.92*** & 0.09 & -1.83 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.78** & -0.11 & -1.46 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11** & 0.02 & -0.84 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.35** & -0.22 & 0.29 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -7.15. & -5.37** & -7.09*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.29* & -6.37** & -7.85*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.94 & -3.72. & -4.9* \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.63 & -5.11* & -7.95*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.67** & 1.49 & 0.06 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 14.76*** & 1.5 & 0.86 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 10.79** & -1.22 & -2.02 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 13.61*** & 1.04 & 0.66 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 2.39 & 0.88 & 1.16 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 0.53 & 0.46 & 0.05 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.61*** & 0.93 & 0.53 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.48*** & 0.74 & 0.89 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.69*** & 0.86 & 1.51 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.05*** & 0.62 & 2.65 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -3.46 & -4.53* & -4.73* \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.6 & -5.53** & -5.5** \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 0.76 & -2.88 & -2.55 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -1.93 & -4.26* & -5.6** \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 15.37*** & 2.33 & 2.41 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 18.46*** & 2.34 & 3.22 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 14.49*** & -0.38 & 0.33 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.31*** & 1.89 & 3.01 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.86 & -0.42 & -1.11 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.22*** & 0.05 & -0.63 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.09** & -0.14 & -0.26 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.3*** & -0.02 & 0.36 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.66*** & -0.26 & 1.49 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -5.84. & -5.41** & -5.89** \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -6.98* & -6.41*** & -6.65*** \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.63 & -3.76. & -3.71. \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.32 & -5.14** & -6.75*** \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.98*** & 1.45 & 1.26 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.07*** & 1.46 & 2.06 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.1** & -1.26 & -0.83 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 14.92*** & 1.01 & 1.86 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.08*** & 0.47 & 0.48 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.95*** & 0.28 & 0.85 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.17*** & 0.41 & 1.47 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.52*** & 0.16 & 2.6 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -3.98 & -4.99* & -4.78* \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.12 & -5.98** & -5.54** \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 0.23 & -3.34 & -2.6 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.46 & -4.72* & -5.64** \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.84*** & 1.87 & 2.37 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.93*** & 1.89 & 3.17 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.96*** & -0.84 & 0.28 \\
## NameIndian:V\_Productbabyformula:V\_presentation3Defensive - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 16.78*** & 1.43 & 2.97 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & -2.13 & -0.19 & 0.37 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -1.92 & -0.07 & 0.99 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.56 & -0.31 & 2.12 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -20.07*** & -5.46** & -5.26** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -21.21*** & -6.46*** & -6.02** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -15.85*** & -3.81. & -3.08 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -18.55*** & -5.19** & -6.12** \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -1.24 & 1.4 & 1.89 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 1.84 & 1.41 & 2.69 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.12 & -1.31 & -0.2 \\
## NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 0.69 & 0.96 & 2.49 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 0.22 & 0.13 & 0.62 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.57 & -0.12 & 1.75 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -17.93*** & -5.26* & -5.63** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -19.07*** & -6.26** & -6.39** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.72*** & -3.62. & -3.44 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.41*** & -5* & -6.49** \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.89 & 1.59 & 1.52 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.98 & 1.61 & 2.32 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 0.01 & -1.12 & -0.56 \\
## NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.83 & 1.15 & 2.12 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.36 & -0.24 & 1.13 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -18.15*** & -5.39** & -6.25** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -19.29*** & -6.39** & -7.01*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.94*** & -3.74. & -4.07. \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.63*** & -5.13** & -7.11*** \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.67 & 1.46 & 0.9 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.76 & 1.48 & 1.7 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -0.2 & -1.24 & -1.18 \\
## NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.61 & 1.02 & 1.5 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -19.5*** & -5.15** & -7.38*** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -20.65*** & -6.15** & -8.14*** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -15.29*** & -3.5. & -5.2* \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -17.98*** & -4.88* & -8.25*** \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -0.68 & 1.71 & -0.23 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 2.41 & 1.72 & 0.57 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.56 & -1 & -2.32 \\
## NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 1.26 & 1.27 & 0.36 \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -1.14 & -1 & -0.76 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.21 & 1.65 & 2.18 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 1.52 & 0.27 & -0.87 \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.82*** & 6.86*** & 7.15*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.91*** & 6.87*** & 7.95*** \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 17.94*** & 4.15* & 5.06* \\
## NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.76*** & 6.42*** & 7.74*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.35 & 2.65 & 2.94 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.66 & 1.26 & -0.1 \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.96*** & 7.85*** & 7.91*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.05*** & 7.87*** & 8.71*** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.08*** & 5.14* & 5.83** \\
## NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.9*** & 7.41*** & 8.51*** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.69 & -1.38 & -3.05 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.61*** & 5.21* & 4.96* \\
## NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.7*** & 5.22** & 5.77** \\
## NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.73*** & 2.5 & 2.88 \\
## NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 16.55*** & 4.77* & 5.56** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 17.3*** & 6.59*** & 8.01*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 20.39*** & 6.61*** & 8.82*** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.42*** & 3.88. & 5.93** \\
## NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 19.24*** & 6.15** & 8.61*** \\
## NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.09 & 0.01 & 0.81 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -0.88 & -2.71 & -2.08 \\
## NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 1.94 & -0.44 & 0.6 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -3.97 & -2.72 & -2.89 \\
## NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -1.15 & -0.46 & -0.21 \\
## NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.82 & 2.27 & 2.68 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE & -3.66 & -1.54 & 0.27 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & -0.04 & -0.46 & 0.93 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & 3.24 & 0.62 & 0.4 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -2.75 & -0.6 & 2.26 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -3.51 & -2.4 & -1.76 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -5.47. & -1.21 & 1.29 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -2.16 & -5.09* & -1.84 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -14.97*** & -1.83 & -0.46 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -18.7*** & -4.66. & -3.64 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -13.55*** & -0.55 & 0.93 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -13.09** & -6.97** & -3.82 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -10.43*** & -1 & -0.84 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -12.87** & -0.39 & -0.33 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -12.06*** & -0.92 & -0.5 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -16.47*** & -2.29 & -0.45 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -16.5*** & -9.77*** & -7.01*** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -21.88*** & -11.68*** & -8.14** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -12.11*** & -4.72** & -2.56 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -16.59*** & -11.04*** & -6.16* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -8.7** & -4.01** & -2.94. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -11.55** & -13.32*** & -9.63*** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -9.21** & -4.91** & -2.56 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -20.92*** & -9.92*** & -5.13. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 4.85 & 1.26 & 0.38 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 0.5 & -1.99 & 0.52 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 7.04* & -0.06 & 0.67 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 3.17 & -0.66 & 1.32 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.55 & -0.56 & 0.25 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.52 & 0.35 & 0.9 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 2 & 0.21 & 2.59 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 4.89 & -1.9 & -0.1 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.44*** & -2.26 & -0.94 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.02* & -0.15 & -2.2 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.32*** & -1.71 & -0.92 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.79*** & -2.84 & -1.89 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.36* & 0.52 & 2.91 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.22** & -0.02 & -0.23 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.25*** & -0.74 & 1.83 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.07*** & -5.67. & -3.95 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.25*** & 1.23 & 2.34 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -22.17*** & -1.26 & -0.28 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.29*** & -0.21 & 3.35. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -16.66** & -1.85 & -0.43 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -12.91*** & 1.08 & -1.4 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -15.77** & -2.77 & -0.41 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -16.77*** & 0.4 & 0.23 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -20.58*** & -1.69 & -1.12 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -15.77*** & -6.43** & -2.75 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -23.01*** & -11.12*** & -9.41** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -13.83*** & -2.86 & -1.49 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -12.72** & -8.73** & -1.96 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -9.07** & -2.39 & 0.67 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -10.1. & -12.56*** & -7.37* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -10.76** & -1.16 & -0.78 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -19.97*** & -7.9* & -4.56 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -2.53 & 1.73 & 2.43 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -0.44 & -0.63 & 3.72 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -1.74 & 0.07 & 0.13 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -8.62. & -0.66 & 1.31 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -3.71 & 1.25 & 1.42 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.87 & -0.09 & 2.33 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -5.43 & -0.04 & 2.13 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.88 & 0.36 & -0.6 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.89*** & 1.2 & 1.37 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.97* & 0.07 & 1.13 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.62* & 2.24 & 2.41 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.97. & -1.36 & 0.81 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.67* & 1.59 & 2.95 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.36. & -0.46 & 1.51 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.48* & -0.72 & 2.14 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.26** & 1.37 & 4.59 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.9** & -3.95* & -1.67 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.37 & -5.69. & -6.36* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.25** & -2.75 & -1.29 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.31 & -8.9** & -8.26** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.83 & -1.14 & -0.77 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -5.02 & -5.22 & -2.89 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -6.45. & -3.49. & -2.26 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -7.78. & -5.63. & -7.5* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 10.91** & 2.69 & 3.54. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 9.46. & 1.37 & 2.73 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 12.6*** & 0.91 & 2.5 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 13.95** & 3.18 & 5.38. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.44. & 1.02 & 2.31 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.17* & -2.38 & -0.21 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 9.21** & 3.05. & 5** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.04** & 0.14 & 2.47 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & 3.62 & 1.08 & 0.66 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & 6.9 & 2.16 & 0.13 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & 0.91 & 0.93 & 1.99 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & 0.15 & -0.87 & -2.02 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -1.81 & 0.32 & 1.03 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & 1.5 & -3.56 & -2.11 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -11.31** & -0.3 & -0.73 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -15.04*** & -3.12 & -3.9 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -9.89* & 0.99 & 0.67 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -9.43* & -5.43* & -4.08. \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -6.77. & 0.54 & -1.11 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -9.21* & 1.14 & -0.6 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -8.4* & 0.62 & -0.77 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -12.81** & -0.75 & -0.72 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -12.84** & -8.24** & -7.27** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -18.22*** & -10.15*** & -8.41*** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -8.45* & -3.19 & -2.82 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -12.92** & -9.5*** & -6.42** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -5.03 & -2.47 & -3.21 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -7.89. & -11.78*** & -9.89*** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -5.55 & -3.38 & -2.83 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -17.26*** & -8.38*** & -5.39* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 8.51* & 2.8 & 0.11 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 4.17 & -0.46 & 0.26 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 10.7** & 1.48 & 0.4 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 6.83 & 0.87 & 1.06 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 8.21* & 0.98 & -0.02 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 8.18* & 1.88 & 0.64 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 5.66 & 1.75 & 2.32 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 8.56. & -0.37 & -0.36 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.78* & -0.72 & -1.2 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.36. & 1.38 & -2.46 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.65* & -0.17 & -1.18 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.13** & -1.3 & -2.16 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.7 & 2.05 & 2.65 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.55* & 1.51 & -0.49 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.59* & 0.8 & 1.56 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.4** & -4.14 & -4.21 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -9.59* & 2.77 & 2.07 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -18.5*** & 0.28 & -0.55 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -15.62*** & 1.33 & 3.09 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -13* & -0.32 & -0.7 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -9.25* & 2.62 & -1.67 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -12.11* & -1.24 & -0.67 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -13.11** & 1.94 & -0.03 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -16.92** & -0.15 & -1.38 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -12.11* & -4.89. & -3.01 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -19.34*** & -9.59** & -9.67** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -10.16* & -1.33 & -1.75 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -9.06. & -7.19** & -2.23 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -5.41 & -0.85 & 0.41 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -6.44 & -11.03*** & -7.64* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.1 & 0.37 & -1.04 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -16.31** & -6.36* & -4.82 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 1.13 & 3.26 & 2.16 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 3.22 & 0.9 & 3.45 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 1.92 & 1.61 & -0.13 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -4.96 & 0.87 & 1.04 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.05 & 2.79 & 1.16 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 1.79 & 1.45 & 2.06 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.77 & 1.5 & 1.86 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -0.21 & 1.89 & -0.86 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.55*** & 2.73 & 1.1 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.64** & 1.61 & 0.86 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.28* & 3.77 & 2.15 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.64* & 0.18 & 0.55 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.33** & 3.13 & 2.69 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.02* & 1.08 & 1.25 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.14** & 0.81 & 1.88 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.92** & 2.91 & 4.33 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -7.24 & -2.42 & -1.93 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.71 & -4.16 & -6.62* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.58 & -1.21 & -1.56 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.64 & -7.36** & -8.52** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -0.17 & 0.4 & -1.03 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.36 & -3.68 & -3.16 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.78 & -1.96 & -2.52 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.12 & -4.09 & -7.76** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.57** & 4.22 & 3.27 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.13* & 2.91 & 2.46 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.26*** & 2.45 & 2.23 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.61*** & 4.71. & 5.11. \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.11* & 2.56 & 2.05 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 14.83** & -0.84 & -0.48 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 12.87** & 4.58 & 4.73 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.7*** & 1.67 & 2.2 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE & 3.28 & 1.08 & -0.53 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -2.71 & -0.14 & 1.33 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -3.47 & -1.95 & -2.68 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -5.43. & -0.76 & 0.36 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -2.12 & -4.64. & -2.77 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -14.93*** & -1.38 & -1.39 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -18.66*** & -4.2 & -4.57. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -13.51*** & -0.09 & 0 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -13.05** & -6.51* & -4.75. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -10.39*** & -0.54 & -1.77 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -12.83** & 0.06 & -1.26 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -12.02*** & -0.46 & -1.43 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -16.43*** & -1.83 & -1.38 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -16.46*** & -9.32*** & -7.94*** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -21.84*** & -11.23*** & -9.07*** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -12.07*** & -4.27** & -3.49* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -16.55*** & -10.58*** & -7.09** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -8.66** & -3.55* & -3.87* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -11.51** & -12.86*** & -10.56*** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -9.17** & -4.46** & -3.49* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -20.88*** & -9.46*** & -6.06* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 4.89. & 1.72 & -0.55 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 0.54 & -1.54 & -0.41 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 7.08* & 0.4 & -0.26 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 3.21 & -0.21 & 0.39 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.59 & -0.1 & -0.68 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.56 & 0.8 & -0.03 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 2.04 & 0.67 & 1.66 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 4.93 & -1.45 & -1.03 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.4*** & -1.8 & -1.87 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.98* & 0.3 & -3.13 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.28*** & -1.25 & -1.85 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.75*** & -2.38 & -2.82 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.32* & 0.98 & 1.98 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.17** & 0.43 & -1.15 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.21*** & -0.28 & 0.9 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.02*** & -5.22. & -4.88 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.21*** & 1.69 & 1.41 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -22.13*** & -0.8 & -1.21 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.25*** & 0.25 & 2.42 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -16.62** & -1.4 & -1.36 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -12.87*** & 1.54 & -2.33 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -15.73** & -2.31 & -1.34 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -16.73*** & 0.86 & -0.7 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -20.54*** & -1.23 & -2.05 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -15.73*** & -5.97** & -3.68. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -22.97*** & -10.66*** & -10.34** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -13.78*** & -2.41 & -2.42 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -12.68** & -8.27** & -2.89 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -9.03** & -1.93 & -0.26 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -10.06. & -12.11*** & -8.3* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -10.72** & -0.71 & -1.71 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -19.93*** & -7.44* & -5.49. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -2.49 & 2.18 & 1.5 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -0.4 & -0.18 & 2.79 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -1.7 & 0.53 & -0.8 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -8.58. & -0.21 & 0.38 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -3.67 & 1.71 & 0.49 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.83 & 0.37 & 1.4 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -5.39 & 0.42 & 1.2 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.83 & 0.81 & -1.53 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.93*** & 1.65 & 0.44 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.02* & 0.53 & 0.2 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.66* & 2.69 & 1.48 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.01. & -0.9 & -0.12 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.71* & 2.05 & 2.02 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.4. & 0 & 0.59 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.52* & -0.27 & 1.21 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.3** & 1.83 & 3.66 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.86** & -3.5. & -2.6 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.33 & -5.24. & -7.29* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.21** & -2.29 & -2.22 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.27 & -8.44** & -9.19** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.79 & -0.68 & -1.7 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -4.98 & -4.76 & -3.82 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -6.41. & -3.04 & -3.19 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -7.74 & -5.17. & -8.43** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 10.95** & 3.15. & 2.61 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 9.5. & 1.83 & 1.8 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 12.64*** & 1.37 & 1.57 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 13.99** & 3.63 & 4.45 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.49. & 1.48 & 1.38 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.21* & -1.92 & -1.14 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 9.25** & 3.5. & 4.07* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.08** & 0.59 & 1.54 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -5.99 & -1.22 & 1.86 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -6.75 & -3.02 & -2.15 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -8.71* & -1.83 & 0.89 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -5.4 & -5.72* & -2.24 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -18.21*** & -2.45 & -0.86 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -21.94*** & -5.28* & -4.04. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -16.79*** & -1.17 & 0.53 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -16.33*** & -7.59** & -4.22. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -13.67*** & -1.62 & -1.24 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -16.11*** & -1.01 & -0.73 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -15.3*** & -1.54 & -0.9 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -19.71*** & -2.91 & -0.85 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -19.74*** & -10.39*** & -7.4** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -25.12*** & -12.3*** & -8.54*** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -15.35*** & -5.34* & -2.95 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -19.83*** & -11.66*** & -6.55** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -11.94** & -4.63. & -3.34 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -14.79** & -13.94*** & -10.03*** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -12.45** & -5.53* & -2.96 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -24.16*** & -10.54*** & -5.53* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 1.61 & 0.64 & -0.02 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & -2.74 & -2.61 & 0.12 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 3.8 & -0.68 & 0.27 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & -0.07 & -1.29 & 0.93 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 1.31 & -1.18 & -0.15 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 1.28 & -0.27 & 0.5 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -1.24 & -0.41 & 2.19 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 1.65 & -2.52 & -0.5 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.68*** & -2.88 & -1.34 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.26** & -0.77 & -2.6 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.56*** & -2.33 & -1.32 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -22.03*** & -3.46 & -2.29 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.6** & -0.1 & 2.51 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.46*** & -0.65 & -0.62 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.49*** & -1.36 & 1.43 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.31*** & -6.3* & -4.35 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -16.49*** & 0.61 & 1.94 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -25.41*** & -1.88 & -0.68 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -22.53*** & -0.83 & 2.95 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.9*** & -2.47 & -0.83 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -16.15*** & 0.46 & -1.8 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -19.01*** & -3.39 & -0.81 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -20.01*** & -0.22 & -0.16 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -23.82*** & -2.31 & -1.52 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -19.01*** & -7.05* & -3.15 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -26.25*** & -11.74*** & -9.81** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.07*** & -3.48 & -1.89 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -15.96** & -9.35*** & -2.36 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -12.31** & -3.01 & 0.27 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.34* & -13.18*** & -7.77* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -14** & -1.79 & -1.18 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -23.21*** & -8.52** & -4.96 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -5.77 & 1.1 & 2.03 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -3.68 & -1.25 & 3.32 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -4.98 & -0.55 & -0.27 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -11.86* & -1.28 & 0.91 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.95 & 0.63 & 1.02 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -5.11 & -0.71 & 1.93 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.67. & -0.66 & 1.73 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -7.12 & -0.26 & -0.99 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.65* & 0.58 & 0.97 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.73 & -0.55 & 0.73 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.38 & 1.62 & 2.01 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.73 & -1.98 & 0.41 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.43 & 0.97 & 2.56 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.12 & -1.08 & 1.12 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.24 & -1.34 & 1.75 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.02. & 0.75 & 4.19 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -14.14** & -4.58 & -2.07 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -9.61. & -6.32* & -6.75* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -14.49** & -3.37 & -1.69 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.55* & -9.52** & -8.66** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -7.07 & -1.76 & -1.17 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.26 & -5.84. & -3.29 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -9.69* & -4.11 & -2.66 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -11.02* & -6.25* & -7.9** \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 7.67. & 2.07 & 3.14 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.22 & 0.75 & 2.33 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.36* & 0.29 & 2.1 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 10.71* & 2.56 & 4.98. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 4.2 & 0.4 & 1.92 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.93 & -3 & -0.61 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.97 & 2.43 & 4.6 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.8* & -0.49 & 2.07 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE & -0.76 & -1.8 & -4.01 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -2.72 & -0.61 & -0.96 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & 0.59 & -4.49. & -4.1 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -12.22*** & -1.23 & -2.72 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -15.95*** & -4.06 & -5.89* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -10.8*** & 0.05 & -1.32 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -10.34* & -6.37* & -6.07* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -7.68* & -0.4 & -3.1. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -10.12* & 0.21 & -2.59 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -9.31** & -0.32 & -2.76 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -13.72*** & -1.69 & -2.71 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -13.75*** & -9.17*** & -9.26*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -19.13*** & -11.08*** & -10.4*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -9.37** & -4.12* & -4.81** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -13.84*** & -10.44*** & -8.41** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -5.95* & -3.41* & -5.2** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -8.8* & -12.72*** & -11.88*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -6.46* & -4.31** & -4.82** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -18.17*** & -9.31*** & -7.39** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 7.6* & 1.87 & -1.88 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 3.25 & -1.39 & -1.73 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 9.79** & 0.54 & -1.59 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 5.91 & -0.06 & -0.93 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 7.3* & 0.04 & -2.01 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 7.26. & 0.95 & -1.35 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 4.75 & 0.81 & 0.33 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 7.64. & -1.3 & -2.35 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.69** & -1.66 & -3.19 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.28. & 0.45 & -4.45 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.57*** & -1.11 & -3.17 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.05** & -2.24 & -4.15 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.61. & 1.12 & 0.66 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.47** & 0.58 & -2.48 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.5** & -0.14 & -0.43 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.32** & -5.07. & -6.2* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -10.5** & 1.83 & 0.08 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -19.42*** & -0.66 & -2.54 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -16.54*** & 0.39 & 1.1 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -13.91** & -1.25 & -2.69 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -10.16** & 1.68 & -3.66. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -13.02* & -2.17 & -2.67 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -14.02*** & 1 & -2.02 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -17.83*** & -1.09 & -3.37 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -13.02*** & -5.83** & -5* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.26*** & -10.52** & -11.66*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -11.08** & -2.26 & -3.74. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -9.97* & -8.13** & -4.22 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -6.32. & -1.79 & -1.58 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -7.35 & -11.96*** & -9.63** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -8.02* & -0.56 & -3.03 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -17.23** & -7.3* & -6.81* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 0.22 & 2.33 & 0.17 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 2.3 & -0.03 & 1.46 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 1.01 & 0.67 & -2.12 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -5.87 & -0.06 & -0.95 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.96 & 1.85 & -0.83 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 0.87 & 0.52 & 0.07 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -2.68 & 0.57 & -0.13 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.13 & 0.96 & -2.85 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.63*** & 1.8 & -0.89 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.72* & 0.67 & -1.13 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.37** & 2.84 & 0.16 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.72* & -0.76 & -1.44 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.41** & 2.19 & 0.7 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.1* & 0.14 & -0.74 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.23** & -0.12 & -0.11 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.01** & 1.97 & 2.34 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -8.16* & -3.35. & -3.92. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -3.62 & -5.09. & -8.61** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.5* & -2.15 & -3.55. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.56 & -8.3** & -10.51** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.08 & -0.54 & -3.02 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.27 & -4.61 & -5.15 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.7 & -2.89 & -4.51* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.03 & -5.03. & -9.75** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.66*** & 3.29. & 1.28 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.21* & 1.98 & 0.47 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 15.35*** & 1.51 & 0.24 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.7*** & 3.78 & 3.12 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 10.19* & 1.62 & 0.06 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.92* & -1.78 & -2.47 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.96*** & 3.65. & 2.74 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.79*** & 0.74 & 0.21 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & -1.96 & 1.19 & 3.05 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & 1.35 & -2.69 & -0.09 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -11.46** & 0.57 & 1.29 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -15.19*** & -2.26 & -1.88 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -10.04* & 1.85 & 2.69 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -9.58* & -4.57* & -2.06 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -6.92. & 1.4 & 0.91 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -9.36* & 2.01 & 1.42 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -8.55* & 1.48 & 1.25 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -12.96** & 0.11 & 1.3 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -12.99** & -7.37** & -5.25. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -18.37*** & -9.28*** & -6.39** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -8.6* & -2.32 & -0.8 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -13.08** & -8.64*** & -4.4. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -5.19 & -1.61 & -1.19 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -8.04. & -10.92*** & -7.87** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -5.7 & -2.51 & -0.81 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -17.41*** & -7.51*** & -3.37 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 8.36* & 3.67 & 2.13 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 4.01 & 0.41 & 2.28 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 10.55** & 2.34 & 2.42 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 6.68 & 1.74 & 3.08 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 8.06* & 1.84 & 2 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 8.03. & 2.75 & 2.66 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 5.51 & 2.61 & 4.34 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 8.4. & 0.5 & 1.66 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.93* & 0.14 & 0.82 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.51. & 2.25 & -0.44 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.81* & 0.69 & 0.84 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.28** & -0.44 & -0.14 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.85 & 2.92 & 4.67 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.71* & 2.38 & 1.53 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.74* & 1.66 & 3.58 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.56** & -3.27 & -2.19 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -9.74* & 3.63 & 4.09 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -18.66*** & 1.14 & 1.47 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -15.78*** & 2.19 & 5.11. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -13.15* & 0.55 & 1.32 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -9.4* & 3.48 & 0.35 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -12.26* & -0.37 & 1.35 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -13.26** & 2.8 & 1.99 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -17.07** & 0.71 & 0.64 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -12.26** & -4.03 & -0.99 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -19.5*** & -8.72** & -7.65* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -10.32* & -0.46 & 0.27 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -9.21. & -6.33* & -0.21 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -5.56 & 0.01 & 2.43 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -6.59 & -10.16*** & -5.62. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.25 & 1.24 & 0.98 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -16.46** & -5.5. & -2.8 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 0.98 & 4.13 & 4.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 3.07 & 1.77 & 5.47. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 1.77 & 2.47 & 1.89 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -5.11 & 1.74 & 3.06 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.2 & 3.65 & 3.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 1.64 & 2.32 & 4.08 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.92 & 2.37 & 3.88 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -0.37 & 2.76 & 1.16 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.4*** & 3.6 & 3.12 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.48** & 2.47 & 2.88 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.13* & 4.64 & 4.17 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.48* & 1.04 & 2.57 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.18** & 3.99 & 4.71 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.87** & 1.94 & 3.27 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.99** & 1.68 & 3.9 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.77** & 3.77 & 6.35* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -7.39 & -1.55 & 0.09 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.86 & -3.29 & -4.6. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.74. & -0.35 & 0.46 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.8 & -6.5* & -6.5* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -0.32 & 1.26 & 0.99 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.51 & -2.81 & -1.14 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.94 & -1.09 & -0.5 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.27 & -3.23 & -5.74* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.42** & 5.09. & 5.29. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.97* & 3.78 & 4.48 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.11*** & 3.31 & 4.25 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.46*** & 5.58* & 7.13* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 10.95* & 3.42 & 4.07 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 14.68** & 0.02 & 1.54 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 12.72** & 5.45* & 6.75* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.55*** & 2.54 & 4.22 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE & 3.31 & -3.88 & -3.14 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -9.5*** & -0.62 & -1.76 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -13.23*** & -3.45 & -4.93. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -8.08** & 0.66 & -0.36 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -7.62. & -5.76* & -5.11. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -4.96. & 0.21 & -2.14 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -7.4. & 0.82 & -1.63 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -6.59* & 0.29 & -1.8 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -11** & -1.08 & -1.75 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -11.03*** & -8.56*** & -8.3*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -16.41*** & -10.47*** & -9.44*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -6.64* & -3.51* & -3.85* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -11.12** & -9.83*** & -7.45** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -3.23 & -2.8. & -4.24** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -6.08 & -12.11*** & -10.92*** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -3.74 & -3.7* & -3.86* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -15.45*** & -8.7*** & -6.42* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 10.32*** & 2.48 & -0.91 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 5.97 & -0.78 & -0.77 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 12.51*** & 1.15 & -0.63 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 8.64* & 0.55 & 0.03 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 10.02*** & 0.65 & -1.05 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 9.99* & 1.56 & -0.39 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 7.47* & 1.42 & 1.29 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 10.36* & -0.69 & -1.39 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.97* & -1.05 & -2.23 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.55 & 1.06 & -3.49 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -8.85** & -0.5 & -2.21 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.32** & -1.63 & -3.19 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.89 & 1.73 & 1.62 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.75* & 1.19 & -1.52 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.78** & 0.47 & 0.54 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.6* & -4.46 & -5.24. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -7.78* & 2.44 & 1.05 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -16.7*** & -0.05 & -1.58 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -13.82*** & 1 & 2.06 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -11.19* & -0.64 & -1.72 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -7.44* & 2.29 & -2.7 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -10.3* & -1.56 & -1.7 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -11.3** & 1.61 & -1.06 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -15.11** & -0.48 & -2.41 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.3** & -5.22** & -4.04. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -17.54*** & -9.91** & -10.7** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -8.36* & -1.65 & -2.78 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -7.25 & -7.52* & -3.25 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -3.6 & -1.18 & -0.62 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -4.63 & -11.35*** & -8.67** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -5.29 & 0.05 & -2.07 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -14.5** & -6.69* & -5.85. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 2.94 & 2.94 & 1.13 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 5.03 & 0.58 & 2.43 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 3.73 & 1.28 & -1.16 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -3.15 & 0.55 & 0.02 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 1.76 & 2.47 & 0.13 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 3.6 & 1.13 & 1.04 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 0.04 & 1.18 & 0.83 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 1.59 & 1.57 & -1.89 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.36*** & 2.41 & 0.07 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.44** & 1.28 & -0.17 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.09*** & 3.45. & 1.12 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.44** & -0.15 & -0.48 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.14*** & 2.8 & 1.66 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.83** & 0.75 & 0.22 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.95*** & 0.49 & 0.85 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.73*** & 2.58 & 3.3 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -5.43 & -2.74 & -2.96 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -0.9 & -4.48 & -7.65* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.78 & -1.53 & -2.59 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.84 & -7.69* & -9.55** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 1.64 & 0.07 & -2.06 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 0.45 & -4 & -4.19 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -0.98 & -2.28 & -3.55. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.31 & -4.42 & -8.79** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 16.38*** & 3.9* & 2.24 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.93** & 2.59 & 1.44 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 18.07*** & 2.13 & 1.2 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 19.42*** & 4.39 & 4.08 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.91*** & 2.23 & 1.02 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.64** & -1.17 & -1.51 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 14.68*** & 4.26* & 3.7. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.51*** & 1.35 & 1.17 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -12.81** & 3.26 & 1.38 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -16.54*** & 0.44 & -1.8 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -11.39** & 4.55. & 2.78 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & -10.93** & -1.88 & -1.98 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -8.27* & 4.1 & 1 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -10.71* & 4.7* & 1.51 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -9.9* & 4.18 & 1.34 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -14.31*** & 2.8 & 1.39 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -14.34*** & -4.68. & -5.16. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -19.72*** & -6.59** & -6.3** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -9.95* & 0.37 & -0.71 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -14.43*** & -5.94** & -4.31. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -6.54. & 1.09 & -1.1 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -9.39* & -8.23*** & -7.78** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -7.05. & 0.18 & -0.72 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -18.76*** & -4.82* & -3.29 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 7.01. & 6.36* & 2.22 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 2.66 & 3.1 & 2.36 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 9.2* & 5.04. & 2.51 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 5.33 & 4.43* & 3.17 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 6.71. & 4.53. & 2.09 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 6.68. & 5.44* & 2.75 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 4.16 & 5.31* & 4.43. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 7.05 & 3.19 & 1.75 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.28** & 2.84 & 0.91 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.86. & 4.94 & -0.35 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.16** & 3.39 & 0.92 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.63** & 2.26 & -0.05 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.2 & 5.61. & 4.76 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.06** & 5.07. & 1.62 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.09** & 4.36 & 3.67 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.91** & -0.58 & -2.11 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -11.09* & 6.33* & 4.18 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -20.01*** & 3.83 & 1.56 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -17.13*** & 4.89. & 5.19. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -14.5** & 3.24 & 1.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -10.75* & 6.17* & 0.44 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -13.61** & 2.32 & 1.43 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -14.61** & 5.5. & 2.08 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -18.42*** & 3.41 & 0.73 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -13.61** & -1.34 & -0.91 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.85*** & -6.03* & -7.57* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -11.67* & 2.23 & 0.36 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -10.56* & -3.63 & -0.12 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -6.91 & 2.71 & 2.52 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -7.94 & -7.47* & -5.53. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -8.6. & 3.93 & 1.06 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -17.81** & -2.8 & -2.71 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -0.37 & 6.82* & 4.27 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 1.72 & 4.46 & 5.56. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.42 & 5.16. & 1.97 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.46 & 4.43 & 3.15 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.55 & 6.35* & 3.27 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 0.29 & 5.01* & 4.17. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.27 & 5.06. & 3.97 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.72 & 5.45. & 1.25 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.05*** & 6.29* & 3.21 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.13* & 5.16. & 2.97 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.78* & 7.33* & 4.26 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.13* & 3.74 & 2.66 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.83* & 6.69* & 4.8 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.52* & 4.64. & 3.36 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.64* & 4.37 & 3.99 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.42** & 6.47* & 6.43* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -8.74. & 1.14 & 0.17 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.21 & -0.6 & -4.51. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -9.09* & 2.35 & 0.55 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -6.15 & -3.8 & -6.42* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.67 & 3.96 & 1.08 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.86 & -0.12 & -1.05 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.29 & 1.6 & -0.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.62 & -0.53 & -5.65* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.07** & 7.78** & 5.38. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.62* & 6.47* & 4.57 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 14.76** & 6.01* & 4.34 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.11** & 8.27** & 7.22* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.6* & 6.12* & 4.16 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.33* & 2.72 & 1.63 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.37** & 8.14** & 6.84* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.2** & 5.23. & 4.31 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE & -3.73 & -2.83 & -3.18 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 1.42 & 1.29 & 1.39 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 1.88 & -5.14. & -3.36 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 4.54 & 0.84 & -0.38 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 2.1 & 1.44 & 0.13 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 2.91 & 0.92 & -0.04 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -1.5 & -0.46 & 0.01 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -1.53 & -7.94*** & -6.54*** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -6.91. & -9.85*** & -7.68** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 2.86 & -2.89. & -2.09 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -1.62 & -9.2*** & -5.69* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 6.27* & -2.18 & -2.48 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 3.42 & -11.49*** & -9.17** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 5.76. & -3.08. & -2.1 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -5.95 & -8.08** & -4.67. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 19.82*** & 3.1. & 0.84 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 15.48*** & -0.16 & 0.98 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 22.01*** & 1.78 & 1.13 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 18.14*** & 1.17 & 1.79 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 19.52*** & 1.27 & 0.71 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 19.49*** & 2.18 & 1.37 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 16.97*** & 2.04 & 3.05. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 19.87*** & -0.07 & 0.37 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.47 & -0.43 & -0.47 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.95 & 1.68 & -1.73 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.66 & 0.13 & -0.46 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.82 & -1 & -1.43 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 5.61 & 2.35 & 3.38 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.24 & 1.81 & 0.24 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.28 & 1.09 & 2.29 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.09 & -3.84 & -3.49 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 1.72 & 3.07. & 2.8 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -7.19 & 0.57 & 0.18 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.31 & 1.63 & 3.81. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.69 & -0.02 & 0.03 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.06 & 2.91 & -0.94 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.8 & -0.94 & 0.05 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.8 & 2.24 & 0.7 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.61 & 0.15 & -0.66 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.8 & -4.6* & -2.29 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -8.03 & -9.29** & -8.95** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.15 & -1.03 & -1.03 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.25 & -6.89* & -1.5 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.9. & -0.55 & 1.14 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.87 & -10.73*** & -6.91* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 4.21 & 0.67 & -0.32 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -5 & -6.07. & -4.09 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.44** & 3.56. & 2.89 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.53** & 1.2 & 4.18 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.23*** & 1.9 & 0.59 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 6.35 & 1.17 & 1.77 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.26** & 3.09 & 1.89 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.1** & 1.75 & 2.79 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.54* & 1.8 & 2.59 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.1* & 2.19 & -0.13 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.86*** & 3.03 & 1.83 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.95*** & 1.9 & 1.59 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.59*** & 4.07* & 2.88 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.95*** & 0.47 & 1.28 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.64*** & 3.43. & 3.42 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.33*** & 1.38 & 1.98 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.45*** & 1.11 & 2.61 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.23*** & 3.21 & 5.05 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.07 & -2.12 & -1.21 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.6. & -3.86 & -5.89. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.73 & -0.91 & -0.83 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 6.66 & -7.06* & -7.8* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.14** & 0.7 & -0.31 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.95. & -3.38 & -2.43 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.53* & -1.66 & -1.79 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.19 & -3.79 & -7.04* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.88*** & 4.52* & 4* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.44*** & 3.21 & 3.19 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.57*** & 2.75 & 2.96 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.92*** & 5.01. & 5.84. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.42*** & 2.86 & 2.78 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.14*** & -0.54 & 0.25 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.18*** & 4.88** & 5.46** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.01*** & 1.97 & 2.93 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 5.15 & 4.11 & 4.57. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 5.61 & -2.31 & -0.18 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 8.27* & 3.66 & 2.8 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 5.83 & 4.27. & 3.31 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 6.64. & 3.74 & 3.13 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 2.23 & 2.37 & 3.19 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & 2.2 & -5.11* & -3.37 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -3.18 & -7.02** & -4.51. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 6.58. & -0.07 & 1.08 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 2.11 & -6.38** & -2.52 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 10* & 0.65 & 0.69 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 7.15 & -8.66*** & -5.99* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 9.49* & -0.25 & 1.07 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -2.22 & -5.26* & -1.49 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 23.55*** & 5.92* & 4.02 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 19.2*** & 2.67 & 4.16. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 25.74*** & 4.6. & 4.3 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 21.86*** & 3.99. & 4.96* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 23.25*** & 4.1 & 3.89 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 23.21*** & 5* & 4.54* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 20.7*** & 4.87. & 6.22* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 23.59*** & 2.76 & 3.54 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.26 & 2.4 & 2.7 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 5.67 & 4.5 & 1.44 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.38 & 2.95 & 2.72 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.1 & 1.82 & 1.75 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 9.34* & 5.18. & 6.55* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.48 & 4.63. & 3.41 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.45 & 3.92 & 5.47. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.63 & -1.02 & -0.31 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 5.45 & 5.89* & 5.98* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.47 & 3.4 & 3.35 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.59 & 4.45 & 6.99* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 2.04 & 2.81 & 3.21 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 5.79 & 5.74* & 2.23 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.93 & 1.89 & 3.23 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 1.93 & 5.06. & 3.87 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.88 & 2.97 & 2.52 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 2.93 & -1.77 & 0.89 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -4.31 & -6.46* & -5.77. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.87 & 1.8 & 2.15 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 5.98 & -4.07 & 1.68 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.63* & 2.27 & 4.31 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 8.6 & -7.9** & -3.73 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 7.93. & 3.49 & 2.86 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.28 & -3.24 & -0.92 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.17*** & 6.38* & 6.07* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 18.25** & 4.03 & 7.36* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 16.96*** & 4.73. & 3.77 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.08* & 4 & 4.95. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.99*** & 5.91* & 5.06. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.82*** & 4.57. & 5.97* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.27** & 4.62 & 5.77. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.82** & 5.02. & 3.04 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.58*** & 5.86* & 5. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.67*** & 4.73. & 4.76. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.32*** & 6.9* & 6.05* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.67*** & 3.3 & 4.45 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.36*** & 6.25* & 6.59* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.06*** & 4.2 & 5.15. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.18*** & 3.94 & 5.78* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.96*** & 6.03* & 8.23** \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.79. & 0.7 & 1.97 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 12.33* & -1.04 & -2.72 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.45 & 1.91 & 2.35 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 10.39* & -4.24 & -4.62 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.87*** & 3.52 & 2.87 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 13.68* & -0.56 & 0.74 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.25** & 1.17 & 1.38 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.92* & -0.97 & -3.86 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 29.61*** & 7.35** & 7.17* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.16*** & 6.03* & 6.37* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.3*** & 5.57* & 6.14* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 32.65*** & 7.84** & 9.02** \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.14*** & 5.68. & 5.95* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 29.87*** & 2.28 & 3.42 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.91*** & 7.7** & 8.63** \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 33.74*** & 4.79. & 6.11* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE & 0.46 & -6.42* & -4.75. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 3.12 & -0.45 & -1.78 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 0.68 & 0.16 & -1.26 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 1.49 & -0.37 & -1.44 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -2.92 & -1.74 & -1.38 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -2.95 & -9.22*** & -7.94*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -8.33* & -11.13*** & -9.08*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 1.44 & -4.18* & -3.49* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -3.04 & -10.49*** & -7.09** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.85. & -3.46* & -3.88* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 2 & -12.77*** & -10.56*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 4.34 & -4.36** & -3.5* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -7.37. & -9.37*** & -6.06* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 18.4*** & 1.81 & -0.55 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 14.05*** & -1.44 & -0.41 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 20.59*** & 0.49 & -0.27 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 16.72*** & -0.12 & 0.39 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 18.1*** & -0.01 & -0.68 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 18.07*** & 0.89 & -0.03 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 15.55*** & 0.76 & 1.65 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 18.44*** & -1.35 & -1.03 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.89 & -1.71 & -1.87 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.53 & 0.39 & -3.13 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.77 & -1.16 & -1.85 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.24 & -2.29 & -2.82 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.19 & 1.07 & 1.98 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.67 & 0.52 & -1.16 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.7 & -0.19 & 0.9 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.51 & -5.13. & -4.88 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 0.3 & 1.78 & 1.41 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -8.62. & -0.71 & -1.22 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -5.74 & 0.34 & 2.42 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.11 & -1.3 & -1.36 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.64 & 1.63 & -2.34 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.22 & -2.22 & -1.34 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.22 & 0.95 & -0.7 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.03 & -1.14 & -2.05 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.22 & -5.88** & -3.68. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -9.46. & -10.57*** & -10.34** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.28 & -2.31 & -2.42 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.83 & -8.18** & -2.89 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.48 & -1.84 & -0.26 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.45 & -12.01*** & -8.3* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.79 & -0.62 & -1.71 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -6.42 & -7.35* & -5.49 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.02** & 2.27 & 1.5 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.11* & -0.09 & 2.79 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.81** & 0.62 & -0.8 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.93 & -0.11 & 0.38 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.84** & 1.8 & 0.49 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.68** & 0.46 & 1.4 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.12* & 0.51 & 1.2 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.67. & 0.91 & -1.53 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.44*** & 1.75 & 0.43 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.52*** & 0.62 & 0.19 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.17*** & 2.79 & 1.48 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.52*** & -0.81 & -0.12 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.22*** & 2.14 & 2.02 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.91*** & 0.09 & 0.58 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.03*** & -0.17 & 1.21 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.81*** & 1.92 & 3.66 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.65 & -3.41. & -2.6 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.18 & -5.15. & -7.29* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.3 & -2.2 & -2.22 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.24 & -8.35** & -9.19** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.72** & -0.59 & -1.7 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.53 & -4.67 & -3.83 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.1. & -2.94 & -3.19 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.77 & -5.08. & -8.43** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.46*** & 3.24. & 2.6 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.01*** & 1.92 & 1.8 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.15*** & 1.46 & 1.57 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.5*** & 3.73 & 4.45 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.99*** & 1.57 & 1.38 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.72*** & -1.83 & -1.15 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.76*** & 3.59. & 4.06* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.59*** & 0.68 & 1.54 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 2.66 & 5.97* & 2.98 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & 0.22 & 6.58** & 3.49 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 1.03 & 6.05* & 3.32 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -3.38 & 4.68* & 3.37 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -3.41 & -2.8 & -3.19 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -8.79* & -4.71* & -4.32. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 0.98 & 2.25 & 1.26 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -3.5 & -4.07. & -2.34 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.39 & 2.96 & 0.88 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 1.54 & -6.35** & -5.81* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 3.88 & 2.06 & 1.26 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -7.83. & -2.95 & -1.31 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17.94*** & 8.23** & 4.2 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 13.59** & 4.98* & 4.34. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 20.13*** & 6.91** & 4.49 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 16.25*** & 6.31** & 5.14* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 17.64*** & 6.41* & 4.07 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 17.61*** & 7.32** & 4.72* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 15.09*** & 7.18** & 6.41* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 17.98*** & 5.07* & 3.72 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.35 & 4.71 & 2.88 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.07 & 6.82* & 1.62 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.23 & 5.26. & 2.9 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.71 & 4.13 & 1.93 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.73 & 7.49* & 6.73* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.13 & 6.95* & 3.59 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.16 & 6.23* & 5.65. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.98 & 1.3 & -0.13 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.16 & 8.2** & 6.16* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -9.08. & 5.71* & 3.53 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.2 & 6.76* & 7.17* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.57 & 5.12. & 3.39 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.18 & 8.05** & 2.42 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.68 & 4.2 & 3.41 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.68 & 7.37* & 4.05 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.49 & 5.28. & 2.7 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.68 & 0.54 & 1.07 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -9.92. & -4.15 & -5.59. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.74 & 4.11 & 2.33 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.37 & -1.76 & 1.86 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.02 & 4.58 & 4.49 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.99 & -5.59. & -3.55 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.33 & 5.81* & 3.04 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -6.88 & -0.93 & -0.74 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.56* & 8.7** & 6.25* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.64* & 6.34* & 7.54* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.35* & 7.04* & 3.95 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.47 & 6.31* & 5.13. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.38* & 8.22** & 5.24. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.21* & 6.88** & 6.15* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.66 & 6.93* & 5.95. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.21 & 7.33* & 3.22 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.97*** & 8.17** & 5.19. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.06*** & 7.04* & 4.95. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.71*** & 9.21** & 6.23* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.06*** & 5.61. & 4.63 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.75*** & 8.56** & 6.77* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.45*** & 6.51* & 5.33. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.57*** & 6.25* & 5.96* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.35*** & 8.34** & 8.41** \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.19 & 3.02 & 2.15 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.72 & 1.28 & -2.54 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.84 & 4.22 & 2.53 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.78 & -1.93 & -4.44 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.26* & 5.83* & 3.05 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.07 & 1.75 & 0.92 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.64 & 3.48 & 1.56 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.31 & 1.34 & -3.68 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24*** & 9.66*** & 7.36* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.55*** & 8.34** & 6.55* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.69*** & 7.88** & 6.32* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.04*** & 10.15*** & 9.2** \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.53*** & 7.99** & 6.13* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.26*** & 4.59 & 3.61 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.3*** & 10.02*** & 8.82** \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.13*** & 7.11* & 6.29* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE & -2.44 & 0.61 & 0.51 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -1.63 & 0.08 & 0.34 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -6.04 & -1.29 & 0.39 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -6.07* & -8.78*** & -6.16*** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -11.45** & -10.69*** & -7.3** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -1.68 & -3.73* & -1.71 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -6.16 & -10.04*** & -5.31* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 1.73 & -3.01. & -2.1 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -1.12 & -12.32*** & -8.78** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 1.22 & -3.92* & -1.72 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -10.49** & -8.92*** & -4.29 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 15.28*** & 2.26 & 1.22 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 10.93** & -1 & 1.36 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 17.47*** & 0.94 & 1.51 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 13.59*** & 0.33 & 2.17 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 14.98*** & 0.44 & 1.09 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 14.95*** & 1.34 & 1.75 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 12.43*** & 1.21 & 3.43* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 15.32*** & -0.9 & 0.75 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.01 & -1.26 & -0.09 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.59 & 0.84 & -1.35 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.89 & -0.71 & -0.08 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -8.37. & -1.84 & -1.05 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.07 & 1.52 & 3.76. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.79 & 0.97 & 0.62 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.82 & 0.26 & 2.67 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.64 & -4.68 & -3.11 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -2.82 & 2.23 & 3.18 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -11.74* & -0.26 & 0.56 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -8.86* & 0.79 & 4.19* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.23 & -0.86 & 0.41 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.48 & 2.08 & -0.56 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -5.34 & -1.77 & 0.43 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -6.34. & 1.4 & 1.08 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -10.15* & -0.69 & -0.27 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.34 & -5.43** & -1.9 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -12.58* & -10.12** & -8.57** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -3.4 & -1.87 & -0.64 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -2.29 & -7.73** & -1.12 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 1.36 & -1.39 & 1.52 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 0.33 & -11.57*** & -6.53* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -0.33 & -0.17 & 0.06 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -9.54. & -6.9* & -3.71 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 7.9* & 2.72 & 3.27 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.98. & 0.36 & 4.56 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.69* & 1.07 & 0.97 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 1.81 & 0.34 & 2.15 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 6.72. & 2.25 & 2.27 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.55. & 0.91 & 3.17 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5 & 0.96 & 2.97 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.55 & 1.35 & 0.25 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.31*** & 2.19 & 2.21 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.4*** & 1.07 & 1.97 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.05*** & 3.23 & 3.26 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.4*** & -0.36 & 1.66 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.09*** & 2.59 & 3.8. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.79*** & 0.54 & 2.36 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.91*** & 0.27 & 2.99 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.69*** & 2.37 & 5.43. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -0.47 & -2.96 & -0.83 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.06 & -4.7 & -5.51. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -0.82 & -1.75 & -0.45 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.12 & -7.9* & -7.42* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.6. & -0.14 & 0.08 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.41 & -4.22 & -2.05 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.98 & -2.5 & -1.41 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.65 & -4.63 & -6.65* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.34*** & 3.69* & 4.38* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.89*** & 2.37 & 3.57 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.03*** & 1.91 & 3.34. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.38*** & 4.18 & 6.22* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 17.87*** & 2.02 & 3.16 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 21.6*** & -1.38 & 0.63 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 19.64*** & 4.04* & 5.84** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.47*** & 1.13 & 3.31 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & 0.81 & -0.53 & -0.17 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -3.6 & -1.9 & -0.12 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -3.63 & -9.38*** & -6.67* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -9.01* & -11.29*** & -7.81*** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 0.76 & -4.33 & -2.22 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -3.72 & -10.65*** & -5.82* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.17 & -3.62 & -2.61 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 1.32 & -12.93*** & -9.3*** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 3.66 & -4.52. & -2.23 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -8.05. & -9.52*** & -4.8* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17.72*** & 1.66 & 0.71 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 13.37** & -1.6 & 0.85 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.91*** & 0.33 & 1 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 16.04*** & -0.27 & 1.66 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 17.42*** & -0.17 & 0.58 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 17.39*** & 0.74 & 1.23 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 14.87*** & 0.6 & 2.92 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 17.76*** & -1.51 & 0.23 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.57 & -1.87 & -0.61 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.15 & 0.24 & -1.87 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.45 & -1.32 & -0.59 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.92 & -2.45 & -1.56 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.51 & 0.91 & 3.24 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.34 & 0.37 & 0.11 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.38 & -0.35 & 2.16 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.19 & -5.28. & -3.62 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.38 & 1.62 & 2.67 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -9.3. & -0.87 & 0.05 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.42 & 0.18 & 3.68 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.79 & -1.46 & -0.1 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.04 & 1.47 & -1.07 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.9 & -2.38 & -0.08 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.9 & 0.79 & 0.57 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.71 & -1.3 & -0.79 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.9 & -6.04* & -2.42 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.14. & -10.73*** & -9.08** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.95 & -2.47 & -1.16 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.15 & -8.34** & -1.63 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.8 & -1.99 & 1 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.77 & -12.17*** & -7.04* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.11 & -0.77 & -0.45 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.1 & -7.51* & -4.23 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.34* & 2.12 & 2.76 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.43* & -0.24 & 4.05 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.13* & 0.46 & 0.46 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.25 & -0.27 & 1.64 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.16* & 1.65 & 1.76 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11* & 0.31 & 2.66 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.44 & 0.36 & 2.46 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9 & 0.75 & -0.26 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.76*** & 1.59 & 1.7 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.85*** & 0.46 & 1.46 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.49*** & 2.63 & 2.74 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.84*** & -0.97 & 1.14 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.54*** & 1.98 & 3.29 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.23*** & -0.07 & 1.85 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.35*** & -0.33 & 2.48 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.13*** & 1.76 & 4.92. \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 1.97 & -3.56 & -1.34 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.5 & -5.3* & -6.02* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.62 & -2.35 & -0.96 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.56 & -8.51** & -7.93** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.04* & -0.75 & -0.44 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.85 & -4.82 & -2.56 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.42 & -3.1 & -1.93 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.09 & -5.24* & -7.17** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.78*** & 3.08 & 3.87 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.33*** & 1.77 & 3.06 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.47*** & 1.31 & 2.83 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.82*** & 3.57 & 5.71* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.32*** & 1.41 & 2.65 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.04*** & -1.99 & 0.12 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.08*** & 3.44 & 5.33. \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.91*** & 0.53 & 2.8 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE & -4.41 & -1.37 & 0.05 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -4.44 & -8.85*** & -6.5*** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -9.82* & -10.76*** & -7.64** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -0.05 & -3.81* & -2.05 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -4.53 & -10.12*** & -5.65* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 3.36 & -3.09* & -2.44 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 0.51 & -12.4*** & -9.12** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 2.85 & -3.99* & -2.06 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -8.86* & -9*** & -4.63. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16.91*** & 2.18 & 0.88 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 12.56** & -1.07 & 1.02 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.1*** & 0.86 & 1.17 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 15.22*** & 0.25 & 1.83 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.61*** & 0.36 & 0.75 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.58*** & 1.26 & 1.41 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 14.06*** & 1.13 & 3.09. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 16.95*** & -0.98 & 0.41 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.38 & -1.34 & -0.43 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.96 & 0.76 & -1.69 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.26 & -0.79 & -0.41 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.74 & -1.92 & -1.39 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.7 & 1.44 & 3.42. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.16 & 0.89 & 0.28 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.19 & 0.18 & 2.33 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.01 & -4.76 & -3.44 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.19 & 2.15 & 2.84 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -10.11* & -0.34 & 0.22 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.23. & 0.71 & 3.86. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.6 & -0.93 & 0.07 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.85 & 2 & -0.9 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.71 & -1.85 & 0.09 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.71 & 1.32 & 0.74 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -8.52 & -0.77 & -0.61 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -3.71 & -5.51** & -2.24 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.95* & -10.2** & -8.91** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -1.77 & -1.94 & -0.98 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.66 & -7.81** & -1.46 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.99 & -1.47 & 1.18 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 1.96 & -11.64*** & -6.87* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.3 & -0.25 & -0.27 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.91 & -6.98* & -4.05 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.53* & 2.64 & 2.93 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.62* & 0.28 & 4.22 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.32** & 0.99 & 0.63 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 3.44 & 0.26 & 1.81 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.35* & 2.17 & 1.93 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.18* & 0.83 & 2.83 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.63. & 0.88 & 2.63 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.18 & 1.28 & -0.09 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.94*** & 2.12 & 1.87 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.03*** & 0.99 & 1.63 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.68*** & 3.16 & 2.92 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.03*** & -0.44 & 1.32 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.72*** & 2.51 & 3.46 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.42*** & 0.46 & 2.02 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.54*** & 0.19 & 2.65 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.32*** & 2.29 & 5.09 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 1.16 & -3.04 & -1.16 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.69 & -4.78 & -5.85. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.81 & -1.83 & -0.79 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.75 & -7.98* & -7.75* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.23* & -0.22 & -0.26 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.04 & -4.3 & -2.39 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.61 & -2.57 & -1.75 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.28 & -4.71 & -6.99* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.97*** & 3.61. & 4.04* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.52*** & 2.29 & 3.23 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.66*** & 1.83 & 3 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.01*** & 4.1 & 5.88. \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.5*** & 1.94 & 2.82 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.23*** & -1.46 & 0.29 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.27*** & 3.96* & 5.5** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.1*** & 1.05 & 2.97 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -0.03 & -7.48** & -6.55* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -5.41 & -9.39*** & -7.69*** \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 4.36 & -2.43 & -2.1 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -0.12 & -8.75*** & -5.7* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 7.77. & -1.72 & -2.49 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.92 & -11.03*** & -9.17*** \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 7.26. & -2.62 & -2.11 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -4.45 & -7.63*** & -4.68* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 21.32*** & 3.55 & 0.83 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16.97*** & 0.3 & 0.97 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 23.51*** & 2.23 & 1.12 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.64*** & 1.63 & 1.78 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.02*** & 1.73 & 0.7 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 20.99*** & 2.64 & 1.36 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 18.47*** & 2.5 & 3.04 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 21.36*** & 0.39 & 0.36 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.03 & 0.03 & -0.48 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.45 & 2.14 & -1.74 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.15 & 0.58 & -0.47 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.32 & -0.55 & -1.44 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 7.11 & 2.81 & 3.37 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.25 & 2.27 & 0.23 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.22 & 1.55 & 2.28 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.59 & -3.38 & -3.5 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 3.22 & 3.52 & 2.79 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -5.7 & 1.03 & 0.17 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.82 & 2.08 & 3.8 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.19 & 0.44 & 0.02 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.56 & 3.37 & -0.95 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.7 & -0.48 & 0.04 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.3 & 2.69 & 0.69 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.11 & 0.6 & -0.66 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.7 & -4.14 & -2.3 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.54 & -8.83** & -8.96** \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.65 & -0.57 & -1.04 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.75 & -6.44* & -1.51 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.4. & -0.1 & 1.13 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.37 & -10.27*** & -6.92* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.71 & 1.13 & -0.33 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.5 & -5.61. & -4.1 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.94** & 4.02 & 2.88 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.03** & 1.66 & 4.17 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.73** & 2.36 & 0.58 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.85 & 1.63 & 1.76 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.76** & 3.54 & 1.88 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.6** & 2.2 & 2.78 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.04* & 2.25 & 2.58 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.6* & 2.65 & -0.14 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.36*** & 3.49 & 1.82 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.45*** & 2.36 & 1.58 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.09*** & 4.53 & 2.87 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.44*** & 0.93 & 1.27 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.14*** & 3.88 & 3.41 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.83*** & 1.83 & 1.97 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.95*** & 1.57 & 2.6 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.73*** & 3.66 & 5.04. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.57 & -1.66 & -1.22 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.1* & -3.4 & -5.9* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.22 & -0.46 & -0.84 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.16 & -6.61* & -7.81** \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.64** & 1.15 & -0.32 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.45* & -2.93 & -2.44 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.02* & -1.2 & -1.8 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.69. & -3.34 & -7.05* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.38*** & 4.98. & 3.99 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.93*** & 3.66 & 3.18 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.07*** & 3.2 & 2.95 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.42*** & 5.47* & 5.83* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.91*** & 3.31 & 2.77 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.64*** & -0.09 & 0.24 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.68*** & 5.34. & 5.45. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.51*** & 2.43 & 2.92 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE & -5.38 & -1.91 & -1.14 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 4.39 & 5.05** & 4.45** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -0.09 & -1.26 & 0.85 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 7.8** & 5.76*** & 4.06* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 4.95 & -3.55 & -2.62 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 7.29* & 4.86** & 4.44* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -4.42 & -0.14 & 1.88 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 21.35*** & 11.04*** & 7.38*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17*** & 7.78** & 7.53** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 23.54*** & 9.72*** & 7.67*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.66*** & 9.11*** & 8.33** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.05*** & 9.21*** & 7.25*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.02*** & 10.12*** & 7.91** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 18.5*** & 9.98*** & 9.59*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 21.39*** & 7.87** & 6.91* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.06 & 7.51*** & 6.07** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.48 & 9.62** & 4.81 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.18 & 8.06*** & 6.09** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.3 & 6.93* & 5.11 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 7.14. & 10.29*** & 9.92*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.28 & 9.75** & 6.78* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.25 & 9.03*** & 8.83*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.57 & 4.1 & 3.06 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 3.25 & 11.01*** & 9.35*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -5.67 & 8.51** & 6.72* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.79 & 9.56*** & 10.36*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.16 & 7.92* & 6.57* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.59 & 10.85*** & 5.6** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.73 & 7* & 6.6* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.27 & 10.17*** & 7.24*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.08 & 8.09* & 5.89. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.73 & 3.34. & 4.26* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.51 & -1.35 & -2.4 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.67 & 6.91*** & 5.52** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.78 & 1.04 & 5.04 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.43* & 7.39*** & 7.68*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.4 & -2.79 & -0.37 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.74 & 8.61*** & 6.23** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.47 & 1.87 & 2.45 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.97*** & 11.5*** & 9.43*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.05** & 9.14** & 10.73** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.76*** & 9.84*** & 7.14*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.88 & 9.11** & 8.32** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.79*** & 11.03*** & 8.43*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.62** & 9.69*** & 9.33** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.07** & 9.74*** & 9.13*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.62* & 10.13** & 6.41. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.38*** & 10.97*** & 8.37*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.47*** & 9.84** & 8.13** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.12*** & 12.01*** & 9.42*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.47*** & 8.41* & 7.82* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.16*** & 11.37*** & 9.96*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.86*** & 9.31** & 8.52** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.98*** & 9.05*** & 9.15*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.76*** & 11.14*** & 11.6*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.6 & 5.82** & 5.34** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.13* & 4.08 & 0.65 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.25 & 7.03*** & 5.71** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.19 & 0.88 & -1.25 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.67*** & 8.63*** & 6.24** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.48* & 4.56 & 4.11 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.05* & 6.28** & 4.75* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.72. & 4.15 & -0.49 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.41*** & 12.46*** & 10.54*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.96*** & 11.15*** & 9.73** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.1*** & 10.69*** & 9.5*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.45*** & 12.95*** & 12.38*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.94*** & 10.8*** & 9.32*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.67*** & 7.4* & 6.79* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.71*** & 12.82*** & 12*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.54*** & 9.91** & 9.47** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 9.77* & 6.96** & 5.59* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & 5.29 & 0.65 & 1.99 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 13.18*** & 7.67** & 5.2. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 10.33* & -1.64 & -1.48 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 12.67** & 6.77** & 5.58* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 0.96 & 1.77 & 3.01 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 26.73*** & 12.95*** & 8.52** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 22.38*** & 9.69*** & 8.66*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 28.92*** & 11.63*** & 8.81** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 25.05*** & 11.02*** & 9.47*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 26.43*** & 11.12*** & 8.39** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 26.4*** & 12.03*** & 9.05*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 23.88*** & 11.89*** & 10.73*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 26.77*** & 9.78*** & 8.05*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 6.44 & 9.42** & 7.21* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 8.86 & 11.53*** & 5.95. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 7.56. & 9.97*** & 7.22* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.09 & 8.84** & 6.25* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 12.52** & 12.2*** & 11.06*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 5.66 & 11.66*** & 7.92** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 6.63 & 10.94*** & 9.97*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.82 & 6.01* & 4.2 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 8.63. & 12.92*** & 10.48*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.29 & 10.42*** & 7.86** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 2.59 & 11.47*** & 11.5*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 5.22 & 9.83*** & 7.71** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 8.97* & 12.76*** & 6.74* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 6.11 & 8.91** & 7.73** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 5.11 & 12.09*** & 8.38** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 1.3 & 10*** & 7.03* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 6.11 & 5.25. & 5.4. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -1.13 & 0.56 & -1.27 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 8.05. & 8.82** & 6.66* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 9.16. & 2.95 & 6.18* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 12.81** & 9.3*** & 8.82** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 11.78* & -0.88 & 0.77 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 11.12* & 10.52*** & 7.36* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.91 & 3.78 & 3.59 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 19.35*** & 13.41*** & 10.57*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 21.44*** & 11.05*** & 11.86*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 20.14*** & 11.75*** & 8.27** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.26** & 11.02*** & 9.45*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 18.17*** & 12.94*** & 9.57** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 20.01*** & 11.6*** & 10.47*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 16.45*** & 11.65*** & 10.27*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 18** & 12.04*** & 7.55* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 34.77*** & 12.88*** & 9.51*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.85*** & 11.75*** & 9.27** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.5*** & 13.92*** & 10.56*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.85*** & 10.32*** & 8.96** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.55*** & 13.28*** & 11.1*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.24*** & 11.23*** & 9.66*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.36*** & 10.96*** & 10.29*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 35.14*** & 13.05*** & 12.73*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.98* & 7.73** & 6.47* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 15.51*** & 5.99* & 1.79 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 10.63* & 8.94** & 6.85* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 13.57* & 2.79 & -0.11 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 18.05*** & 10.54*** & 7.38* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 16.86** & 6.47* & 5.25. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 15.43** & 8.19** & 5.89. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 14.1** & 6.06* & 0.65 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 32.79*** & 14.37*** & 11.68*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 31.34*** & 13.06*** & 10.87*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 34.48*** & 12.6*** & 10.64*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 35.83*** & 14.86*** & 13.52*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 29.32*** & 12.71*** & 10.46*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 33.05*** & 9.31** & 7.93** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.09*** & 14.73*** & 13.14*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 36.92*** & 11.82*** & 10.61*** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE & -4.47 & -6.31* & -3.6 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 3.42 & 0.72 & -0.39 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 0.56 & -8.6** & -7.07* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 2.9 & -0.19 & -0.01 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -8.81* & -5.19* & -2.57 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16.96*** & 5.99*** & 2.93. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 12.62** & 2.73 & 3.08 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.16*** & 4.67** & 3.22. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 15.28*** & 4.06 & 3.88 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.66*** & 4.16** & 2.8. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.63*** & 5.07* & 3.46 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 14.12*** & 4.94** & 5.14** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 17.01*** & 2.82 & 2.46 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.33 & 2.47 & 1.62 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.91 & 4.57 & 0.36 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.2 & 3.02 & 1.64 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.68 & 1.89 & 0.66 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.75 & 5.24** & 5.47** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.1 & 4.7 & 2.33 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.14 & 3.98* & 4.39* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.95 & -0.95 & -1.39 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.14 & 5.96** & 4.9* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -10.05* & 3.46 & 2.27 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.17. & 4.52* & 5.91** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.54 & 2.87 & 2.12 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.8 & 5.8** & 1.15 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.66 & 1.95 & 2.15 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.66 & 5.13* & 2.79 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -8.47 & 3.04 & 1.44 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -3.66 & -1.71 & -0.19 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.89* & -6.4* & -6.85* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -1.71 & 1.86 & 1.07 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.61 & -4 & 0.59 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.04 & 2.34 & 3.23. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.01 & -7.84* & -4.82 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.35 & 3.56. & 1.78 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.86 & -3.17 & -2 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.58* & 6.45** & 4.98* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.67* & 4.09 & 6.28. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.37** & 4.79* & 2.69 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 3.49 & 4.06 & 3.87 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.4* & 5.98** & 3.98* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.24* & 4.64. & 4.89. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.68. & 4.69* & 4.68* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.24 & 5.08 & 1.96 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25*** & 5.92** & 3.92* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.09*** & 4.79 & 3.68 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.73*** & 6.96*** & 4.97* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.09*** & 3.37 & 3.37 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.78*** & 6.32** & 5.51** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.47*** & 4.27 & 4.07 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.59*** & 4* & 4.7* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.37*** & 6.1* & 7.15* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 1.21 & 0.77 & 0.89 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.74 & -0.97 & -3.8 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.87 & 1.98 & 1.26 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.81 & -4.17 & -5.7. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.28* & 3.59. & 1.79 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.09 & -0.49 & -0.34 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.67 & 1.23 & 0.3 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.33 & -0.9 & -4.94 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.02*** & 7.41*** & 6.09** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.58*** & 6.1* & 5.29. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.71*** & 5.64** & 5.05* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.06*** & 7.9** & 7.93* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.56*** & 5.75** & 4.87* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.28*** & 2.35 & 2.34 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.32*** & 7.77*** & 7.55*** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.15*** & 4.86 & 5.02 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 7.89* & 7.03** & 3.21 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & 5.04 & -2.28 & -3.47 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 7.38. & 6.12* & 3.59 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -4.33 & 1.12 & 1.03 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 21.44*** & 12.3*** & 6.54* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 17.09*** & 9.04*** & 6.68** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 23.63*** & 10.98*** & 6.82* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 19.75*** & 10.37*** & 7.48** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.14*** & 10.48*** & 6.4* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 21.1*** & 11.38*** & 7.06** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 18.59*** & 11.25*** & 8.74** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 21.48*** & 9.14*** & 6.06* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.15 & 8.78** & 5.22. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.56 & 10.88*** & 3.96 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.27 & 9.33*** & 5.24. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.21 & 8.2** & 4.26 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 7.23 & 11.56*** & 9.07** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.37 & 11.01*** & 5.93* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.34 & 10.3*** & 7.99** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.48 & 5.36* & 2.21 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 3.34 & 12.27*** & 8.5** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -5.58 & 9.78*** & 5.87* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.7 & 10.83*** & 9.51** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.07 & 9.18** & 5.73. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.67 & 12.12*** & 4.75 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.81 & 8.27** & 5.75* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.19 & 11.44*** & 6.39* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.99 & 9.35*** & 5.04. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.82 & 4.61 & 3.41 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.42 & -0.08 & -3.25 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.76 & 8.17** & 4.67 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.87 & 2.31 & 4.2 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.52. & 8.65** & 6.83* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.49 & -1.53 & -1.22 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.82 & 9.87*** & 5.38. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.39 & 3.14 & 1.6 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.06** & 12.76*** & 8.58** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.14** & 10.4*** & 9.88** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.85** & 11.11*** & 6.29* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.97 & 10.38*** & 7.47** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.88** & 12.29*** & 7.58** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.71** & 10.95*** & 8.49*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.15* & 11*** & 8.28** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.71* & 11.39*** & 5.56. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.47*** & 12.24*** & 7.52** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.56*** & 11.11*** & 7.28** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.2*** & 13.28*** & 8.57** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.56*** & 9.68** & 6.97* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.25*** & 12.63*** & 9.11** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.94*** & 10.58*** & 7.67** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.07*** & 10.31*** & 8.3** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.85*** & 12.41*** & 10.75*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.68 & 7.08* & 4.49 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.22* & 5.34* & -0.2 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.34 & 8.29** & 4.86. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.28. & 2.14 & -2.1 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.76** & 9.9*** & 5.39. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.57* & 5.82. & 3.26 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.14* & 7.54** & 3.9 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.81. & 5.41* & -1.34 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.5*** & 13.73*** & 9.69*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.05*** & 12.41*** & 8.89** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.19*** & 11.95*** & 8.65** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.54*** & 14.22*** & 11.53*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.03*** & 12.06*** & 8.47** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.76*** & 8.66** & 5.94. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.8*** & 14.08*** & 11.15*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.63*** & 11.17*** & 8.62** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE & -2.85 & -9.31*** & -6.68* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -0.51 & -0.9 & 0.38 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -12.22** & -5.91* & -2.19 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 13.54*** & 5.27*** & 3.32* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 9.2* & 2.02 & 3.46 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 15.74*** & 3.95** & 3.61* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 11.86** & 3.34 & 4.27 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 13.25*** & 3.45* & 3.19. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 13.21*** & 4.36. & 3.85 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 10.7*** & 4.22** & 5.53*** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 13.59** & 2.11 & 2.85 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.75. & 1.75 & 2.01 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.33 & 3.85 & 0.75 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.62. & 2.3 & 2.02 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -10.1* & 1.17 & 1.05 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.66 & 4.53* & 5.86** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.52 & 3.98 & 2.72 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.55. & 3.27. & 4.77* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -8.37. & -1.67 & -1 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -4.55 & 5.24** & 5.28** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.47** & 2.75 & 2.66 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -10.59** & 3.8* & 6.29** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.96 & 2.16 & 2.51 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -4.22 & 5.09** & 1.54 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -7.08 & 1.24 & 2.53 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -8.08* & 4.41* & 3.18 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -11.88* & 2.32 & 1.83 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.07. & -2.42 & 0.2 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -14.31** & -7.11* & -6.47* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -5.13 & 1.15 & 1.46 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -4.02 & -4.72 & 0.98 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -0.37 & 1.62 & 3.62* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -1.4 & -8.55** & -4.43 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -2.07 & 2.84 & 2.16 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -11.28* & -3.89 & -1.61 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 6.17. & 5.73** & 5.37** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.25 & 3.38 & 6.66. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 6.96* & 4.08* & 3.07 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.08 & 3.35 & 4.25 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 4.99 & 5.26** & 4.37* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 6.82 & 3.92 & 5.27. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 3.26 & 3.97* & 5.07* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 4.82 & 4.37 & 2.35 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.58*** & 5.21** & 4.31* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.67*** & 4.08 & 4.07 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.31*** & 6.25** & 5.36* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.67*** & 2.65 & 3.76 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.36*** & 5.6** & 5.9** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.05*** & 3.55 & 4.46 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.17*** & 3.29. & 5.09** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.96*** & 5.38. & 7.53* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.21 & 0.05 & 1.27 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.33 & -1.69 & -3.41 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.55 & 1.26 & 1.65 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.39 & -4.89 & -5.32. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.87 & 2.87 & 2.18 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 3.68 & -1.21 & 0.05 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.25 & 0.52 & 0.69 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 0.91 & -1.62 & -4.55 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.61*** & 6.7*** & 6.48*** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.16*** & 5.38. & 5.67. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.3*** & 4.92** & 5.44** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 22.65*** & 7.19* & 8.32** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.14*** & 5.03* & 5.26* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.87*** & 1.63 & 2.73 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.91*** & 7.05*** & 7.94*** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.74*** & 4.14 & 5.41. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE & 2.34 & 8.41** & 7.06* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -9.37* & 3.4 & 4.5. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 16.4*** & 14.58*** & 10.01*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 12.05** & 11.33*** & 10.15*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 18.59*** & 13.26*** & 10.29*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 14.72*** & 12.66*** & 10.95*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.1*** & 12.76*** & 9.88*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 16.07*** & 13.67*** & 10.53*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 13.55** & 13.53*** & 12.21*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 16.44*** & 11.42*** & 9.53*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.89 & 11.06*** & 8.69** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.47 & 13.17*** & 7.43* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.77 & 11.61*** & 8.71** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.24 & 10.48*** & 7.73** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.19 & 13.84*** & 12.54*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.67 & 13.3*** & 9.4** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.7 & 12.58*** & 11.46*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.52 & 7.65** & 5.68. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.7 & 14.55*** & 11.97*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -10.62* & 12.06*** & 9.34** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.74 & 13.11*** & 12.98*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -5.11 & 11.47*** & 9.2** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -1.36 & 14.4*** & 8.22** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -4.22 & 10.55*** & 9.22** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.22 & 13.72*** & 9.86** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -9.03. & 11.63*** & 8.51** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -4.22 & 6.89* & 6.88* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -11.46* & 2.2 & 0.22 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -2.28 & 10.46*** & 8.14** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -1.17 & 4.59 & 7.67** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.48 & 10.93*** & 10.3*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 1.45 & 0.76 & 2.25 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 0.79 & 12.16*** & 8.85** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -8.42 & 5.42. & 5.07 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.02. & 15.05*** & 12.05*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.11. & 12.69*** & 13.35*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.81* & 13.39*** & 9.76** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 2.93 & 12.66*** & 10.94*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.84. & 14.57*** & 11.05*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.68* & 13.23*** & 11.96*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.12 & 13.28*** & 11.75*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.67 & 13.68*** & 9.03** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.44*** & 14.52*** & 10.99*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.52*** & 13.39*** & 10.75*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.17*** & 15.56*** & 12.04*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.52*** & 11.96*** & 10.44** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.22*** & 14.91*** & 12.58*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.91*** & 12.86*** & 11.14*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.03*** & 12.6*** & 11.77*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.81*** & 14.69*** & 14.22*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 0.65 & 9.37** & 7.96** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.18 & 7.63** & 3.27 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.3 & 10.57*** & 8.33** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.24 & 4.42 & 1.37 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.72. & 12.18*** & 8.86** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.53 & 8.1** & 6.73* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.1 & 9.83** & 7.37* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.77 & 7.69** & 2.13 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.46*** & 16.01*** & 13.16*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.01*** & 14.69*** & 12.36*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.15*** & 14.23*** & 12.13*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.5*** & 16.5*** & 15*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.99*** & 14.34*** & 11.94*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.72*** & 10.94*** & 9.41** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.76*** & 16.37*** & 14.62*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.59*** & 13.46*** & 12.1*** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE & -11.71** & -5. & -2.57 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 14.06*** & 6.18*** & 2.94. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 9.71* & 2.92 & 3.08 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 16.25*** & 4.86** & 3.23. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 12.38** & 4.25 & 3.89 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 13.76*** & 4.35** & 2.81. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 13.73*** & 5.26* & 3.47 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 11.21*** & 5.12** & 5.15** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 14.1*** & 3.01 & 2.47 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.23 & 2.65 & 1.63 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.81 & 4.76 & 0.37 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.11 & 3.2. & 1.65 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.58. & 2.08 & 0.67 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.15 & 5.43** & 5.48** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.01 & 4.89 & 2.34 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.04 & 4.17* & 4.39* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.86 & -0.76 & -1.38 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -4.04 & 6.15** & 4.9* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -12.96** & 3.65 & 2.28 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -10.08** & 4.7* & 5.92** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.45 & 3.06 & 2.13 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.7 & 5.99** & 1.16 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -6.56 & 2.14 & 2.15 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.56* & 5.32** & 2.8 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -11.37* & 3.23 & 1.45 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.56. & -1.52 & -0.18 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -13.8** & -6.21. & -6.85* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -4.62 & 2.05 & 1.08 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -3.51 & -3.81 & 0.6 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 0.14 & 2.53 & 3.24. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -0.89 & -7.65* & -4.81 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.55 & 3.75* & 1.78 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -10.76* & -2.99 & -1.99 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 6.68. & 6.64** & 4.99* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.77 & 4.28 & 6.28. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.47* & 4.98* & 2.69 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.59 & 4.25 & 3.87 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 5.5 & 6.17** & 3.99* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.34 & 4.83. & 4.89. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 3.78 & 4.88* & 4.69* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5.33 & 5.27 & 1.97 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.1*** & 6.11*** & 3.93* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.18*** & 4.98. & 3.69 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.83*** & 7.15*** & 4.98* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.18*** & 3.55 & 3.38 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.88*** & 6.51** & 5.52* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.57*** & 4.46 & 4.08 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.69*** & 4.19* & 4.71* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.47*** & 6.29* & 7.15* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -1.69 & 0.96 & 0.9 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.84 & -0.78 & -3.79 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.04 & 2.17 & 1.27 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.9 & -3.98 & -5.69. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.38 & 3.78* & 1.8 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.19 & -0.3 & -0.33 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.76 & 1.42 & 0.31 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 1.43 & -0.71 & -4.93 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.12*** & 7.6*** & 6.1** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.67*** & 6.29* & 5.29. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.81*** & 5.83** & 5.06* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.16*** & 8.09** & 7.94* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.65*** & 5.94** & 4.88* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.38*** & 2.54 & 2.35 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.42*** & 7.96*** & 7.56*** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.25*** & 5.05 & 5.03 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 25.77*** & 11.18*** & 5.51* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & 21.42*** & 7.92*** & 5.65* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 27.96*** & 9.86*** & 5.8* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 24.09*** & 9.25*** & 6.45** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 25.47*** & 9.36*** & 5.38* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 25.44*** & 10.26*** & 6.03** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 22.92*** & 10.13*** & 7.72** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 25.81*** & 8.01*** & 5.03* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 5.48 & 7.66** & 4.19 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 7.9 & 9.76** & 2.93 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 6.6 & 8.21** & 4.21 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.13 & 7.08** & 3.24 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 11.56* & 10.43*** & 8.04** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.7 & 9.89*** & 4.9. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 5.67 & 9.18** & 6.96* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.85 & 4.24 & 1.18 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 7.67. & 11.15*** & 7.47** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -1.25 & 8.66** & 4.85. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 1.63 & 9.71*** & 8.48** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 4.26 & 8.06** & 4.7 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 8.01. & 11*** & 3.73 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 5.15 & 7.14** & 4.72. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 4.15 & 10.32*** & 5.36. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 0.34 & 8.23** & 4.01 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 5.15 & 3.49 & 2.38 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.09 & -1.21 & -4.28 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 7.09 & 7.05* & 3.64 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 8.2 & 1.19 & 3.17 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 11.85** & 7.53** & 5.8* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 10.82. & -2.65 & -2.24 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 10.16* & 8.75** & 4.35 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 0.95 & 2.02 & 0.57 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 18.39*** & 11.64*** & 7.56* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 20.48*** & 9.28** & 8.85** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 19.18*** & 9.99*** & 5.26. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 12.3* & 9.25*** & 6.44* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 17.21*** & 11.17*** & 6.55* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 19.05*** & 9.83*** & 7.46** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 15.49*** & 9.88*** & 7.26* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 17.04** & 10.27*** & 4.53 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 33.81*** & 11.11*** & 6.5* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.89*** & 9.99*** & 6.26* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.54*** & 12.15*** & 7.54* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.89*** & 8.56** & 5.94. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.59*** & 11.51*** & 8.08** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.28*** & 9.46*** & 6.64* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.4*** & 9.19*** & 7.27* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 34.18*** & 11.29*** & 9.72*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.02* & 5.96* & 3.46 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 14.55** & 4.22 & -1.23 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 9.67* & 7.17* & 3.84 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 12.61* & 1.02 & -3.13 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 17.09*** & 8.78** & 4.36 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 15.9** & 4.7 & 2.24 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 14.47** & 6.42* & 2.87 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 13.14** & 4.29. & -2.37 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 31.83*** & 12.6*** & 8.67** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 30.38*** & 11.29*** & 7.86** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 33.52*** & 10.83*** & 7.63** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 34.87*** & 13.09*** & 10.51*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.36*** & 10.94*** & 7.44* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 32.09*** & 7.54* & 4.92 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.13*** & 12.96*** & 10.13*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 35.96*** & 10.05*** & 7.6* \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE & -4.34 & -3.26 & 0.14 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 2.19 & -1.32 & 0.29 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & -1.68 & -1.93 & 0.95 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & -0.3 & -1.82 & -0.13 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & -0.33 & -0.92 & 0.52 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -2.85 & -1.05 & 2.21 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 0.05 & -3.17 & -0.48 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.29*** & -3.52. & -1.32 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.87** & -1.42 & -2.58 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.16*** & -2.97. & -1.3 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -23.64*** & -4.1 & -2.27 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.21*** & -0.74 & 2.53 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.06*** & -1.29 & -0.6 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.1*** & -2 & 1.45 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.91*** & -6.94* & -4.33 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -18.1*** & -0.03 & 1.96 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -27.01*** & -2.52 & -0.66 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -24.13*** & -1.47 & 2.97 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.51*** & -3.12 & -0.81 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.76*** & -0.18 & -1.78 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -20.62*** & -4.04 & -0.79 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.62*** & -0.86 & -0.14 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -25.43*** & -2.95 & -1.5 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.62*** & -7.69*** & -3.13 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -27.85*** & -12.38*** & -9.79** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -18.67*** & -4.13* & -1.87 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.57*** & -9.99*** & -2.34 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.92*** & -3.65* & 0.29 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.95** & -13.83*** & -7.75* \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -15.61*** & -2.43 & -1.16 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -24.82*** & -9.16** & -4.94 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.38* & 0.46 & 2.05 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -5.29 & -1.9 & 3.34 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.59. & -1.19 & -0.25 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -13.47** & -1.93 & 0.93 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.56* & -0.01 & 1.04 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.72 & -1.35 & 1.95 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -10.28** & -1.3 & 1.75 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.72 & -0.91 & -0.98 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.04* & -0.07 & 0.99 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.13 & -1.19 & 0.75 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.77 & 0.97 & 2.03 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.13 & -2.62 & 0.43 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.82 & 0.33 & 2.58 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.51 & -1.72 & 1.14 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.63 & -1.99 & 1.77 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.41. & 0.11 & 4.21 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -15.75*** & -5.22** & -2.05 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -11.22* & -6.96* & -6.74* \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -16.09*** & -4.01* & -1.67 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -13.16* & -10.16** & -8.64** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.68* & -2.4 & -1.15 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -9.87. & -6.48* & -3.27 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -11.29** & -4.76* & -2.64 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -12.63** & -6.89* & -7.88** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.06. & 1.43 & 3.16. \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 4.62 & 0.11 & 2.35 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 7.75* & -0.35 & 2.12 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.1. & 1.91 & 5 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.6 & -0.24 & 1.93 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.32 & -3.64 & -0.59 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 4.36 & 1.78 & 4.62* \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.19* & -1.13 & 2.09 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 6.54 & 1.94 & 0.15 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & 2.66 & 1.33 & 0.8 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.04 & 1.43 & -0.27 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 4.01 & 2.34 & 0.38 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 1.5 & 2.2 & 2.06 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 4.39 & 0.09 & -0.62 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.95** & -0.27 & -1.46 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.53* & 1.84 & -2.72 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.82** & 0.28 & -1.44 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.3*** & -0.85 & -2.41 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -9.86* & 2.51 & 2.39 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.72** & 1.97 & -0.75 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.75** & 1.25 & 1.31 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.57*** & -3.68 & -4.47 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -13.75** & 3.23 & 1.82 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -22.67*** & 0.73 & -0.81 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.79*** & 1.78 & 2.83 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -17.16** & 0.14 & -0.95 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -13.42** & 3.07 & -1.92 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -16.28** & -0.78 & -0.93 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -17.28*** & 2.4 & -0.29 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.08*** & 0.31 & -1.64 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -16.28*** & -4.44 & -3.27 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -23.51*** & -9.13** & -9.93** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -14.33** & -0.87 & -2.01 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -13.22** & -6.74* & -2.48 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -9.58* & -0.39 & 0.15 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -10.61. & -10.57*** & -7.89* \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -11.27* & 0.83 & -1.3 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -20.48*** & -5.91* & -5.08. \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -3.03 & 3.72 & 1.91 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -0.95 & 1.36 & 3.2 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -2.25 & 2.06 & -0.39 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -9.12. & 1.33 & 0.79 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -4.21 & 3.25 & 0.9 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -2.38 & 1.91 & 1.81 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -5.94 & 1.96 & 1.61 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -4.38 & 2.35 & -1.12 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.38** & 3.19 & 0.85 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.47. & 2.06 & 0.61 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.11. & 4.23 & 1.89 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.47 & 0.63 & 0.29 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.16. & 3.59 & 2.43 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.85. & 1.54 & 0.99 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.97. & 1.27 & 1.62 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.75* & 3.36 & 4.07 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -11.41* & -1.96 & -2.19 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -6.87 & -3.7 & -6.88* \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.75* & -0.75 & -1.81 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.81 & -6.9* & -8.78** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -4.33 & 0.85 & -1.29 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -5.52 & -3.22 & -3.42 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -6.95 & -1.5 & -2.78 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -8.29. & -3.63 & -8.02** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 10.4* & 4.68 & 3.02 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 8.96. & 3.37 & 2.21 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 12.1** & 2.91 & 1.98 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 13.45* & 5.17. & 4.86. \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.94 & 3.02 & 1.79 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 10.67. & -0.38 & -0.73 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 8.71. & 5.04. & 4.48 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 14.54** & 2.13 & 1.95 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE & -3.88 & -0.61 & 0.66 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & -2.49 & -0.5 & -0.42 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & -2.53 & 0.4 & 0.24 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -5.04. & 0.27 & 1.92 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -2.15 & -1.84 & -0.76 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -22.48*** & -2.2 & -1.6 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.07*** & -0.1 & -2.86 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.36*** & -1.65 & -1.58 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -25.84*** & -2.78 & -2.56 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.4*** & 0.58 & 2.25 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -23.26*** & 0.03 & -0.89 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -22.29*** & -0.68 & 1.16 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -24.11*** & -5.62. & -4.61 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -20.29*** & 1.29 & 1.67 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -29.21*** & -1.2 & -0.95 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -26.33*** & -0.15 & 2.69 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -23.7*** & -1.8 & -1.1 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -19.96*** & 1.14 & -2.07 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -22.81*** & -2.71 & -1.08 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -23.81*** & 0.46 & -0.43 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -27.62*** & -1.63 & -1.78 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -22.81*** & -6.37** & -3.41. \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -30.05*** & -11.06*** & -10.08** \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -20.87*** & -2.81 & -2.15 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -19.76*** & -8.67** & -2.63 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -16.11*** & -2.33 & 0.01 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -17.14** & -12.51*** & -8.04* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -17.81*** & -1.11 & -1.44 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -27.02*** & -7.84* & -5.22 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -9.57* & 1.78 & 1.76 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.49 & -0.58 & 3.05 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -8.78* & 0.13 & -0.54 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -15.66** & -0.6 & 0.64 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -10.75** & 1.31 & 0.76 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.92* & -0.03 & 1.66 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -12.48** & 0.02 & 1.46 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -10.92* & 0.41 & -1.26 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.84. & 1.26 & 0.7 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 2.93 & 0.13 & 0.46 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.58 & 2.3 & 1.75 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 2.93 & -1.3 & 0.15 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 2.62 & 1.65 & 2.29 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 2.31 & -0.4 & 0.85 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.44 & -0.67 & 1.48 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.22 & 1.43 & 3.92 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -17.95*** & -3.9* & -2.33 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -13.41** & -5.64. & -7.02* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -18.29*** & -2.69 & -1.96 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -15.35** & -8.84** & -8.92** \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -10.87** & -1.08 & -1.43 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -12.06* & -5.16 & -3.56 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -13.49*** & -3.44. & -2.92 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -14.82** & -5.57. & -8.16** \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 3.87 & 2.75 & 2.87 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 2.42 & 1.43 & 2.06 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 5.56 & 0.97 & 1.83 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 6.91 & 3.24 & 4.71 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 0.4 & 1.08 & 1.65 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 4.13 & -2.32 & -0.88 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.17 & 3.1. & 4.33* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 8 & 0.19 & 1.8 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 1.38 & 0.1 & -1.08 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & 1.35 & 1.01 & -0.42 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -1.16 & 0.88 & 1.26 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 1.73 & -1.24 & -1.42 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.61*** & -1.59 & -2.26 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.19** & 0.51 & -3.52 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.48*** & -1.04 & -2.24 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.96*** & -2.17 & -3.22 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -12.53** & 1.18 & 1.59 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.38*** & 0.64 & -1.55 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.42*** & -0.07 & 0.51 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.23*** & -5.01. & -5.27. \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -16.41*** & 1.9 & 1.02 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -25.33*** & -0.6 & -1.61 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -22.45*** & 0.46 & 2.03 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -19.82*** & -1.19 & -1.76 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -16.08*** & 1.74 & -2.73 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -18.94*** & -2.11 & -1.73 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -19.94*** & 1.07 & -1.09 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -23.75*** & -1.02 & -2.44 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -18.94*** & -5.77* & -4.07 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -26.17*** & -10.46*** & -10.73*** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -16.99*** & -2.2 & -2.81 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -15.89** & -8.06** & -3.29 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -12.24** & -1.72 & -0.65 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.27* & -11.9*** & -8.7** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -13.93** & -0.5 & -2.1 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -23.14*** & -7.23* & -5.88* \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -5.7 & 2.39 & 1.1 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -3.61 & 0.03 & 2.4 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -4.91 & 0.73 & -1.19 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -11.78* & 0 & -0.01 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.88 & 1.92 & 0.1 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -5.04 & 0.58 & 1.01 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.6. & 0.63 & 0.8 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -7.04 & 1.02 & -1.92 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.72* & 1.86 & 0.04 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.81 & 0.73 & -0.2 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.45 & 2.9 & 1.09 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.81 & -0.69 & -0.51 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.5 & 2.26 & 1.63 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.19 & 0.21 & 0.19 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.31 & -0.06 & 0.82 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.09* & 2.04 & 3.27 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -14.07** & -3.29 & -2.99 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -9.54. & -5.03. & -7.68** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -14.41** & -2.08 & -2.62 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -11.47* & -8.23** & -9.58** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -6.99 & -0.47 & -2.09 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.19 & -4.55 & -4.22 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -9.61* & -2.83 & -3.58 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -10.95* & -4.96. & -8.82*** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 7.74. & 3.35 & 2.21 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.3 & 2.04 & 1.41 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.43* & 1.58 & 1.17 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 10.78* & 3.84 & 4.05 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 4.28 & 1.69 & 0.99 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 8.01 & -1.71 & -1.54 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 6.04 & 3.71 & 3.67 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.87* & 0.8 & 1.14 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE & -0.03 & 0.91 & 0.66 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -2.55 & 0.77 & 2.34 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 0.34 & -1.34 & -0.34 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.99*** & -1.7 & -1.19 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.57** & 0.41 & -2.44 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.87*** & -1.15 & -1.17 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -23.34*** & -2.28 & -2.14 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.91*** & 1.08 & 2.67 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.76*** & 0.54 & -0.47 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.8*** & -0.18 & 1.58 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.61*** & -5.11. & -4.2 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -17.8*** & 1.79 & 2.09 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -26.71*** & -0.7 & -0.53 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -23.84*** & 0.35 & 3.1 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.21*** & -1.29 & -0.68 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.46*** & 1.64 & -1.65 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -20.32*** & -2.21 & -0.66 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.32*** & 0.96 & -0.01 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -25.13*** & -1.13 & -1.37 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.32*** & -5.87** & -3 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -27.56*** & -10.56*** & -9.66** \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -18.37*** & -2.3 & -1.74 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.27*** & -8.17** & -2.21 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.62*** & -1.83 & 0.42 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.65** & -12*** & -7.62* \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -15.31*** & -0.61 & -1.03 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -24.52*** & -7.34* & -4.81 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.08. & 2.28 & 2.18 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -4.99 & -0.07 & 3.47 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.29. & 0.63 & -0.12 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -13.17** & -0.1 & 1.06 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.26* & 1.81 & 1.18 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.42 & 0.47 & 2.08 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -9.98* & 0.52 & 1.88 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.42 & 0.92 & -0.84 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.34* & 1.76 & 1.12 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.43 & 0.63 & 0.88 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.07 & 2.8 & 2.16 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.43 & -0.8 & 0.56 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.12 & 2.15 & 2.71 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.81 & 0.1 & 1.27 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.93 & -0.16 & 1.9 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.71. & 1.93 & 4.34 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -15.45*** & -3.4. & -1.92 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.92* & -5.14. & -6.6* \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -15.8*** & -2.19 & -1.54 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -12.86* & -8.34** & -8.51** \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.38* & -0.58 & -1.02 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -9.57. & -4.66 & -3.14 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -11** & -2.93 & -2.51 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -12.33** & -5.07. & -7.75* \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.36. & 3.25. & 3.29 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 4.92 & 1.93 & 2.48 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 8.05* & 1.47 & 2.25 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.4. & 3.74 & 5.13 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.9 & 1.58 & 2.07 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.62 & -1.82 & -0.46 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 4.66 & 3.61. & 4.75* \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.49* & 0.7 & 2.22 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE & -2.52 & -0.14 & 1.68 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 0.38 & -2.25 & -1 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.96*** & -2.61 & -1.84 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.54** & -0.5 & -3.1 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.83*** & -2.05 & -1.82 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -23.31*** & -3.18 & -2.8 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -13.88** & 0.17 & 2.01 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.73*** & -0.37 & -1.13 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.77*** & -1.09 & 0.93 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.58*** & -6.02* & -4.85. \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -17.77*** & 0.89 & 1.44 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -26.68*** & -1.61 & -1.19 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -23.8*** & -0.55 & 2.45 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.18*** & -2.2 & -1.33 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.43*** & 0.73 & -2.31 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -20.29*** & -3.12 & -1.31 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.29*** & 0.06 & -0.67 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -25.1*** & -2.03 & -2.02 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.29*** & -6.78* & -3.65 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -27.52*** & -11.47*** & -10.31*** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -18.34*** & -3.21 & -2.39 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.24*** & -9.07*** & -2.86 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.59** & -2.73 & -0.23 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -14.62** & -12.91*** & -8.28** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -15.28*** & -1.51 & -1.68 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -24.49*** & -8.25** & -5.46. \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.05 & 1.38 & 1.52 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -4.96 & -0.98 & 2.82 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.26 & -0.28 & -0.77 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -13.14* & -1.01 & 0.41 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.23. & 0.91 & 0.52 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.39 & -0.43 & 1.43 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -9.95* & -0.38 & 1.22 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.39 & 0.01 & -1.5 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.37. & 0.85 & 0.46 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.46 & -0.28 & 0.22 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.1 & 1.89 & 1.51 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.46 & -1.71 & -0.09 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.15 & 1.25 & 2.05 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.84 & -0.8 & 0.61 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.96 & -1.07 & 1.24 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.74. & 1.03 & 3.69 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -15.42*** & -4.3 & -2.57 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.89* & -6.04* & -7.26** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -15.76*** & -3.09 & -2.2 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -12.82* & -9.24*** & -9.16** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.35. & -1.48 & -1.67 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -9.54. & -5.56. & -3.8 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -10.96* & -3.84 & -3.16 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -12.3* & -5.97* & -8.4** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.39 & 2.34 & 2.63 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 4.95 & 1.03 & 1.83 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 8.08. & 0.57 & 1.6 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.43. & 2.83 & 4.47 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.93 & 0.68 & 1.41 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.65 & -2.72 & -1.12 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 4.69 & 2.7 & 4.09 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.52* & -0.21 & 1.56 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE & 2.89 & -2.11 & -2.68 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.44*** & -2.47 & -3.52. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -15.02** & -0.37 & -4.78 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -16.32*** & -1.92 & -3.5. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.8*** & -3.05 & -4.48 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -11.36** & 0.31 & 0.33 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -18.22*** & -0.24 & -2.81 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.25*** & -0.95 & -0.76 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.07*** & -5.89. & -6.53* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -15.25*** & 1.02 & -0.25 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -24.17*** & -1.47 & -2.87 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.29*** & -0.42 & 0.77 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -18.66*** & -2.06 & -3.02 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -14.91*** & 0.87 & -3.99* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.77*** & -2.98 & -3 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -18.77*** & 0.19 & -2.35 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -22.58*** & -1.9 & -3.7 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -17.77*** & -6.64*** & -5.33** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -25.01*** & -11.33*** & -12*** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -15.83*** & -3.07 & -4.07* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -14.72** & -8.94** & -4.55 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -11.07** & -2.6 & -1.91 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -12.1* & -12.77*** & -9.96** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -12.76*** & -1.38 & -3.36. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -21.97*** & -8.11* & -7.14* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -4.53 & 1.51 & -0.16 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -2.45 & -0.84 & 1.13 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -3.74 & -0.14 & -2.45 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -10.62* & -0.87 & -1.28 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -5.71 & 1.04 & -1.16 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -3.88 & -0.3 & -0.26 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -7.43* & -0.25 & -0.46 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -5.88 & 0.15 & -3.18 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.88** & 0.99 & -1.22 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.97 & -0.14 & -1.46 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.62. & 2.03 & -0.17 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.97 & -1.57 & -1.77 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.66* & 1.38 & 0.37 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.36 & -0.67 & -1.07 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 6.48. & -0.93 & -0.44 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.26* & 1.16 & 2.01 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -12.9*** & -4.17* & -4.25* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -8.37. & -5.91* & -8.94** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -13.25*** & -2.96 & -3.88. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -10.31* & -9.11** & -10.84*** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -5.83. & -1.35 & -3.35. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -7.02 & -5.43. & -5.48 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -8.45* & -3.7. & -4.84* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -9.78* & -5.84* & -10.08*** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 8.91* & 2.48 & 0.95 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 7.46 & 1.16 & 0.14 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 10.6** & 0.7 & -0.09 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 11.95* & 2.97 & 2.79 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 5.44 & 0.81 & -0.27 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.17. & -2.59 & -2.8 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 7.21* & 2.83 & 2.41 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 13.04* & -0.08 & -0.12 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.34*** & -0.36 & -0.84 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & -17.92** & 1.75 & -2.1 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -19.21*** & 0.19 & -0.82 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -23.69*** & -0.94 & -1.8 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -14.25** & 2.42 & 3.01 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.11*** & 1.88 & -0.13 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -20.14*** & 1.16 & 1.93 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -21.96*** & -3.77 & -3.85 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -18.14*** & 3.13 & 2.44 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -27.06*** & 0.64 & -0.19 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -24.18*** & 1.69 & 3.45 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -21.55*** & 0.05 & -0.33 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -17.81*** & 2.98 & -1.31 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -20.67*** & -0.87 & -0.31 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -21.67*** & 2.3 & 0.33 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -25.47*** & 0.21 & -1.02 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -20.67*** & -4.53 & -2.65 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -27.9*** & -9.22** & -9.31** \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -18.72*** & -0.96 & -1.39 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -17.61*** & -6.83* & -1.86 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -13.96** & -0.49 & 0.77 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -15** & -10.66*** & -7.28* \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -15.66*** & 0.74 & -0.68 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -24.87*** & -6. & -4.46 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -7.42 & 3.63 & 2.52 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & -5.34 & 1.27 & 3.82 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.64 & 1.97 & 0.23 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -13.51* & 1.24 & 1.41 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -8.6. & 3.15 & 1.52 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -6.77 & 1.82 & 2.43 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -10.33* & 1.87 & 2.22 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -8.77 & 2.26 & -0.5 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 7.99. & 3.1 & 1.46 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.08 & 1.97 & 1.22 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.72 & 4.14 & 2.51 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 5.08 & 0.54 & 0.91 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.77 & 3.49 & 3.05 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.46 & 1.44 & 1.61 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.58 & 1.18 & 2.24 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.36 & 3.27 & 4.69 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -15.8*** & -2.05 & -1.57 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -11.26* & -3.79 & -6.26* \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -16.14*** & -0.85 & -1.2 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -13.2* & -7* & -8.16** \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -8.72. & 0.76 & -0.67 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -9.91. & -3.31 & -2.8 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -11.34* & -1.59 & -2.16 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -12.68* & -3.73 & -7.4** \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 6.02 & 4.59 & 3.63 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 4.57 & 3.28 & 2.83 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 7.71 & 2.82 & 2.6 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 9.06. & 5.08. & 5.47. \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.55 & 2.92 & 2.41 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 6.28 & -0.48 & -0.12 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 4.32 & 4.95. & 5.09. \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3NONE - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.15. & 2.04 & 2.56 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.42 & 2.1 & -1.26 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.13 & 0.55 & 0.02 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.35 & -0.58 & -0.96 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 6.08 & 2.78 & 3.85 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.77 & 2.23 & 0.71 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.19 & 1.52 & 2.77 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.62 & -3.42 & -3.01 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 2.19 & 3.49 & 3.28 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -6.72 & 1 & 0.65 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.84 & 2.05 & 4.29. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.22 & 0.41 & 0.51 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.53 & 3.34 & -0.47 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.33 & -0.51 & 0.53 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.33 & 2.66 & 1.17 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.14 & 0.57 & -0.18 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.33 & -4.17. & -1.81 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.56 & -8.86* & -8.47* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.62 & -0.6 & -0.55 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.72 & -6.47* & -1.02 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.37 & -0.13 & 1.61 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.34 & -10.3** & -6.44. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 4.68 & 1.09 & 0.16 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -4.53 & -5.64 & -3.62 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.91** & 3.98 & 3.36 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15* & 1.63 & 4.66 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.7** & 2.33 & 1.07 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 6.82 & 1.6 & 2.25 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.73** & 3.51 & 2.36 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.57** & 2.17 & 3.27 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.01* & 2.22 & 3.06 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.57. & 2.62 & 0.34 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.33*** & 3.46 & 2.3 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.42*** & 2.33 & 2.06 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.06*** & 4.5. & 3.35 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.42*** & 0.9 & 1.75 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.11*** & 3.85 & 3.89 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.8*** & 1.8 & 2.45 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.92*** & 1.54 & 3.08 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.7*** & 3.63 & 5.53 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.54 & -1.7 & -0.73 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.07. & -3.44 & -5.42 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.2 & -0.49 & -0.36 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.13 & -6.64* & -7.32* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.61** & 1.12 & 0.17 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.42. & -2.96 & -1.96 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9* & -1.23 & -1.32 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.66 & -3.37 & -6.56* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.35*** & 4.95* & 4.47. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.91*** & 3.63 & 3.67 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.04*** & 3.17 & 3.44 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.39*** & 5.44 & 6.31. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.89*** & 3.28 & 3.25 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.61*** & -0.12 & 0.72 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.65*** & 5.3* & 5.93* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.48*** & 2.39 & 3.41 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.29 & -1.55 & 1.28 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.77 & -2.68 & 0.3 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.66 & 0.67 & 5.11 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -3.19 & 0.13 & 1.97 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.23 & -0.59 & 4.03 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.04 & -5.52 & -1.75 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -0.23 & 1.39 & 4.54 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -9.14 & -1.11 & 1.91 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.26 & -0.05 & 5.55 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.63 & -1.7 & 1.77 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.11 & 1.23 & 0.79 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.75 & -2.62 & 1.79 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.75 & 0.56 & 2.43 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.56 & -1.53 & 1.08 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.75 & -6.28. & -0.55 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -9.98 & -10.97** & -7.21* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.8 & -2.71 & 0.71 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.3 & -8.57** & 0.24 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.95 & -2.23 & 2.87 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.92 & -12.41*** & -5.18 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.26 & -1.01 & 1.42 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -6.95 & -7.75* & -2.36 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.49. & 1.88 & 4.62 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.58. & -0.48 & 5.92 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.28. & 0.22 & 2.33 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.4 & -0.51 & 3.51 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.31 & 1.41 & 3.62 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.15. & 0.07 & 4.53 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.59 & 0.12 & 4.32 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.15 & 0.51 & 1.6 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.91*** & 1.35 & 3.56 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23*** & 0.22 & 3.32 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.64*** & 2.39 & 4.61 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23*** & -1.21 & 3.01 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.69*** & 1.75 & 5.15 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.38*** & -0.3 & 3.71 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.5*** & -0.57 & 4.34 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.28*** & 1.53 & 6.79. \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.12 & -3.8 & 0.53 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.65 & -5.54. & -4.16 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.78 & -2.59 & 0.9 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.72 & -8.74* & -6.06. \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.19 & -0.98 & 1.43 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8 & -5.06 & -0.7 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.58 & -3.34 & -0.06 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.24 & -5.47. & -5.3 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.93*** & 2.84 & 5.73 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.49*** & 1.53 & 4.93 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.62*** & 1.07 & 4.7 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.97*** & 3.33 & 7.57* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.47*** & 1.18 & 4.51 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.19*** & -2.22 & 1.98 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.23*** & 3.2 & 7.19* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.06*** & 0.29 & 4.66 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive & -4.48 & -1.13 & -0.97 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 4.96 & 2.23 & 3.83. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.9 & 1.68 & 0.69 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.93 & 0.97 & 2.75 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -2.75 & -3.97 & -3.03 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 1.07 & 2.94 & 3.26 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -7.85 & 0.45 & 0.63 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.97 & 1.5 & 4.27. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.34 & -0.14 & 0.49 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 1.4 & 2.79 & -0.48 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -1.46 & -1.06 & 0.51 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -2.46 & 2.11 & 1.15 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -6.26 & 0.02 & -0.2 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -1.46 & -4.72* & -1.83 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -8.69 & -9.41** & -8.49* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.49 & -1.15 & -0.57 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.6 & -7.02* & -1.04 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.25 & -0.68 & 1.59 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.21 & -10.85** & -6.45. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 3.55 & 0.54 & 0.14 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -5.66 & -6.19. & -3.64 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.79** & 3.43 & 3.35 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.87* & 1.07 & 4.64 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 12.57** & 1.78 & 1.05 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 5.7 & 1.05 & 2.23 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.61** & 2.96 & 2.34 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.44** & 1.62 & 3.25 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.88* & 1.67 & 3.05 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.44. & 2.07 & 0.32 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.2*** & 2.91 & 2.28 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.29*** & 1.78 & 2.04 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.93*** & 3.95. & 3.33 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.29*** & 0.35 & 1.73 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.98*** & 3.3 & 3.87. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.67*** & 1.25 & 2.43 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.79*** & 0.98 & 3.06 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.57*** & 3.08 & 5.51. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 3.41 & -2.25 & -0.75 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.95 & -3.99 & -5.44. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 3.07 & -1.04 & -0.37 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 6.01 & -7.19* & -7.34* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.49** & 0.57 & 0.15 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.3 & -3.51 & -1.98 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.87. & -1.78 & -1.34 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.53 & -3.92 & -6.58* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.23*** & 4.4* & 4.46* \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.78*** & 3.08 & 3.65 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.92*** & 2.62 & 3.42 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.27*** & 4.89 & 6.3. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 21.76*** & 2.73 & 3.23 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 25.49*** & -0.67 & 0.71 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.53*** & 4.75* & 5.91** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 29.36*** & 1.84 & 3.39 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 9.43. & 3.36 & 4.81 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & 2.58 & 2.81 & 1.67 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 3.54 & 2.1 & 3.72 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 1.73 & -2.84 & -2.06 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 5.55 & 4.07 & 4.23 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.37 & 1.58 & 1.61 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.49 & 2.63 & 5.24 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 2.14 & 0.99 & 1.46 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 5.88 & 3.92 & 0.49 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.02 & 0.07 & 1.48 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 2.02 & 3.24 & 2.13 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.79 & 1.15 & 0.78 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 3.02 & -3.59 & -0.86 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -4.21 & -8.28* & -7.52* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.97 & -0.03 & 0.4 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 6.07 & -5.89. & -0.07 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.72. & 0.45 & 2.57 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 8.69 & -9.73** & -5.48 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 8.03 & 1.67 & 1.11 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.18 & -5.06 & -2.66 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.26** & 4.56 & 4.32 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 18.35** & 2.2 & 5.61 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 17.05** & 2.91 & 2.02 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.18. & 2.18 & 3.2 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.08** & 4.09 & 3.32 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.92** & 2.75 & 4.22 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.36* & 2.8 & 4.02 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.92* & 3.19 & 1.3 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.68*** & 4.04 & 3.26 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.77*** & 2.91 & 3.02 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.41*** & 5.08 & 4.31 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.77*** & 1.48 & 2.71 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.46*** & 4.43 & 4.85 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.15*** & 2.38 & 3.41 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.27*** & 2.11 & 4.04 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.05*** & 4.21 & 6.48* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.89 & -1.12 & 0.22 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 12.42* & -2.86 & -4.46 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.55 & 0.09 & 0.6 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 10.49. & -6.06. & -6.37. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.97** & 1.7 & 1.12 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 13.78* & -2.38 & -1 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.35* & -0.65 & -0.36 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 11.01* & -2.79 & -5.6. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 29.7*** & 5.53. & 5.43. \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.26*** & 4.21 & 4.62 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.39*** & 3.75 & 4.39 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 32.75*** & 6.02. & 7.27* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.24*** & 3.86 & 4.21 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 29.97*** & 0.46 & 1.68 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28*** & 5.88. & 6.89* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 33.83*** & 2.97 & 4.36 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive & -6.86 & -0.54 & -3.14 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -5.89 & -1.26 & -1.08 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -7.7 & -6.19. & -6.86* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -3.89 & 0.71 & -0.57 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -12.81* & -1.78 & -3.2 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -9.93* & -0.73 & 0.44 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -7.3 & -2.37 & -3.34 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -3.55 & 0.56 & -4.32. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -6.41 & -3.29 & -3.32 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.41. & -0.12 & -2.68 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -11.22* & -2.21 & -4.03 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.41 & -6.95** & -5.66* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -13.65* & -11.64*** & -12.32*** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -4.47 & -3.38 & -4.4. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -3.36 & -9.25** & -4.87 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 0.29 & -2.91 & -2.24 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -0.74 & -13.08*** & -10.29** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.4 & -1.68 & -3.69 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -10.61. & -8.42* & -7.47* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 6.83 & 1.21 & -0.49 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.92 & -1.15 & 0.81 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.62. & -0.45 & -2.78 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.74 & -1.18 & -1.6 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 5.65 & 0.73 & -1.49 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.49 & -0.6 & -0.58 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 3.93 & -0.55 & -0.79 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5.49 & -0.16 & -3.51 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.25*** & 0.68 & -1.55 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.34*** & -0.45 & -1.79 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.98*** & 1.72 & -0.5 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.33** & -1.88 & -2.1 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.03*** & 1.07 & 0.04 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.72*** & -0.98 & -1.4 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.84*** & -1.24 & -0.77 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.62*** & 0.85 & 1.68 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -1.54 & -4.47. & -4.58. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.99 & -6.21. & -9.27** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -1.89 & -3.27 & -4.21. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.05 & -9.42** & -11.17** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.53 & -1.66 & -3.68 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.34 & -5.73 & -5.81 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.91 & -4.01. & -5.17* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 1.58 & -6.15. & -10.41** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.27*** & 2.17 & 0.62 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.82*** & 0.86 & -0.18 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.96*** & 0.39 & -0.42 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.31*** & 2.66 & 2.46 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.8*** & 0.5 & -0.6 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.53*** & -2.9 & -3.13 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.57*** & 2.53 & 2.08 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.4*** & -0.38 & -0.45 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & 0.97 & -0.71 & 2.05 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -0.85 & -5.65. & -3.72 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 2.97 & 1.26 & 2.56 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -5.95 & -1.24 & -0.06 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.07 & -0.18 & 3.58 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -0.44 & -1.83 & -0.21 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.3 & 1.1 & -1.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.44 & -2.75 & -0.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.56 & 0.43 & 0.46 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.36 & -1.66 & -0.89 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.44 & -6.41. & -2.52 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.79 & -11.1*** & -9.18** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.39 & -2.84 & -1.26 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.5 & -8.7** & -1.74 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.14 & -2.36 & 0.9 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.11 & -12.54*** & -7.15* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.45 & -1.14 & -0.55 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.76 & -7.87* & -4.33 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.69* & 1.75 & 2.65 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.77* & -0.61 & 3.94 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.47** & 0.09 & 0.36 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.6 & -0.64 & 1.53 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.51* & 1.28 & 1.65 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.34* & -0.06 & 2.55 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.78. & -0.01 & 2.35 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.34. & 0.38 & -0.37 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.1*** & 1.22 & 1.59 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.19*** & 0.09 & 1.35 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.83*** & 2.26 & 2.64 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.19*** & -1.33 & 1.04 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.88*** & 1.62 & 3.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.57*** & -0.43 & 1.74 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.69*** & -0.7 & 2.37 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.47*** & 1.4 & 4.82 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.31 & -3.93 & -1.44 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.85. & -5.67. & -6.13. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.97 & -2.72 & -1.07 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.91 & -8.87** & -8.03* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.39* & -1.11 & -0.54 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.2. & -5.19 & -2.67 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.77. & -3.47 & -2.03 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.43 & -5.6. & -7.27* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.12*** & 2.71 & 3.76 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.68*** & 1.4 & 2.95 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.82*** & 0.94 & 2.72 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.17*** & 3.2 & 5.6. \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.66*** & 1.05 & 2.54 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.39*** & -2.35 & 0.01 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.43*** & 3.07 & 5.22 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.26*** & 0.16 & 2.69 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive & -1.81 & -4.94 & -5.78. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 2 & 1.97 & 0.51 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -6.92 & -0.52 & -2.11 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -4.04 & 0.53 & 1.52 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -1.41 & -1.11 & -2.26 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 2.34 & 1.82 & -3.23 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -0.52 & -2.03 & -2.24 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.52 & 1.14 & -1.59 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -5.33 & -0.95 & -2.95 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.52 & -5.69* & -4.58. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.76 & -10.38** & -11.24** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.43 & -2.12 & -3.32 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.53 & -7.99* & -3.79 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.18 & -1.65 & -1.16 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.15 & -11.82*** & -9.2* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 4.49 & -0.43 & -2.61 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -4.72 & -7.16* & -6.39. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.72** & 2.46 & 0.6 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.81* & 0.11 & 1.89 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.51** & 0.81 & -1.7 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 6.63 & 0.08 & -0.52 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.54** & 1.99 & -0.41 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.38** & 0.65 & 0.5 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.82* & 0.7 & 0.3 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.38. & 1.1 & -2.43 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.14*** & 1.94 & -0.46 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.23*** & 0.81 & -0.7 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.87*** & 2.98 & 0.58 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.22*** & -0.62 & -1.02 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.92*** & 2.33 & 1.13 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.61*** & 0.28 & -0.31 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.73*** & 0.02 & 0.32 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.51*** & 2.11 & 2.76 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.35 & -3.22 & -3.5 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.88. & -4.96 & -8.19* \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4 & -2.01 & -3.12 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 6.94 & -8.16* & -10.09** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.42** & -0.4 & -2.6 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.23. & -4.48 & -4.72 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.8. & -2.75 & -4.09 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.47 & -4.89 & -9.33** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.16*** & 3.43 & 1.71 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.71*** & 2.11 & 0.9 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.85*** & 1.65 & 0.67 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.2*** & 3.92 & 3.55 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.69*** & 1.76 & 0.48 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.42*** & -1.64 & -2.04 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.46*** & 3.79. & 3.17 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.29*** & 0.87 & 0.64 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & 3.82 & 6.91* & 6.29. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -5.1 & 4.41 & 3.66 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -2.22 & 5.47. & 7.3* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 0.41 & 3.82 & 3.52 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 4.15 & 6.76* & 2.54 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 1.29 & 2.9 & 3.54 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 0.29 & 6.08. & 4.18 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.51 & 3.99 & 2.83 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 1.29 & -0.76 & 1.2 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -5.94 & -5.45. & -5.46 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.24 & 2.81 & 2.46 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.34 & -3.05 & 1.99 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.99 & 3.29 & 4.62 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.96 & -6.89* & -3.42 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 6.3 & 4.51 & 3.17 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -2.91 & -2.22 & -0.61 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.53** & 7.4* & 6.38. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.62** & 5.04 & 7.67* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 15.32** & 5.74. & 4.08 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.45 & 5.01 & 5.26 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.35* & 6.93* & 5.37 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.19** & 5.59. & 6.28* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.63* & 5.64. & 6.08. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.19* & 6.03. & 3.35 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.95*** & 6.87* & 5.31 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.04*** & 5.75. & 5.07 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.68*** & 7.91* & 6.36. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.04*** & 4.32 & 4.76 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.73*** & 7.27* & 6.9* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.42*** & 5.22 & 5.46. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.54*** & 4.95 & 6.09. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.32*** & 7.05* & 8.54** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.16 & 1.72 & 2.28 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.69. & -0.02 & -2.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.82 & 2.93 & 2.66 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.76 & -3.22 & -4.31 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 13.24* & 4.54 & 3.18 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.05. & 0.46 & 1.05 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.62. & 2.18 & 1.69 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.28 & 0.05 & -3.55 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.97*** & 8.36** & 7.48* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.53*** & 7.05* & 6.68* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.66*** & 6.59* & 6.45. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.02*** & 8.85** & 9.33** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.51*** & 6.7* & 6.26. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.24*** & 3.3 & 3.73 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.28*** & 8.72** & 8.94** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 32.1*** & 5.81. & 6.42. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive & -8.92. & -2.49 & -2.62 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -6.04 & -1.44 & 1.01 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & -3.41 & -3.09 & -2.77 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.34 & -0.15 & -3.74. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.52 & -4 & -2.75 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.52 & -0.83 & -2.11 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.33 & -2.92 & -3.46 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.52 & -7.66*** & -5.09* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -9.76. & -12.35*** & -11.75*** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.58 & -4.1. & -3.83. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.53 & -9.96** & -4.3 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.18 & -3.62. & -1.67 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.15 & -13.8*** & -9.71** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.49 & -2.4 & -3.12 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -6.72 & -9.13** & -6.9* \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.72* & 0.49 & 0.09 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.8* & -1.87 & 1.38 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.51** & -1.16 & -2.21 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.63 & -1.89 & -1.03 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.54* & 0.02 & -0.92 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.37* & -1.32 & -0.01 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.82. & -1.27 & -0.21 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.37 & -0.88 & -2.94 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.13*** & -0.03 & -0.97 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.22*** & -1.16 & -1.21 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.87*** & 1.01 & 0.07 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.22*** & -2.59 & -1.53 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.91*** & 0.36 & 0.61 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.61*** & -1.69 & -0.82 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.73*** & -1.96 & -0.2 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.51*** & 0.14 & 2.25 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.35 & -5.19* & -4.01. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.88 & -6.93* & -8.7** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2 & -3.98. & -3.63 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.94 & -10.13** & -10.6** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.42* & -2.37 & -3.11 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.23 & -6.45. & -5.23 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.8 & -4.73* & -4.6. \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.47 & -6.86* & -9.84** \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.16*** & 1.46 & 1.2 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.71*** & 0.14 & 0.39 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.85*** & -0.32 & 0.16 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.2*** & 1.95 & 3.04 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.69*** & -0.21 & -0.03 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.42*** & -3.61 & -2.55 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.46*** & 1.81 & 2.66 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.29*** & -1.1 & 0.13 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 2.88 & 1.05 & 3.64 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 5.51 & -0.59 & -0.15 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 9.25. & 2.34 & -1.12 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 6.39 & -1.51 & -0.13 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 5.39 & 1.66 & 0.52 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 1.59 & -0.43 & -0.83 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 6.39 & -5.17 & -2.46 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -0.84 & -9.86** & -9.12** \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 8.34 & -1.6 & -1.2 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 9.45. & -7.47* & -1.68 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 13.09* & -1.13 & 0.96 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 12.06. & -11.3*** & -7.09* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 11.4* & 0.09 & -0.49 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.19 & -6.64* & -4.27 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 19.64*** & 2.99 & 2.71 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 21.72*** & 0.63 & 4 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 20.42*** & 1.33 & 0.42 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 13.55* & 0.6 & 1.59 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 18.46*** & 2.51 & 1.71 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 20.29*** & 1.17 & 2.61 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 16.73** & 1.22 & 2.41 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 18.29** & 1.62 & -0.31 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 35.05*** & 2.46 & 1.65 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.14*** & 1.33 & 1.41 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.78*** & 3.5 & 2.7 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.14*** & -0.1 & 1.1 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.83*** & 2.85 & 3.24 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.52*** & 0.8 & 1.8 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.64*** & 0.54 & 2.43 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 35.42*** & 2.63 & 4.88 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 11.26* & -2.7 & -1.38 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 15.8** & -4.44 & -6.07. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 10.92* & -1.49 & -1.01 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 13.86* & -7.64* & -7.97* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 18.34*** & 0.12 & -0.48 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 17.15** & -3.96 & -2.61 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 15.72** & -2.23 & -1.97 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 14.38* & -4.37 & -7.21* \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 33.07*** & 3.95 & 3.82 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 31.63*** & 2.63 & 3.01 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 34.77*** & 2.17 & 2.78 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 36.12*** & 4.44 & 5.66. \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 29.61*** & 2.28 & 2.6 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 33.34*** & -1.12 & 0.07 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.38*** & 4.31 & 5.28 \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 37.21*** & 1.4 & 2.75 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive & 2.63 & -1.64 & -3.78 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 6.37 & 1.29 & -4.75* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.51 & -2.56 & -3.76 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & 2.51 & 0.61 & -3.12 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1.29 & -1.48 & -4.47 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 3.51 & -6.22** & -6.1* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -3.72 & -10.91** & -12.76*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 5.46 & -2.65 & -4.84* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 6.57 & -8.52** & -5.31 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 10.22* & -2.18 & -2.68 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 9.19 & -12.35*** & -10.72** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 8.52* & -0.96 & -4.13. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -0.69 & -7.69* & -7.91* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.76*** & 1.93 & -0.92 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 18.84** & -0.43 & 0.37 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 17.55*** & 0.28 & -3.22 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.67* & -0.45 & -2.04 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 15.58*** & 1.46 & -1.93 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 17.41*** & 0.12 & -1.02 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 13.85** & 0.17 & -1.22 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 15.41** & 0.57 & -3.95 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.17*** & 1.41 & -1.99 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.26*** & 0.28 & -2.23 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.9*** & 2.45 & -0.94 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.26*** & -1.15 & -2.54 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.95*** & 1.8 & -0.4 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.64*** & -0.25 & -1.84 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.76*** & -0.51 & -1.21 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.55*** & 1.58 & 1.24 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 8.38* & -3.75 & -5.02* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 12.92* & -5.49. & -9.71** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.04. & -2.54 & -4.64. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 10.98* & -8.69** & -11.61*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 15.46*** & -0.93 & -4.12. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.27* & -5.01 & -6.25. \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.84** & -3.28 & -5.61* \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 11.5* & -5.42. & -10.85*** \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 30.2*** & 2.9 & 0.18 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 28.75*** & 1.58 & -0.62 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 31.89*** & 1.12 & -0.85 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 33.24*** & 3.39 & 2.03 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.73*** & 1.23 & -1.04 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 30.46*** & -2.17 & -3.56 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.5*** & 3.25 & 1.64 \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 34.33*** & 0.34 & -0.88 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 3.75 & 2.93 & -0.97 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & 0.89 & -0.92 & 0.02 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -0.11 & 2.25 & 0.67 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.92 & 0.17 & -0.69 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0.89 & -4.58 & -2.32 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.35 & -9.27** & -8.98** \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.83 & -1.01 & -1.06 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.94 & -6.88* & -1.53 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.59 & -0.53 & 1.1 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.56 & -10.71** & -6.94* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.9 & 0.69 & -0.35 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.31 & -6.05. & -4.13 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.13* & 3.58 & 2.86 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.21* & 1.22 & 4.15 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.92** & 1.92 & 0.56 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.04 & 1.19 & 1.74 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.95* & 3.11 & 1.85 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.78** & 1.77 & 2.76 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.23* & 1.82 & 2.56 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.78* & 2.21 & -0.16 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.54*** & 3.05 & 1.8 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.63*** & 1.92 & 1.56 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.28*** & 4.09 & 2.84 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.63*** & 0.49 & 1.24 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.32*** & 3.45 & 3.39 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.02*** & 1.39 & 1.95 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.14*** & 1.13 & 2.58 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.92*** & 3.22 & 5.02 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.76 & -2.1 & -1.24 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.29. & -3.84 & -5.92. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.41 & -0.89 & -0.86 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.35 & -7.04* & -7.83* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.83* & 0.71 & -0.34 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.64. & -3.36 & -2.46 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.21. & -1.64 & -1.83 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.88 & -3.77 & -7.07* \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.57*** & 4.54 & 3.97 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.12*** & 3.23 & 3.16 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.26*** & 2.77 & 2.93 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.61*** & 5.03 & 5.81. \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.1*** & 2.87 & 2.74 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.83*** & -0.52 & 0.22 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.87*** & 4.9 & 5.43 \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.7*** & 1.99 & 2.9 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive & -2.86 & -3.85 & 0.99 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.86 & -0.68 & 1.64 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -7.67 & -2.77 & 0.29 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.86 & -7.51** & -1.34 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -10.09. & -12.2*** & -8.01* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & -0.91 & -3.94. & -0.08 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 0.19 & -9.81** & -0.56 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.84 & -3.47 & 2.08 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.81 & -13.64*** & -5.97. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 2.15 & -2.25 & 0.62 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.06 & -8.98** & -3.15 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.38* & 0.64 & 3.83 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.47* & -1.71 & 5.12 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.17** & -1.01 & 1.53 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.29 & -1.74 & 2.71 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.2* & 0.17 & 2.83 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.04* & -1.17 & 3.73 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.48. & -1.12 & 3.53 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.04 & -0.72 & 0.81 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.8*** & 0.12 & 2.77 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.89*** & -1.01 & 2.53 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.53*** & 1.16 & 3.82 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.89*** & -2.44 & 2.22 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.58*** & 0.51 & 4.36. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.27*** & -1.54 & 2.92 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.39*** & -1.8 & 3.55 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.17*** & 0.29 & 5.99. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.01 & -5.04* & -0.27 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.54 & -6.78* & -4.95 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.67 & -3.83. & 0.11 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.61 & -9.98** & -6.86* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 9.08* & -2.22 & 0.64 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.89 & -6.3. & -1.49 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.47 & -4.57* & -0.85 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 5.13 & -6.71* & -6.09. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.82*** & 1.61 & 4.94* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.38*** & 0.29 & 4.13 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.51*** & -0.17 & 3.9. \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.86*** & 2.1 & 6.78* \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.36*** & -0.06 & 3.72 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.08*** & -3.46 & 1.19 \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.12*** & 1.97 & 6.4** \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.95*** & -0.94 & 3.87 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -1 & 3.17 & 0.64 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -4.81 & 1.08 & -0.71 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 0 & -3.66 & -2.34 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.23 & -8.35* & -9** \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.95 & -0.09 & -1.08 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.05 & -5.96. & -1.55 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.7 & 0.38 & 1.08 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.67 & -9.79** & -6.96* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.01 & 1.61 & -0.37 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -4.2 & -5.13 & -4.15 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.24* & 4.5 & 2.84 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.33* & 2.14 & 4.13 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.03* & 2.84 & 0.54 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.15 & 2.11 & 1.72 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.06* & 4.02 & 1.83 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.9* & 2.69 & 2.74 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.34. & 2.74 & 2.54 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.9. & 3.13 & -0.19 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.66*** & 3.97 & 1.78 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.75*** & 2.84 & 1.54 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.39*** & 5.01 & 2.82 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.75*** & 1.41 & 1.22 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.44*** & 4.36 & 3.36 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.13*** & 2.31 & 1.92 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.25*** & 2.05 & 2.55 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.03*** & 4.14 & 5 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.87 & -1.18 & -1.26 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.4. & -2.92 & -5.95. \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.53 & 0.02 & -0.88 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.46 & -6.13. & -7.85* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.94* & 1.63 & -0.36 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.75. & -2.44 & -2.49 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.33. & -0.72 & -1.85 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.99 & -2.86 & -7.09* \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.68*** & 5.46. & 3.95 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.24*** & 4.15 & 3.14 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.37*** & 3.68 & 2.91 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.72*** & 5.95. & 5.79. \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.22*** & 3.79 & 2.72 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.94*** & 0.39 & 0.2 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.98*** & 5.82. & 5.41 \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.81*** & 2.91 & 2.88 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive & -3.81 & -2.09 & -1.35 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 1 & -6.83** & -2.98 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -6.23 & -11.52*** & -9.64** \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 2.95 & -3.27 & -1.72 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 4.05 & -9.13** & -2.2 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 7.7. & -2.79 & 0.44 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.67 & -12.97*** & -7.61* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 6.01 & -1.57 & -1.01 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -3.2 & -8.3* & -4.79 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 14.24** & 1.32 & 2.19 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 16.33** & -1.04 & 3.49 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 15.03*** & -0.33 & -0.1 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.15 & -1.06 & 1.08 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.06** & 0.85 & 1.19 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 14.9** & -0.49 & 2.09 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.34* & -0.44 & 1.89 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 12.9* & -0.05 & -0.83 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.66*** & 0.8 & 1.13 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.75*** & -0.33 & 0.89 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.39*** & 1.84 & 2.18 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.75*** & -1.76 & 0.58 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.44*** & 1.19 & 2.72 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.13*** & -0.86 & 1.28 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.25*** & -1.13 & 1.91 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.03*** & 0.97 & 4.36 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 5.87 & -4.36. & -1.9 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 10.4* & -6.1. & -6.59* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.53 & -3.15 & -1.53 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.46 & -9.3** & -8.49* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 12.94** & -1.54 & -1 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.75* & -5.62 & -3.13 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 10.33* & -3.89 & -2.49 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 8.99. & -6.03. & -7.73* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 27.68*** & 2.29 & 3.3 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.24*** & 0.97 & 2.49 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.37*** & 0.51 & 2.26 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 30.72*** & 2.78 & 5.14 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 24.22*** & 0.62 & 2.08 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.94*** & -2.78 & -0.45 \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.98*** & 2.64 & 4.76* \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 31.81*** & -0.27 & 2.23 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & 4.81 & -4.74 & -1.63 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -2.43 & -9.43** & -8.29* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 6.75 & -1.18 & -0.37 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 7.86 & -7.04* & -0.84 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 11.51* & -0.7 & 1.79 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 10.48. & -10.88** & -6.26. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 9.82. & 0.52 & 0.34 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 0.61 & -6.21. & -3.44 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 18.05** & 3.41 & 3.54 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 20.14** & 1.05 & 4.84 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 18.84*** & 1.76 & 1.25 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.96. & 1.03 & 2.43 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.87** & 2.94 & 2.54 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 18.71*** & 1.6 & 3.45 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 15.15** & 1.65 & 3.24 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 16.7* & 2.04 & 0.52 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 33.47*** & 2.89 & 2.48 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.55*** & 1.76 & 2.24 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.2*** & 3.93 & 3.53 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.55*** & 0.33 & 1.93 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 30.25*** & 3.28 & 4.07 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.94*** & 1.23 & 2.63 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.06*** & 0.96 & 3.26 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 33.84*** & 3.06 & 5.71. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.68. & -2.27 & -0.55 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 14.21* & -4.01 & -5.24 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 9.33. & -1.06 & -0.18 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 12.27* & -7.21* & -7.14* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 16.75** & 0.55 & 0.35 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 15.56* & -3.53 & -1.78 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 14.13* & -1.81 & -1.14 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.8* & -3.94 & -6.38. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 31.49*** & 4.38 & 4.65 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 30.04*** & 3.06 & 3.85 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 33.18*** & 2.6 & 3.62 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 34.53*** & 4.87 & 6.49* \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 28.02*** & 2.71 & 3.43 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 31.75*** & -0.69 & 0.9 \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 29.79*** & 4.73 & 6.11. \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 35.62*** & 1.82 & 3.59 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive & -7.23 & -4.69 & -6.66. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.95 & 3.57 & 1.26 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 3.05 & -2.3 & 0.79 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 6.7 & 4.04. & 3.42 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 5.67 & -6.13. & -4.62 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 5.01 & 5.26* & 1.97 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -4.2 & -1.47 & -1.81 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.24** & 8.16*** & 5.18* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 15.33* & 5.8 & 6.47. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.03** & 6.5** & 2.88 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.15 & 5.77. & 4.06 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 12.06** & 7.68*** & 4.17. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 13.9** & 6.34* & 5.08 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 10.34* & 6.39** & 4.88* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 11.9* & 6.79. & 2.15 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.66*** & 7.63*** & 4.11. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.75*** & 6.5* & 3.87 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.39*** & 8.67*** & 5.16* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.75*** & 5.07 & 3.56 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.44*** & 8.02*** & 5.7* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.13*** & 5.97. & 4.26 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.25*** & 5.71* & 4.89* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.03*** & 7.8* & 7.34* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.87 & 2.47 & 1.08 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.4. & 0.73 & -3.61 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.53 & 3.68 & 1.46 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 7.46 & -2.47 & -5.51 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 11.94** & 5.29* & 1.98 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10.75. & 1.21 & -0.15 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 9.33* & 2.94 & 0.49 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.99 & 0.8 & -4.75 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 26.68*** & 9.12*** & 6.28** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 25.24*** & 7.8* & 5.48 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 28.37*** & 7.34** & 5.25* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 29.72*** & 9.61** & 8.13* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.22*** & 7.45** & 5.06* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 26.94*** & 4.05 & 2.53 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.98*** & 9.48*** & 7.74*** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 30.81*** & 6.57. & 5.22 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 9.18 & 8.26* & 7.92* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 10.29. & 2.39 & 7.45* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 13.93* & 8.73** & 10.08** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 12.9* & -1.44 & 2.04 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 12.24* & 9.96** & 8.63* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 3.03 & 3.22 & 4.85 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 20.48*** & 12.85*** & 11.84*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 22.56*** & 10.49** & 13.13*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 21.26*** & 11.19*** & 9.54** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 14.39* & 10.46** & 10.72** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 19.3*** & 12.37*** & 10.83** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 21.13*** & 11.04*** & 11.74*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 17.57** & 11.09** & 11.54** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 19.13** & 11.48** & 8.81* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 35.89*** & 12.32*** & 10.78** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.98*** & 11.19*** & 10.54** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.62*** & 13.36*** & 11.82*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.98*** & 9.76** & 10.22** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.67*** & 12.71*** & 12.36*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.36*** & 10.66** & 10.92** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 31.48*** & 10.4** & 11.55*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 36.26*** & 12.49*** & 14*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 12.1* & 7.17* & 7.74* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 16.64** & 5.43. & 3.05 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 11.76* & 8.37* & 8.12* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 14.7* & 2.22 & 1.15 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 19.18*** & 9.98** & 8.64* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 17.99** & 5.91. & 6.51. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 16.56** & 7.63* & 7.15* \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 15.22* & 5.49. & 1.91 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 33.92*** & 13.81*** & 12.95*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 32.47*** & 12.5*** & 12.14*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 35.61*** & 12.03*** & 11.91*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 36.96*** & 14.3*** & 14.79*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 30.45*** & 12.14*** & 11.72** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 34.18*** & 8.74* & 9.2** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 32.22*** & 14.17*** & 14.41*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 38.05*** & 11.26*** & 11.88*** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive & 1.11 & -5.87. & -0.47 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 4.75 & 0.48 & 2.16 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.72 & -9.7** & -5.88. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 3.06 & 1.7 & 0.71 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -6.15 & -5.04 & -3.07 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 11.3** & 4.59* & 3.92 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 13.38* & 2.23 & 5.21 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 12.08** & 2.93 & 1.62 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 5.21 & 2.2 & 2.8 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.12* & 4.12. & 2.91 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 11.95* & 2.78 & 3.82 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.39. & 2.83 & 3.62 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 9.95. & 3.22 & 0.89 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 26.71*** & 4.06. & 2.85 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.8*** & 2.93 & 2.61 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.44*** & 5.1* & 3.9 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.8*** & 1.5 & 2.3 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.49*** & 4.46. & 4.44. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.18*** & 2.41 & 3 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.3*** & 2.14 & 3.63. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 27.08*** & 4.24 & 6.08. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.92 & -1.09 & -0.18 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 7.46 & -2.83 & -4.87 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.58 & 0.12 & 0.2 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 5.52 & -6.03. & -6.77* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 10* & 1.72 & 0.72 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.81 & -2.35 & -1.41 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 7.38. & -0.63 & -0.77 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.04 & -2.76 & -6.01. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 24.73*** & 5.55* & 5.02* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.29*** & 4.24 & 4.22 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.43*** & 3.78. & 3.99. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 27.78*** & 6.04. & 6.87* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 21.27*** & 3.89 & 3.8 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 25*** & 0.49 & 1.27 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.04*** & 5.91** & 6.48** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 28.87*** & 3 & 3.96 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 3.65 & 6.34* & 2.63 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & 2.62 & -3.83 & -5.41 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & 1.96 & 7.56* & 1.18 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -7.25 & 0.83 & -2.6 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.19. & 10.45** & 4.39 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 12.28. & 8.09* & 5.68 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 10.98* & 8.8** & 2.09 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 4.1 & 8.07* & 3.27 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 9.01. & 9.98** & 3.38 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 10.85* & 8.64** & 4.29 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 7.29 & 8.69** & 4.09 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 8.84 & 9.09** & 1.36 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.61*** & 9.93** & 3.33 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.69*** & 8.8** & 3.09 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.34*** & 10.97*** & 4.37 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.69*** & 7.37* & 2.77 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.39*** & 10.32** & 4.92 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.08*** & 8.27** & 3.48 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.2*** & 8* & 4.11 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 25.98*** & 10.1** & 6.55* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 1.82 & 4.77 & 0.29 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 6.35 & 3.03 & -4.4 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.47 & 5.98. & 0.67 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 4.41 & -0.17 & -6.3. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 8.89. & 7.59* & 1.19 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.7 & 3.51 & -0.93 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 6.27 & 5.24 & -0.3 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.94 & 3.1 & -5.54. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 23.63*** & 11.42*** & 5.5. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.18*** & 10.1** & 4.69 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.32*** & 9.64** & 4.46 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 26.67*** & 11.91*** & 7.34* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.16*** & 9.75** & 4.27 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 23.89*** & 6.35. & 1.75 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.93*** & 11.77*** & 6.96* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 27.76*** & 8.86** & 4.43 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive & -1.03 & -10.18** & -8.05* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -1.69 & 1.22 & -1.45 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -10.9. & -5.51 & -5.23 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 6.54 & 4.11. & 1.75 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.63 & 1.75 & 3.05 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 7.33. & 2.46 & -0.54 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.45 & 1.73 & 0.64 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 5.36 & 3.64. & 0.75 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.2 & 2.3 & 1.66 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 3.64 & 2.35 & 1.45 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5.2 & 2.74 & -1.27 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.96*** & 3.58. & 0.69 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.05*** & 2.46 & 0.45 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.69*** & 4.62* & 1.74 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.05** & 1.03 & 0.14 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.74*** & 3.98. & 2.28 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.43*** & 1.93 & 0.84 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.55*** & 1.66 & 1.47 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.33*** & 3.76 & 3.92 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -1.83 & -1.57 & -2.34 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.7 & -3.31 & -7.03* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.17 & -0.36 & -1.97 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.76 & -6.51* & -8.93** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.24 & 1.25 & -1.44 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.05 & -2.83 & -3.57 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.62 & -1.11 & -2.93 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 1.29 & -3.24 & -8.17* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.98*** & 5.08* & 2.86 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.54*** & 3.76 & 2.06 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.67*** & 3.3 & 1.83 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.02*** & 5.57. & 4.7 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.52*** & 3.41 & 1.64 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 20.24*** & 0.01 & -0.89 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.28*** & 5.43** & 4.32* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 24.11*** & 2.52 & 1.8 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -0.66 & 11.4*** & 6.59. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -9.87 & 4.66 & 2.82 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 7.57 & 14.29*** & 9.8** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 9.66 & 11.93** & 11.09** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 8.36 & 12.63*** & 7.5* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 1.48 & 11.9*** & 8.68* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 6.39 & 13.82*** & 8.8* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.23 & 12.48*** & 9.7** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 4.67 & 12.53*** & 9.5** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.23 & 12.92*** & 6.78. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 22.99*** & 13.76*** & 8.74* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.08*** & 12.63*** & 8.5* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.72** & 14.8*** & 9.79** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.08** & 11.2** & 8.19* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.77*** & 14.16*** & 10.33** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.46** & 12.11*** & 8.89* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.58** & 11.84*** & 9.52** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.36*** & 13.94*** & 11.96*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -0.8 & 8.61* & 5.7 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 3.73 & 6.87* & 1.02 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -1.14 & 9.82** & 6.08. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 1.79 & 3.67 & -0.89 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.27 & 11.42*** & 6.6. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.08 & 7.35* & 4.48 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.65 & 9.07** & 5.12 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.32 & 6.94* & -0.12 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.01*** & 15.25*** & 10.91** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.57** & 13.94*** & 10.1** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 22.7*** & 13.48*** & 9.87** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.05*** & 15.74*** & 12.75*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 17.55** & 13.59*** & 9.69** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 21.27** & 10.19** & 7.16. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 19.31*** & 15.61*** & 12.37*** \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.14*** & 12.7*** & 9.84** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive & -9.21 & -6.73* & -3.78 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 8.23. & 2.89 & 3.21 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 10.32. & 0.53 & 4.5 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 9.02* & 1.24 & 0.91 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 2.14 & 0.5 & 2.09 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 7.05. & 2.42 & 2.2 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 8.89. & 1.08 & 3.11 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 5.33 & 1.13 & 2.91 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 6.89 & 1.52 & 0.18 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 23.65*** & 2.36 & 2.14 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.74*** & 1.24 & 1.9 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.38*** & 3.4 & 3.19 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.74*** & -0.19 & 1.59 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.43*** & 2.76 & 3.73 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 20.12*** & 0.71 & 2.29 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 19.24*** & 0.44 & 2.92 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 24.02*** & 2.54 & 5.37 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -0.14 & -2.79 & -0.89 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.39 & -4.53 & -5.58. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -0.48 & -1.58 & -0.51 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.46 & -7.73* & -7.48* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.93. & 0.03 & 0.01 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.74 & -4.05 & -2.12 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.32 & -2.33 & -1.48 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.98 & -4.46 & -6.72* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.67*** & 3.85. & 4.32. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.23*** & 2.54 & 3.51 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.36*** & 2.08 & 3.28 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.71*** & 4.34 & 6.16. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.21*** & 2.19 & 3.09 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 21.93*** & -1.21 & 0.57 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 19.97*** & 4.21. & 5.78* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.8*** & 1.3 & 3.25 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 17.44** & 9.62** & 6.98. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 19.53** & 7.27* & 8.28* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 18.23** & 7.97* & 4.69 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 11.35. & 7.24* & 5.87. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 16.26** & 9.15** & 5.98. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 18.1** & 7.81* & 6.89* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 14.54* & 7.86* & 6.68. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 16.1* & 8.26* & 3.96 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 32.86*** & 9.1** & 5.92. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.95*** & 7.97* & 5.68. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.59*** & 10.14** & 6.97. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.95*** & 6.54. & 5.37 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.64*** & 9.49** & 7.51* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 29.33*** & 7.44* & 6.07. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 28.45*** & 7.18* & 6.7. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 33.23*** & 9.27** & 9.15** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 9.07 & 3.94 & 2.89 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 13.6* & 2.2 & -1.8 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 8.73 & 5.15 & 3.26 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 11.67. & -1 & -3.7 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 16.14** & 6.76* & 3.79 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 14.95* & 2.68 & 1.66 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 13.53* & 4.41 & 2.3 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 12.19* & 2.27 & -2.94 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 30.88*** & 10.59** & 8.09* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 29.44*** & 9.27** & 7.29* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 32.57*** & 8.81** & 7.06* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 33.92*** & 11.08*** & 9.93** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 27.42*** & 8.92* & 6.87. \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 31.14*** & 5.52 & 4.34 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 29.18*** & 10.95** & 9.55** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 35.01*** & 8.03* & 7.02* \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive & 2.09 & -2.36 & 1.29 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & 0.79 & -1.66 & -2.3 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.09 & -2.39 & -1.12 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.18 & -0.47 & -1 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 0.66 & -1.81 & -0.1 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -2.9 & -1.76 & -0.3 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.34 & -1.37 & -3.02 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.42*** & -0.53 & -1.06 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.5* & -1.65 & -1.3 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.15* & 0.51 & -0.01 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.5* & -3.08 & -1.61 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.2** & -0.13 & 0.53 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.89* & -2.18 & -0.91 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.01** & -2.45 & -0.28 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.79** & -0.35 & 2.16 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -8.37. & -5.68* & -4.1. \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -3.84 & -7.42* & -8.78** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -8.72* & -4.47. & -3.72 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.78 & -10.62** & -10.69** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.3 & -2.86 & -3.19 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.49 & -6.94* & -5.32 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.92 & -5.22* & -4.68. \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.25 & -7.35* & -9.92** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.44** & 0.96 & 1.11 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.99* & -0.35 & 0.3 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 15.13*** & -0.81 & 0.07 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.48** & 1.45 & 2.95 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.97* & -0.7 & -0.11 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.7* & -4.1 & -2.64 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.74** & 1.32 & 2.57 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.57** & -1.59 & 0.04 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -1.3 & 0.7 & -3.59 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -8.18 & -0.03 & -2.41 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -3.27 & 1.89 & -2.3 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.43 & 0.55 & -1.39 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -4.99 & 0.6 & -1.59 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.43 & 0.99 & -4.32 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.33* & 1.83 & -2.35 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.42 & 0.7 & -2.59 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.06 & 2.87 & -1.31 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.42 & -0.73 & -2.91 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.11. & 2.23 & -0.77 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 9.8 & 0.18 & -2.2 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 8.92 & -0.09 & -1.58 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.7* & 2.01 & 0.87 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -10.46. & -3.32 & -5.39 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -5.93 & -5.06 & -10.08** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -10.8. & -2.11 & -5.01 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.86 & -8.26* & -11.98*** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.39 & -0.5 & -4.49 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -4.58 & -4.58 & -6.61. \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -6 & -2.86 & -5.98 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -7.34 & -4.99 & -11.22** \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.35. & 3.32 & -0.18 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 9.91 & 2.01 & -0.99 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 13.04* & 1.55 & -1.22 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 14.39* & 3.81 & 1.66 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 7.89 & 1.66 & -1.41 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.61. & -1.74 & -3.93 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 9.65. & 3.68 & 1.28 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.48* & 0.77 & -1.25 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive & -6.88 & -0.73 & 1.18 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -1.97 & 1.18 & 1.29 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & -0.13 & -0.16 & 2.2 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.69 & -0.11 & 2 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -2.13 & 0.29 & -0.73 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.63*** & 1.13 & 1.24 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.72* & 0 & 1 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.36* & 2.17 & 2.28 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.72* & -1.43 & 0.68 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.41** & 1.52 & 2.82 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.1* & -0.53 & 1.38 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.22* & -0.79 & 2.01 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15** & 1.3 & 4.46 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -9.16* & -4.03. & -1.8 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.63 & -5.77. & -6.49* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -9.5* & -2.82 & -1.42 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -6.57 & -8.97** & -8.39* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -2.09 & -1.21 & -0.9 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.28 & -5.29 & -3.03 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.71 & -3.56 & -2.39 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -6.04 & -5.7. & -7.63* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.65** & 2.62 & 3.41 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.21* & 1.3 & 2.6 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 14.34*** & 0.84 & 2.37 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 15.69** & 3.11 & 5.25 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.19* & 0.95 & 2.18 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.91* & -2.45 & -0.34 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 10.95** & 2.98 & 4.87* \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 16.78** & 0.07 & 2.34 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 4.91 & 1.92 & 0.11 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 6.74 & 0.58 & 1.02 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 3.19 & 0.63 & 0.82 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 4.74 & 1.02 & -1.91 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.51*** & 1.86 & 0.06 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.59** & 0.73 & -0.18 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.24** & 2.9 & 1.1 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.59** & -0.7 & -0.5 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.28*** & 2.25 & 1.64 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.98** & 0.2 & 0.21 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.1** & -0.06 & 0.83 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 21.88*** & 2.03 & 3.28 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.28 & -3.29 & -2.98 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 2.25 & -5.03 & -7.67* \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.63 & -2.08 & -2.6 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 0.31 & -8.24* & -9.57** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.79 & -0.48 & -2.08 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 3.6 & -4.55 & -4.2 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 2.17 & -2.83 & -3.57 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 0.84 & -4.97. & -8.81** \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.53*** & 3.35 & 2.23 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.08** & 2.04 & 1.42 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.22*** & 1.58 & 1.19 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 22.57*** & 3.84 & 4.07 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.06** & 1.68 & 1 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.79** & -1.72 & -1.52 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.83*** & 3.71 & 3.69 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.66*** & 0.8 & 1.16 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive & 1.84 & -1.34 & 0.91 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -1.72 & -1.29 & 0.7 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -0.16 & -0.9 & -2.02 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.6*** & -0.06 & -0.06 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.69** & -1.18 & -0.3 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.33** & 0.98 & 0.99 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.68* & -2.61 & -0.61 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.38** & 0.34 & 1.53 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.07* & -1.71 & 0.09 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.19** & -1.98 & 0.72 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.97** & 0.12 & 3.17 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -7.19. & -5.21* & -3.09 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.66 & -6.95* & -7.78* \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.54. & -4. & -2.72 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.6 & -10.15** & -9.68** \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -0.12 & -2.39 & -2.19 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.31 & -6.47. & -4.32 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.74 & -4.75* & -3.68 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.07 & -6.88* & -8.92** \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.62*** & 1.44 & 2.11 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.17* & 0.12 & 1.31 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.31*** & -0.34 & 1.07 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.66*** & 1.92 & 3.95 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.15* & -0.23 & 0.89 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 14.88* & -3.63 & -1.64 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 12.92** & 1.79 & 3.57 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.75*** & -1.12 & 1.04 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -3.56 & 0.05 & -0.2 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & -2 & 0.44 & -2.93 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.76** & 1.28 & -0.96 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.85* & 0.16 & -1.2 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.49* & 2.32 & 0.08 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.85* & -1.27 & -1.52 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.54* & 1.68 & 0.63 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 11.23* & -0.37 & -0.81 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 10.35* & -0.64 & -0.18 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.13** & 1.46 & 2.26 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -9.03. & -3.87 & -4 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -4.5 & -5.61* & -8.69** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -9.37. & -2.66 & -3.62 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -6.43 & -8.81** & -10.59*** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.95 & -1.05 & -3.1 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -3.14 & -5.13 & -5.22 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -4.57 & -3.41 & -4.59 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -5.91 & -5.54* & -9.83*** \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 12.78** & 2.77 & 1.21 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 11.34* & 1.46 & 0.4 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 14.47** & 1 & 0.17 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 15.83** & 3.26 & 3.05 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 9.32. & 1.11 & -0.02 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.05* & -2.29 & -2.54 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 11.08* & 3.13 & 2.67 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 16.91** & 0.22 & 0.14 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive & 1.56 & 0.39 & -2.72 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.32*** & 1.23 & -0.76 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.41** & 0.11 & -1 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.05** & 2.27 & 0.29 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.41* & -1.32 & -1.31 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 15.1*** & 1.63 & 0.83 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 14.79** & -0.42 & -0.61 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.91** & -0.69 & 0.02 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 18.69*** & 1.41 & 2.46 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -5.47 & -3.92. & -3.8 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -0.94 & -5.66. & -8.48* \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -5.81 & -2.71 & -3.42 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -2.87 & -8.86** & -10.39** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 1.6 & -1.1 & -2.89 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 0.41 & -5.18 & -5.02 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -1.01 & -3.46 & -4.38. \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.35 & -5.59. & -9.62** \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 16.34*** & 2.72 & 1.41 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.9** & 1.41 & 0.6 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 18.03*** & 0.95 & 0.37 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 19.38*** & 3.21 & 3.25 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.88** & 1.06 & 0.19 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.6** & -2.34 & -2.34 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 14.64*** & 3.08 & 2.87 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.47*** & 0.17 & 0.34 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 16.76** & 0.84 & 1.96 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.85* & -0.29 & 1.72 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.49* & 1.88 & 3.01 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.85* & -1.72 & 1.41 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.54* & 1.24 & 3.55 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 13.23* & -0.81 & 2.11 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 12.35* & -1.08 & 2.74 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 17.13** & 1.02 & 5.19 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -7.03 & -4.31 & -1.07 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -2.49 & -6.05. & -5.76. \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -7.37 & -3.1 & -0.7 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.43 & -9.25** & -7.66* \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 0.05 & -1.5 & -0.17 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.14 & -5.57 & -2.3 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.57 & -3.85 & -1.66 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.91 & -5.98. & -6.9* \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.78* & 2.33 & 4.13 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.34* & 1.02 & 3.33 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.47** & 0.56 & 3.09 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.83** & 2.82 & 5.97. \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.32. & 0.67 & 2.91 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 15.05* & -2.73 & 0.38 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 13.09* & 2.69 & 5.59 \\
## RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Defensive - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.91** & -0.22 & 3.06 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial & -2.91 & -1.13 & -0.24 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & -4.27 & 1.04 & 1.05 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & -2.91 & -2.56 & -0.55 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -3.22 & 0.4 & 1.59 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -3.53 & -1.66 & 0.15 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -4.41 & -1.92 & 0.78 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 0.37 & 0.17 & 3.22 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -23.79*** & -5.15* & -3.03 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -19.26*** & -6.89* & -7.72* \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -24.13*** & -3.94. & -2.66 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -21.19*** & -10.1** & -9.62** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -16.72*** & -2.34 & -2.13 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -17.91** & -6.41. & -4.26 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -19.33*** & -4.69* & -3.62 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -20.67*** & -6.83* & -8.86** \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -1.98 & 1.49 & 2.17 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -3.42 & 0.18 & 1.36 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & -0.29 & -0.28 & 1.13 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 1.06 & 1.98 & 4.01 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -5.44 & -0.18 & 0.95 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.71 & -3.57 & -1.58 \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -3.68 & 1.85 & 3.63. \\
## RespWhite:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.15 & -1.06 & 1.1 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & -1.36 & 2.17 & 1.29 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 0 & -1.43 & -0.31 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.31 & 1.52 & 1.83 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.62 & -0.53 & 0.39 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -1.5 & -0.79 & 1.02 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.28 & 1.3 & 3.46 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -20.88*** & -4.03 & -2.79 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -16.34** & -5.77. & -7.48* \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -21.22*** & -2.82 & -2.42 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -18.28** & -8.97** & -9.38** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.8** & -1.21 & -1.89 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -14.99* & -5.29 & -4.02 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.42** & -3.56 & -3.38 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -17.76** & -5.7. & -8.62** \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.93 & 2.62 & 2.41 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -0.51 & 1.3 & 1.6 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 2.62 & 0.84 & 1.37 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.98 & 3.11 & 4.25 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.53 & 0.95 & 1.19 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.2 & -2.45 & -1.34 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -0.76 & 2.98 & 3.87 \\
## RespChinese:NameWhite:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.06 & 0.07 & 1.34 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.36 & -3.6 & -1.6 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 1.05 & -0.64 & 0.54 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & 0.74 & -2.7 & -0.9 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.14 & -2.96 & -0.27 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.64 & -0.87 & 2.18 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -19.52*** & -6.19** & -4.08. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -14.99** & -7.93* & -8.77** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -19.86*** & -4.98* & -3.71 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -16.93** & -11.14*** & -10.67** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -12.45** & -3.38 & -3.18 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.64* & -7.45* & -5.31 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -15.06** & -5.73* & -4.67. \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.4** & -7.87* & -9.91** \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 2.29 & 0.45 & 1.12 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.85 & -0.86 & 0.32 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.98 & -1.32 & 0.09 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 5.33 & 0.94 & 2.96 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.17 & -1.22 & -0.1 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.55 & -4.61 & -2.63 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 0.59 & 0.81 & 2.58 \\
## RespWhite:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 6.42 & -2.1 & 0.06 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.31 & 2.95 & 2.14 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.62 & 0.9 & 0.7 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -1.5 & 0.64 & 1.33 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.28 & 2.73 & 3.78 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -20.88*** & -2.6 & -2.48 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -16.34** & -4.34 & -7.17* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -21.22*** & -1.39 & -2.11 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -18.28** & -7.54* & -9.07* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.8* & 0.22 & -1.58 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -14.99* & -3.86 & -3.71 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.42** & -2.13 & -3.07 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -17.76** & -4.27 & -8.31* \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.93 & 4.05 & 2.72 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -0.51 & 2.73 & 1.92 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 2.63 & 2.27 & 1.69 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.98 & 4.54 & 4.56 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.53 & 2.38 & 1.5 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.2 & -1.02 & -1.03 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -0.76 & 4.4 & 4.18 \\
## RespChinese:NameBlack:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.07 & 1.49 & 1.65 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.31 & -2.05 & -1.44 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -1.19 & -2.32 & -0.81 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.59 & -0.22 & 1.64 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -20.57*** & -5.55* & -4.62. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -16.04** & -7.29* & -9.31** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -20.91*** & -4.34. & -4.25. \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -17.97** & -10.49** & -11.21** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.49** & -2.73 & -3.72 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -14.68* & -6.81. & -5.85 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.11*** & -5.09* & -5.21* \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -17.45** & -7.22* & -10.45** \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 1.24 & 1.1 & 0.58 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -0.2 & -0.22 & -0.23 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 2.93 & -0.68 & -0.46 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 4.29 & 1.59 & 2.42 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.22 & -0.57 & -0.64 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.51 & -3.97 & -3.17 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -0.46 & 1.45 & 2.04 \\
## RespWhite:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.37 & -1.46 & -0.49 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & -0.88 & -0.27 & 0.63 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 3.9 & 1.83 & 3.08 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -20.26*** & -3.5 & -3.18 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -15.73** & -5.24. & -7.87* \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -20.6*** & -2.29 & -2.81 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -17.66** & -8.44** & -9.77** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.19* & -0.68 & -2.28 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -14.38* & -4.76 & -4.41 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -15.8** & -3.03 & -3.77 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -17.14** & -5.17. & -9.01** \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 1.55 & 3.15 & 2.02 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.11 & 1.83 & 1.21 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.24 & 1.37 & 0.98 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 4.59 & 3.64 & 3.86 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.91 & 1.48 & 0.8 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.81 & -1.92 & -1.73 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -0.15 & 3.5 & 3.48 \\
## RespChinese:NameChinese:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.68 & 0.59 & 0.95 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial & 4.78 & 2.1 & 2.45 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -19.38*** & -3.23 & -3.81. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -14.85** & -4.97 & -8.5** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -19.72*** & -2.02 & -3.44 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -16.79** & -8.17* & -10.4** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -12.31** & -0.41 & -2.91 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -13.5* & -4.49 & -5.04 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -14.92*** & -2.77 & -4.4. \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -16.26** & -4.9 & -9.64** \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 2.43 & 3.41 & 1.39 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 0.99 & 2.1 & 0.58 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 4.12 & 1.64 & 0.35 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 5.47 & 3.9 & 3.23 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.03 & 1.75 & 0.17 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 2.69 & -1.65 & -2.36 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 0.73 & 3.77. & 2.85 \\
## RespWhite:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 6.56 & 0.86 & 0.32 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -24.16*** & -5.33 & -6.26. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & -19.63*** & -7.07* & -10.95*** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -24.5*** & -4.12 & -5.88. \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -21.57*** & -10.27** & -12.85*** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -17.09** & -2.51 & -5.36 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -18.28** & -6.59. & -7.49* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -19.71*** & -4.86 & -6.85* \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -21.04*** & -7* & -12.09*** \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -2.35 & 1.32 & -1.05 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -3.79 & 0 & -1.86 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & -0.66 & -0.46 & -2.09 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 0.69 & 1.81 & 0.79 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -5.81 & -0.35 & -2.28 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.09 & -3.75 & -4.8 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -4.05 & 1.67 & 0.41 \\
## RespChinese:NameIndian:V\_Producthardwaresupplies:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 1.78 & -1.24 & -2.12 \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameBlack:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameChinese:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespChinese:NameIndian:V\_Producttoiletpaper:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial & 4.53 & -1.74 & -4.69 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -0.34 & 1.21 & 0.38 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.6 & -4.94 & -6.59. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.07. & 2.82 & 0.9 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 5.88 & -1.26 & -1.23 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.46 & 0.46 & -0.59 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.12 & -1.67 & -5.83. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 21.81*** & 6.64** & 5.21* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.37*** & 5.33 & 4.4 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.5*** & 4.87* & 4.17. \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 24.85*** & 7.13* & 7.05* \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.35*** & 4.98* & 3.98 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.07*** & 1.58 & 1.46 \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.11*** & 7** & 6.66** \\
## RespWhite:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 25.94*** & 4.09 & 4.14 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -4.88 & 2.95 & 5.06 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & -1.94 & -3.2 & -1.9 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 2.54 & 4.56 & 5.59. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 1.35 & 0.48 & 3.46 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -0.08 & 2.2 & 4.1 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -1.41 & 0.07 & -1.14 \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 17.28*** & 8.38** & 9.89** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 15.83** & 7.07* & 9.09** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 18.97*** & 6.61* & 8.85** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 20.32*** & 8.87** & 11.73*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.81* & 6.72* & 8.67** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 17.54** & 3.32 & 6.14. \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.58** & 8.74** & 11.35*** \\
## RespChinese:NameWhite:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.41*** & 5.83. & 8.82** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial & 2.94 & -6.15. & -6.97* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 7.42. & 1.61 & 0.53 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 6.23 & -2.47 & -1.6 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 4.8 & -0.75 & -0.96 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 3.46 & -2.88 & -6.2. \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 22.16*** & 5.44* & 4.83* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 20.71*** & 4.12 & 4.02 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 23.85*** & 3.66 & 3.79 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 25.2*** & 5.92. & 6.67* \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.69*** & 3.77 & 3.61 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 22.42*** & 0.37 & 1.08 \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.46*** & 5.79** & 6.29** \\
## RespWhite:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 26.29*** & 2.88 & 3.76 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 4.48 & 7.76* & 7.49* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & 3.29 & 3.68 & 5.36 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 1.86 & 5.4 & 6. \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & 0.53 & 3.27 & 0.76 \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 19.22*** & 11.59*** & 11.8*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 17.77** & 10.27** & 10.99** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 20.91*** & 9.81** & 10.76** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 22.26*** & 12.08*** & 13.64*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 15.75** & 9.92** & 10.57** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 19.48** & 6.52. & 8.05* \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 17.52** & 11.94*** & 13.25*** \\
## RespChinese:NameBlack:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 23.35*** & 9.03** & 10.73** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial & -1.19 & -4.08 & -2.13 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.62 & -2.35 & -1.49 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -3.95 & -4.49 & -6.73* \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.74*** & 3.83. & 4.3. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 13.29* & 2.51 & 3.5 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 16.43*** & 2.05 & 3.27 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.78*** & 4.32 & 6.14. \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 11.27** & 2.16 & 3.08 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 15** & -1.24 & 0.55 \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 13.04*** & 4.18* & 5.76** \\
## RespWhite:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 18.87*** & 1.27 & 3.24 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -1.43 & 1.72 & 0.64 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -2.76 & -0.41 & -4.6 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 15.93** & 7.9* & 6.43. \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 14.48* & 6.59. & 5.62 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 17.62** & 6.13. & 5.39 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 18.97** & 8.39* & 8.27* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 12.46* & 6.24. & 5.21 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 16.19* & 2.84 & 2.68 \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 14.23* & 8.26* & 7.89* \\
## RespChinese:NameChinese:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 20.06** & 5.35 & 5.36 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial & -1.34 & -2.13 & -5.24 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 17.36*** & 6.18** & 5.79* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 15.91** & 4.87 & 4.99 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 19.05*** & 4.41. & 4.76. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 20.4*** & 6.67* & 7.63* \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 13.89** & 4.51. & 4.57. \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 17.62** & 1.12 & 2.04 \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 15.66*** & 6.54** & 7.25** \\
## RespWhite:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 21.49*** & 3.63 & 4.73 \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 18.69*** & 8.32** & 11.03*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & 17.25** & 7* & 10.23** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 20.38*** & 6.54* & 10** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 21.73*** & 8.81** & 12.87*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 15.23** & 6.65* & 9.81** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 18.95** & 3.25 & 7.28* \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 16.99*** & 8.67** & 12.49*** \\
## RespChinese:NameIndian:V\_Productcigarettes:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 22.82*** & 5.76. & 9.97** \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial & -1.44 & -1.31 & -0.81 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 1.69 & -1.78 & -1.04 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.04 & 0.49 & 1.84 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -3.46 & -1.67 & -1.22 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 0.26 & -5.07 & -3.75 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -1.7 & 0.36 & 1.46 \\
## RespWhite:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 4.13 & -2.55 & -1.07 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 3.14 & -0.46 & -0.23 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 4.49 & 1.8 & 2.65 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.02 & -0.35 & -0.42 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 1.71 & -3.75 & -2.94 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -0.25 & 1.67 & 2.27 \\
## RespChinese:NameWhite:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.58 & -1.24 & -0.26 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial & 1.35 & 2.26 & 2.88 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -5.16 & 0.11 & -0.18 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -1.43 & -3.29 & -2.71 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -3.39 & 2.13 & 2.5 \\
## RespWhite:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 2.44 & -0.78 & -0.03 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -6.51 & -2.16 & -3.06 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & -2.78 & -5.56 & -5.59 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -4.74 & -0.13 & -0.38 \\
## RespChinese:NameBlack:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 1.09 & -3.04 & -2.91 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial & 3.73 & -3.4 & -2.53 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 1.77 & 2.02 & 2.68 \\
## RespWhite:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 7.6 & -0.89 & 0.15 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & -1.96 & 5.42 & 5.21 \\
## RespChinese:NameChinese:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 3.87 & 2.51 & 2.68 \\
## RespWhite:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial - RespChinese:NameIndian:V\_Productbabyformula:V\_presentation3Prosocial & 5.83 & -2.91 & -2.53 \\
## \hline
## \end{tabular}
## \end{table}
arrangeorder <- c("NmeWhite:CHANGEFORPRODUCT:Defensive - NmeChinese:CHANGEFORPRODUCT:Defensive",
"NmeWhite:CHANGEFORPRODUCT:Prosocial - NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:CHANGEFORPRODUCT:NONE - RspChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:CHANGEFORPRODUCT:Defensive - RspChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE - RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive - RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:NONE - RspChinese:NmeChinese:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:Defensive - RspChinese:NmeChinese:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeChinese:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeChinese:CHANGEFORPRODUCT:Prosocial",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:NONE - RspChinese:NmeWhite:CHANGEFORPRODUCT:NONE",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Defensive - RspChinese:NmeWhite:CHANGEFORPRODUCT:Defensive",
"RspWhite:NmeWhite:CHANGEFORPRODUCT:Prosocial - RspChinese:NmeWhite:CHANGEFORPRODUCT:Prosocial")
dff.means.comp <- dff.means %>%
mutate(name=rownames(.),
p1=str_extract(name, "[A-z0-9:]{1,} "),
p2=str_extract(name, " [A-z0-9:]{1,}"),
p1V_PP=str_extract(p1, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}"),
p2V_PP=str_extract(p2, "V_Product[A-z]{1,}:V_presentation3[A-z]{1,}")) %>%
filter(!is.na(p1V_PP) & p1V_PP==p2V_PP)
f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT <- function(c_WHICHPRODUCT){
dff.means.comp %>%
filter(!str_detect(name, "Indian|Black"), str_detect(name,c_WHICHPRODUCT)) %>%
mutate(name = name %>%
str_replace_all("EXPGRP_TEXT", "Rsp") %>%
str_replace_all("V_Racenamef", "Nme") %>%
str_remove_all("V_Product") %>%
str_remove_all("V_presentation3")) %>%
arrange(match(name,
arrangeorder %>%
str_replace_all("CHANGEFORPRODUCT",
c_WHICHPRODUCT))) %>%
rownames_to_column(var = "k") %>%
mutate(comp1 = str_extract(name, "[A-z0-9:]{1,} "),
comp2 = str_extract(name, " [A-z0-9:]{1,}")) %>%
dplyr::select(comp1, comp2, MorallyWrong, CatchCovid, TransmitCovid) %>%
xtable::xtable(caption = paste("Mean comparison of Model 9, for ", c_WHICHPRODUCT, " and White and Chinese name")) %>%
print(include.rownames=FALSE)
return()
}
map(dff_q$V_Product %>% levels(), f_LATEX_MEANS_RACE_COMPARISON_PER_WHICHPRODUCT)
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:41:07 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite:hardwaresupplies:NONE & RespChinese:hardwaresupplies:NONE & 0.54 & -1.54 & -1.85 \\
## RespWhite:hardwaresupplies:Defensive & RespChinese:hardwaresupplies:Defensive & -2.68 & -1.13 & -2.79 \\
## RespWhite:hardwaresupplies:Prosocial & RespChinese:hardwaresupplies:Prosocial & 0.73 & -1.17 & -0.21 \\
## NameWhite:hardwaresupplies:NONE & NameChinese:hardwaresupplies:NONE & -1.3 & -0.73 & 0.12 \\
## NameWhite:hardwaresupplies:Defensive & NameChinese:hardwaresupplies:Defensive & 1.44 & 1.45 & 2.91 \\
## NameWhite:hardwaresupplies:Prosocial & NameChinese:hardwaresupplies:Prosocial & -1.92 & -0.07 & 0.99 \\
## RespWhite:NameWhite:hardwaresupplies:NONE & RespChinese:NameWhite:hardwaresupplies:NONE & -3.66 & -1.54 & 0.27 \\
## RespWhite:NameWhite:hardwaresupplies:NONE & RespWhite:NameChinese:hardwaresupplies:NONE & -2.75 & -0.6 & 2.26 \\
## RespWhite:NameWhite:hardwaresupplies:NONE & RespChinese:NameChinese:hardwaresupplies:NONE & -3.51 & -2.4 & -1.76 \\
## RespChinese:NameWhite:hardwaresupplies:NONE & RespWhite:NameChinese:hardwaresupplies:NONE & 0.91 & 0.93 & 1.99 \\
## RespChinese:NameWhite:hardwaresupplies:NONE & RespChinese:NameChinese:hardwaresupplies:NONE & 0.15 & -0.87 & -2.02 \\
## RespWhite:NameChinese:hardwaresupplies:NONE & RespChinese:NameChinese:hardwaresupplies:NONE & -0.76 & -1.8 & -4.01 \\
## RespWhite:NameWhite:hardwaresupplies:Defensive & RespChinese:NameWhite:hardwaresupplies:Defensive & 2.42 & 2.1 & -1.26 \\
## RespWhite:NameWhite:hardwaresupplies:Defensive & RespWhite:NameChinese:hardwaresupplies:Defensive & 6.08 & 2.78 & 3.85 \\
## RespWhite:NameWhite:hardwaresupplies:Defensive & RespChinese:NameChinese:hardwaresupplies:Defensive & -0.77 & 2.23 & 0.71 \\
## RespChinese:NameWhite:hardwaresupplies:Defensive & RespWhite:NameChinese:hardwaresupplies:Defensive & 3.66 & 0.67 & 5.11 \\
## RespChinese:NameWhite:hardwaresupplies:Defensive & RespChinese:NameChinese:hardwaresupplies:Defensive & -3.19 & 0.13 & 1.97 \\
## RespWhite:NameChinese:hardwaresupplies:Defensive & RespChinese:NameChinese:hardwaresupplies:Defensive & -6.86 & -0.54 & -3.14 \\
## RespWhite:NameWhite:hardwaresupplies:Prosocial & RespChinese:NameWhite:hardwaresupplies:Prosocial & -2.91 & -1.13 & -0.24 \\
## RespWhite:NameWhite:hardwaresupplies:Prosocial & RespWhite:NameChinese:hardwaresupplies:Prosocial & -3.22 & 0.4 & 1.59 \\
## RespWhite:NameWhite:hardwaresupplies:Prosocial & RespChinese:NameChinese:hardwaresupplies:Prosocial & -3.53 & -1.66 & 0.15 \\
## RespChinese:NameWhite:hardwaresupplies:Prosocial & RespWhite:NameChinese:hardwaresupplies:Prosocial & -0.31 & 1.52 & 1.83 \\
## RespChinese:NameWhite:hardwaresupplies:Prosocial & RespChinese:NameChinese:hardwaresupplies:Prosocial & -0.62 & -0.53 & 0.39 \\
## RespWhite:NameChinese:hardwaresupplies:Prosocial & RespChinese:NameChinese:hardwaresupplies:Prosocial & -0.31 & -2.05 & -1.44 \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for hardwaresupplies and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:41:07 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite:toiletpaper:NONE & RespChinese:toiletpaper:NONE & -2.53 & -2.5 & -1.84 \\
## RespWhite:toiletpaper:Defensive & RespChinese:toiletpaper:Defensive & -3.24 & -2.52 & -1.69 \\
## RespWhite:toiletpaper:Prosocial & RespChinese:toiletpaper:Prosocial & NA & NA & NA \\
## NameWhite:toiletpaper:NONE & NameChinese:toiletpaper:NONE & 5.19* & 2.55. & 1.46 \\
## NameWhite:toiletpaper:Defensive & NameChinese:toiletpaper:Defensive & 3.36 & -0.83 & -1.93 \\
## NameWhite:toiletpaper:Prosocial & NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:toiletpaper:NONE & RespChinese:NameWhite:toiletpaper:NONE & -3.73 & -2.83 & -3.18 \\
## RespWhite:NameWhite:toiletpaper:NONE & RespWhite:NameChinese:toiletpaper:NONE & 4.54 & 0.84 & -0.38 \\
## RespWhite:NameWhite:toiletpaper:NONE & RespChinese:NameChinese:toiletpaper:NONE & 2.1 & 1.44 & 0.13 \\
## RespChinese:NameWhite:toiletpaper:NONE & RespWhite:NameChinese:toiletpaper:NONE & 8.27* & 3.66 & 2.8 \\
## RespChinese:NameWhite:toiletpaper:NONE & RespChinese:NameChinese:toiletpaper:NONE & 5.83 & 4.27. & 3.31 \\
## RespWhite:NameChinese:toiletpaper:NONE & RespChinese:NameChinese:toiletpaper:NONE & -2.44 & 0.61 & 0.51 \\
## RespWhite:NameWhite:toiletpaper:Defensive & RespChinese:NameWhite:toiletpaper:Defensive & -8.92. & -2.49 & -2.62 \\
## RespWhite:NameWhite:toiletpaper:Defensive & RespWhite:NameChinese:toiletpaper:Defensive & 0.34 & -0.15 & -3.74. \\
## RespWhite:NameWhite:toiletpaper:Defensive & RespChinese:NameChinese:toiletpaper:Defensive & -2.52 & -4 & -2.75 \\
## RespChinese:NameWhite:toiletpaper:Defensive & RespWhite:NameChinese:toiletpaper:Defensive & 9.25. & 2.34 & -1.12 \\
## RespChinese:NameWhite:toiletpaper:Defensive & RespChinese:NameChinese:toiletpaper:Defensive & 6.39 & -1.51 & -0.13 \\
## RespWhite:NameChinese:toiletpaper:Defensive & RespChinese:NameChinese:toiletpaper:Defensive & -2.86 & -3.85 & 0.99 \\
## RespWhite:NameWhite:toiletpaper:Prosocial & RespChinese:NameWhite:toiletpaper:Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:toiletpaper:Prosocial & RespWhite:NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## RespWhite:NameWhite:toiletpaper:Prosocial & RespChinese:NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:toiletpaper:Prosocial & RespWhite:NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## RespChinese:NameWhite:toiletpaper:Prosocial & RespChinese:NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## RespWhite:NameChinese:toiletpaper:Prosocial & RespChinese:NameChinese:toiletpaper:Prosocial & NA & NA & NA \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for toiletpaper and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:41:07 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite:cigarettes:NONE & RespChinese:cigarettes:NONE & -6.1* & -5.63** & -3.5. \\
## RespWhite:cigarettes:Defensive & RespChinese:cigarettes:Defensive & -4.09 & -6.87** & -4.74* \\
## RespWhite:cigarettes:Prosocial & RespChinese:cigarettes:Prosocial & 1.24 & -3.53 & -4.76* \\
## NameWhite:cigarettes:NONE & NameChinese:cigarettes:NONE & 9.07*** & 2.06 & 1.29 \\
## NameWhite:cigarettes:Defensive & NameChinese:cigarettes:Defensive & 9.8* & 1.3 & 2.73 \\
## NameWhite:cigarettes:Prosocial & NameChinese:cigarettes:Prosocial & 4.21 & 1.65 & 2.18 \\
## RespWhite:NameWhite:cigarettes:NONE & RespChinese:NameWhite:cigarettes:NONE & -5.38 & -1.91 & -1.14 \\
## RespWhite:NameWhite:cigarettes:NONE & RespWhite:NameChinese:cigarettes:NONE & 7.8** & 5.76*** & 4.06* \\
## RespWhite:NameWhite:cigarettes:NONE & RespChinese:NameChinese:cigarettes:NONE & 4.95 & -3.55 & -2.62 \\
## RespChinese:NameWhite:cigarettes:NONE & RespWhite:NameChinese:cigarettes:NONE & 13.18*** & 7.67** & 5.2. \\
## RespChinese:NameWhite:cigarettes:NONE & RespChinese:NameChinese:cigarettes:NONE & 10.33* & -1.64 & -1.48 \\
## RespWhite:NameChinese:cigarettes:NONE & RespChinese:NameChinese:cigarettes:NONE & -2.85 & -9.31*** & -6.68* \\
## RespWhite:NameWhite:cigarettes:Defensive & RespChinese:NameWhite:cigarettes:Defensive & -7.23 & -4.69 & -6.66. \\
## RespWhite:NameWhite:cigarettes:Defensive & RespWhite:NameChinese:cigarettes:Defensive & 6.7 & 4.04. & 3.42 \\
## RespWhite:NameWhite:cigarettes:Defensive & RespChinese:NameChinese:cigarettes:Defensive & 5.67 & -6.13. & -4.62 \\
## RespChinese:NameWhite:cigarettes:Defensive & RespWhite:NameChinese:cigarettes:Defensive & 13.93* & 8.73** & 10.08** \\
## RespChinese:NameWhite:cigarettes:Defensive & RespChinese:NameChinese:cigarettes:Defensive & 12.9* & -1.44 & 2.04 \\
## RespWhite:NameChinese:cigarettes:Defensive & RespChinese:NameChinese:cigarettes:Defensive & -1.03 & -10.18** & -8.05* \\
## RespWhite:NameWhite:cigarettes:Prosocial & RespChinese:NameWhite:cigarettes:Prosocial & 4.53 & -1.74 & -4.69 \\
## RespWhite:NameWhite:cigarettes:Prosocial & RespWhite:NameChinese:cigarettes:Prosocial & 7.07. & 2.82 & 0.9 \\
## RespWhite:NameWhite:cigarettes:Prosocial & RespChinese:NameChinese:cigarettes:Prosocial & 5.88 & -1.26 & -1.23 \\
## RespChinese:NameWhite:cigarettes:Prosocial & RespWhite:NameChinese:cigarettes:Prosocial & 2.54 & 4.56 & 5.59. \\
## RespChinese:NameWhite:cigarettes:Prosocial & RespChinese:NameChinese:cigarettes:Prosocial & 1.35 & 0.48 & 3.46 \\
## RespWhite:NameChinese:cigarettes:Prosocial & RespChinese:NameChinese:cigarettes:Prosocial & -1.19 & -4.08 & -2.13 \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for cigarettes and White and Chinese name}
## \end{table}
## % latex table generated in R 4.2.0 by xtable 1.8-4 package
## % Tue Aug 16 17:41:08 2022
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllll}
## \hline
## comp1 & comp2 & MorallyWrong & CatchCovid & TransmitCovid \\
## \hline
## RespWhite:babyformula:NONE & RespChinese:babyformula:NONE & -1.34 & -1.27 & -0.31 \\
## RespWhite:babyformula:Defensive & RespChinese:babyformula:Defensive & -0.35 & -1.01 & 0.16 \\
## RespWhite:babyformula:Prosocial & RespChinese:babyformula:Prosocial & 2.37 & -1.34 & -0.75 \\
## NameWhite:babyformula:NONE & NameChinese:babyformula:NONE & 1.86 & 0.26 & 0.13 \\
## NameWhite:babyformula:Defensive & NameChinese:babyformula:Defensive & -1.31 & 0.04 & -1.2 \\
## NameWhite:babyformula:Prosocial & NameChinese:babyformula:Prosocial & -0.88 & -2.71 & -2.08 \\
## RespWhite:NameWhite:babyformula:NONE & RespChinese:NameWhite:babyformula:NONE & -4.34 & -3.26 & 0.14 \\
## RespWhite:NameWhite:babyformula:NONE & RespWhite:NameChinese:babyformula:NONE & -0.3 & -1.82 & -0.13 \\
## RespWhite:NameWhite:babyformula:NONE & RespChinese:NameChinese:babyformula:NONE & -0.33 & -0.92 & 0.52 \\
## RespChinese:NameWhite:babyformula:NONE & RespWhite:NameChinese:babyformula:NONE & 4.04 & 1.43 & -0.27 \\
## RespChinese:NameWhite:babyformula:NONE & RespChinese:NameChinese:babyformula:NONE & 4.01 & 2.34 & 0.38 \\
## RespWhite:NameChinese:babyformula:NONE & RespChinese:NameChinese:babyformula:NONE & -0.03 & 0.91 & 0.66 \\
## RespWhite:NameWhite:babyformula:Defensive & RespChinese:NameWhite:babyformula:Defensive & 2.09 & -2.36 & 1.29 \\
## RespWhite:NameWhite:babyformula:Defensive & RespWhite:NameChinese:babyformula:Defensive & -1.18 & -0.47 & -1 \\
## RespWhite:NameWhite:babyformula:Defensive & RespChinese:NameChinese:babyformula:Defensive & 0.66 & -1.81 & -0.1 \\
## RespChinese:NameWhite:babyformula:Defensive & RespWhite:NameChinese:babyformula:Defensive & -3.27 & 1.89 & -2.3 \\
## RespChinese:NameWhite:babyformula:Defensive & RespChinese:NameChinese:babyformula:Defensive & -1.43 & 0.55 & -1.39 \\
## RespWhite:NameChinese:babyformula:Defensive & RespChinese:NameChinese:babyformula:Defensive & 1.84 & -1.34 & 0.91 \\
## RespWhite:NameWhite:babyformula:Prosocial & RespChinese:NameWhite:babyformula:Prosocial & -1.44 & -1.31 & -0.81 \\
## RespWhite:NameWhite:babyformula:Prosocial & RespWhite:NameChinese:babyformula:Prosocial & -3.46 & -1.67 & -1.22 \\
## RespWhite:NameWhite:babyformula:Prosocial & RespChinese:NameChinese:babyformula:Prosocial & 0.26 & -5.07 & -3.75 \\
## RespChinese:NameWhite:babyformula:Prosocial & RespWhite:NameChinese:babyformula:Prosocial & -2.02 & -0.35 & -0.42 \\
## RespChinese:NameWhite:babyformula:Prosocial & RespChinese:NameChinese:babyformula:Prosocial & 1.71 & -3.75 & -2.94 \\
## RespWhite:NameChinese:babyformula:Prosocial & RespChinese:NameChinese:babyformula:Prosocial & 3.73 & -3.4 & -2.53 \\
## \hline
## \end{tabular}
## \caption{Mean comparison of Model 9, for babyformula and White and Chinese name}
## \end{table}
## [[1]]
## NULL
##
## [[2]]
## NULL
##
## [[3]]
## NULL
##
## [[4]]
## NULL
dff.means.comp %>%
filter(str_detect(name, "EXPGRP_TEXTChinese:V_RacenamefBlack:V_Productcigarettes:V_presentation3Defensive"),
str_detect(MorallyWrong, "[*]"))
## [1] MorallyWrong CatchCovid TransmitCovid name p1
## [6] p2 p1V_PP p2V_PP
## <0 rows> (or 0-length row.names)
df_grph %>%
filter(V_JudgeSelf==0,
!(is.na(V_presentation3)),
Question=="MorallyWrong",
V_Product=="cigarettes",
!str_detect(V_Racenamef, "Indian|Black")) %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=EXPGRP_TEXT, fill=V_Racenamef)) +
geom_boxplot() +
facet_wrap(~V_presentation3graph)
df_grph %>%
filter(V_JudgeSelf==0,
!(is.na(V_presentation3)),
Question=="MorallyWrong",
V_Product=="cigarettes") %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=EXPGRP_TEXT, fill=V_Racenamef)) +
geom_boxplot() +
facet_wrap(~V_presentation3graph)
df_grph %>%
filter(V_JudgeSelf==0,
!(is.na(V_presentation3)),
Question=="MorallyWrong",
V_Product=="cigarettes") %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value, x=CONTINENT_BORN_TEXT_1, fill=V_Racenamef)) +
geom_boxplot() +
facet_wrap(EXPGRP_TEXT~V_presentation3graph)
set.seed(321)
grph <- df_grph %>%
filter(V_JudgeSelf==0,
!(is.na(V_presentation3)),
Question=="MorallyWrong",
V_Product=="cigarettes") %>%
mutate(x = case_when(V_presentation3graph=="Defensive"~1,
V_presentation3graph=="NONE"~2,
V_presentation3graph=="Prosocial"~3),
xj = jitter(x, amount = .09)) %>%
ggplot(aes(y=Value)) +
geom_point(aes(x=xj, color = EXPGRP_TEXT), size = .5) +
geom_line(aes(x=xj, group=ID_Q), color = 'lightgray', alpha=.4) +
geom_half_boxplot(aes(x=x %>% as.numeric(), y = Value, fill = V_presentation3graph), position = position_nudge(x = -.25), side = "r",outlier.shape = NA, center = TRUE, errorbar.draw = FALSE, width = .2) +
geom_half_violin(aes(x=x %>% as.numeric(), y = Value, fill = V_presentation3graph), position = position_nudge(x = -.3), side = "l") +
stat_smooth(data = . %>% filter(V_Presentation == "Prosocial"),
aes(x=x, y=Value, color=EXPGRP_TEXT), method = "lm", formula = y ~ x, geom = "smooth") +
stat_smooth(data = . %>% filter(V_Presentation == "Defensive"),
aes(x=x, y=Value, color=EXPGRP_TEXT), method = "lm", formula = y ~ x, geom = "smooth") +
scale_x_continuous(breaks=c(1,2,3), labels=c("Defensive", "NONE", "Prosocial")) +
xlab("Presentation") +
facet_wrap(~V_Racenamef, ncol=2)
grph
# 1. Open jpeg file
pdf("./mixedmodel/graphs/Model/Model03.2_presentation.productself.pdf", width = 10, height = 13)
# 2. Create the plot
grph
# 3. Close the file
dev.off()
## quartz_off_screen
## 2
dff_q <- dff_q %>%
mutate(V_rnmeB = case_when(V_Racenamef=="Black"~"Black",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"),
V_rnmeI = case_when(V_Racenamef=="Indian"~"Indian",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"),
V_prdctCig = case_when(V_Product=="cigarettes"~"cigarettes",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"),
V_prdctTp = case_when(V_Product=="toiletpaper"~"toiletpaper",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"),
V_presD = case_when(V_presentation3=="Defensive"~"Defensive",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"),
V_presP = case_when(V_presentation3=="Prosocial"~"Prosocial",
TRUE~"Other") %>%
as.factor() %>%
relevel("Other"))
dff_q$V_presP %>% freq()
## n % val%
## Other 7780 81.2 81.2
## Prosocial 1804 18.8 18.8
mixed.lmers <- list(
"MorallyWrong" = lmer(MorallyWrong ~ EXPGRP_TEXT*V_Racenamef+V_Product*V_presentation3 + EXPGRP_TEXT:V_rnmeB:V_prdctCig:V_presD + EXPGRP_TEXT:V_rnmeB:V_prdctTp:V_presD + EXPGRP_TEXT:V_rnmeI:V_prdctTp:V_presP + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"CatchCovid" = lmer(CatchCovid ~ EXPGRP_TEXT*V_Racenamef+V_Product*V_presentation3 + EXPGRP_TEXT:V_rnmeB:V_prdctCig:V_presD + EXPGRP_TEXT:V_rnmeB:V_prdctTp:V_presD + EXPGRP_TEXT:V_rnmeI:V_prdctTp:V_presP + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
"TransmitCovid" = lmer(TransmitCovid ~ EXPGRP_TEXT*V_Racenamef+V_Product*V_presentation3 + EXPGRP_TEXT:V_rnmeB:V_prdctCig:V_presD + EXPGRP_TEXT:V_rnmeB:V_prdctTp:V_presD + EXPGRP_TEXT:V_rnmeI:V_prdctTp:V_presP + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 21 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 21 columns / coefficients
## fixed-effect model matrix is rank deficient so dropping 21 columns / coefficients
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model 9, Race Name and Respondant, Product and Update presentation")
dff_q$CovidBelieved <- 100 - dff_q$CovidSkepticism
mixed.lmers <- list(
"CatchCov" = lmer(MorallyWrong ~ CatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CovSkep" = lmer(MorallyWrong ~ CovidBelieved + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCov + CovSkep" = lmer(MorallyWrong ~ CovidBelieved + CatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCov * CovSkep" = lmer(MorallyWrong ~ CovidBelieved * CatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"CatchCov:CovSkep" = lmer(MorallyWrong ~ CovidBelieved:CatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
"scaleCatchCov*CovSkep" = lmer(MorallyWrong ~ scale(CovidBelieved) * scale(CatchCovid) + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)))
## Warning: Some predictor variables are on very different scales: consider
## rescaling
## Warning: Some predictor variables are on very different scales: consider
## rescaling
## Warning: Some predictor variables are on very different scales: consider
## rescaling
## Warning: Some predictor variables are on very different scales: consider
## rescaling
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Model x, Catch Covid and CovidSkepticism")
CovidSkepticism + CONTINENT_BORN_TEXT_1 + EDUCATION_2_TEXT + DOB_AGE + EXPGRP_TEXTV_Racenamef + AMBI_BIG5_Neuroticism + AMBI_BIG5_Extraversion + AMBI_BIG5_Openness + AMBI_BIG5_Agreeableness + AMBI_BIG5_Conscientiousness + V_Age + V_JudgeSelf + V_Location + V_Framing + V_Timeperquestion + CatchCovidV_presentation3V_ProductV_Number + (1|ID)
mixed.lmers <- list(
lmer(MorallyWrong ~ V_Product + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
lmer(MorallyWrong ~ V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
lmer(MorallyWrong ~ V_Racenamef + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
lmer(MorallyWrong ~ V_Age + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
lmer(MorallyWrong ~ V_Number + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
lmer(MorallyWrong ~ V_JudgeSelf + (1|ID),
data = dff_q %>%
filter(V_up==0)),
lmer(MorallyWrong ~ V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
lmer(MorallyWrong ~ V_Racenamef + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
lmer(MorallyWrong ~ V_Age + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
lmer(MorallyWrong ~ V_Racenamef + V_Age + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)),
lmer(MorallyWrong ~ CatchCovid + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0, V_up==0)),
lmer(MorallyWrong ~ CatchCovid + V_Racenamef + V_Age + V_Product*V_presentation3 + (1|ID),
data = dff_q %>%
filter(V_JudgeSelf==0)))
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
## fixed-effect model matrix is rank deficient so dropping 1 column / coefficient
modelsummary(mixed.lmers, fmt=2, estimate = c("{estimate}{stars}"), statistic = c(),
output = "latex", title = "Comparison Model Morally Wrong")
dff_q %>%
filter(V_JudgeSelf==0, !(is.na(V_presentation3))) %>%
dplyr::select(ID_Q) %>% freq()
## n % val%
## 1_1 2 0 0
## 1_2 2 0 0
## 1_3 2 0 0
## 1_4 2 0 0
## 10_1 2 0 0
## 10_2 2 0 0
## 10_3 2 0 0
## 10_4 1 0 0
## 100_1 2 0 0
## 100_2 2 0 0
## 100_3 2 0 0
## 100_4 2 0 0
## 101_1 2 0 0
## 101_2 2 0 0
## 101_3 1 0 0
## 101_4 2 0 0
## 102_1 1 0 0
## 102_2 2 0 0
## 102_3 2 0 0
## 102_4 2 0 0
## 103_1 2 0 0
## 103_2 2 0 0
## 103_3 2 0 0
## 103_4 2 0 0
## 104_1 2 0 0
## 104_2 2 0 0
## 104_3 2 0 0
## 104_4 1 0 0
## 105_1 2 0 0
## 105_2 2 0 0
## 105_3 2 0 0
## 105_4 2 0 0
## 107_1 2 0 0
## 107_2 2 0 0
## 107_3 2 0 0
## 107_4 2 0 0
## 108_1 2 0 0
## 108_2 2 0 0
## 108_3 2 0 0
## 108_4 1 0 0
## 109_1 2 0 0
## 109_2 2 0 0
## 109_3 2 0 0
## 109_4 2 0 0
## 11_1 2 0 0
## 11_2 2 0 0
## 11_3 2 0 0
## 11_4 2 0 0
## 111_1 2 0 0
## 111_2 1 0 0
## 111_3 2 0 0
## 111_4 2 0 0
## 113_1 2 0 0
## 113_2 1 0 0
## 113_3 2 0 0
## 113_4 2 0 0
## 114_1 2 0 0
## 114_2 2 0 0
## 114_3 2 0 0
## 114_4 2 0 0
## 115_1 2 0 0
## 115_2 1 0 0
## 115_3 2 0 0
## 115_4 2 0 0
## 116_1 2 0 0
## 116_2 2 0 0
## 116_3 1 0 0
## 116_4 2 0 0
## 117_1 2 0 0
## 117_2 2 0 0
## 117_3 2 0 0
## 117_4 2 0 0
## 118_1 2 0 0
## 118_2 2 0 0
## 118_3 2 0 0
## 118_4 2 0 0
## 119_1 2 0 0
## 119_2 2 0 0
## 119_3 2 0 0
## 119_4 2 0 0
## 12_1 2 0 0
## 12_2 2 0 0
## 12_3 2 0 0
## 12_4 2 0 0
## 120_1 2 0 0
## 120_2 2 0 0
## 120_3 2 0 0
## 120_4 2 0 0
## 121_1 2 0 0
## 121_2 1 0 0
## 121_3 2 0 0
## 121_4 2 0 0
## 122_1 2 0 0
## 122_2 2 0 0
## 122_3 2 0 0
## 122_4 2 0 0
## 123_1 2 0 0
## 123_2 2 0 0
## 123_3 2 0 0
## 123_4 1 0 0
## 124_1 2 0 0
## 124_2 2 0 0
## 124_3 2 0 0
## 124_4 2 0 0
## 125_1 2 0 0
## 125_2 1 0 0
## 125_3 2 0 0
## 125_4 2 0 0
## 126_1 1 0 0
## 126_2 2 0 0
## 126_3 2 0 0
## 126_4 2 0 0
## 127_1 1 0 0
## 127_2 2 0 0
## 127_3 2 0 0
## 127_4 2 0 0
## 128_1 1 0 0
## 128_2 2 0 0
## 128_3 2 0 0
## 128_4 2 0 0
## 129_1 2 0 0
## 129_2 2 0 0
## 129_3 2 0 0
## 129_4 2 0 0
## 13_1 2 0 0
## 13_2 2 0 0
## 13_3 2 0 0
## 13_4 1 0 0
## 130_1 1 0 0
## 130_2 2 0 0
## 130_3 2 0 0
## 130_4 2 0 0
## 131_1 2 0 0
## 131_2 2 0 0
## 131_3 2 0 0
## 131_4 2 0 0
## 132_1 2 0 0
## 132_2 2 0 0
## 132_3 1 0 0
## 132_4 2 0 0
## 133_1 2 0 0
## 133_2 2 0 0
## 133_3 2 0 0
## 133_4 2 0 0
## 134_1 2 0 0
## 134_2 2 0 0
## 134_3 2 0 0
## 134_4 1 0 0
## 135_1 2 0 0
## 135_2 2 0 0
## 135_3 2 0 0
## 135_4 2 0 0
## 136_1 2 0 0
## 136_2 2 0 0
## 136_3 2 0 0
## 136_4 2 0 0
## 137_1 1 0 0
## 137_2 2 0 0
## 137_3 2 0 0
## 137_4 2 0 0
## 138_1 2 0 0
## 138_2 2 0 0
## 138_3 2 0 0
## 138_4 2 0 0
## 139_1 2 0 0
## 139_2 2 0 0
## 139_3 2 0 0
## 139_4 1 0 0
## 14_1 1 0 0
## 14_2 2 0 0
## 14_3 2 0 0
## 14_4 2 0 0
## 140_1 2 0 0
## 140_2 2 0 0
## 140_3 2 0 0
## 140_4 2 0 0
## 141_1 2 0 0
## 141_2 2 0 0
## 141_3 2 0 0
## 141_4 2 0 0
## 142_1 2 0 0
## 142_2 2 0 0
## 142_3 2 0 0
## 142_4 2 0 0
## 143_1 2 0 0
## 143_2 1 0 0
## 143_3 2 0 0
## 143_4 2 0 0
## 144_1 1 0 0
## 144_2 2 0 0
## 144_3 2 0 0
## 144_4 2 0 0
## 145_1 2 0 0
## 145_2 2 0 0
## 145_3 2 0 0
## 145_4 2 0 0
## 146_1 2 0 0
## 146_2 2 0 0
## 146_3 2 0 0
## 146_4 1 0 0
## 147_1 2 0 0
## 147_2 1 0 0
## 147_3 2 0 0
## 147_4 2 0 0
## 148_1 2 0 0
## 148_2 2 0 0
## 148_3 2 0 0
## 148_4 1 0 0
## 149_1 2 0 0
## 149_2 2 0 0
## 149_3 2 0 0
## 149_4 1 0 0
## 150_1 2 0 0
## 150_2 2 0 0
## 150_3 1 0 0
## 150_4 2 0 0
## 151_1 2 0 0
## 151_2 2 0 0
## 151_3 1 0 0
## 151_4 2 0 0
## 152_1 2 0 0
## 152_2 1 0 0
## 152_3 2 0 0
## 152_4 2 0 0
## 153_1 2 0 0
## 153_2 2 0 0
## 153_3 1 0 0
## 153_4 2 0 0
## 154_1 1 0 0
## 154_2 2 0 0
## 154_3 2 0 0
## 154_4 2 0 0
## 155_1 2 0 0
## 155_2 2 0 0
## 155_3 2 0 0
## 155_4 2 0 0
## 156_1 2 0 0
## 156_2 1 0 0
## 156_3 2 0 0
## 156_4 2 0 0
## 157_1 1 0 0
## 157_2 2 0 0
## 157_3 2 0 0
## 157_4 2 0 0
## 158_1 2 0 0
## 158_2 2 0 0
## 158_3 2 0 0
## 158_4 2 0 0
## 159_1 2 0 0
## 159_2 2 0 0
## 159_3 2 0 0
## 159_4 2 0 0
## 16_1 2 0 0
## 16_2 2 0 0
## 16_3 2 0 0
## 16_4 2 0 0
## 160_1 2 0 0
## 160_2 2 0 0
## 160_3 2 0 0
## 160_4 2 0 0
## 161_1 2 0 0
## 161_2 2 0 0
## 161_3 2 0 0
## 161_4 2 0 0
## 162_1 2 0 0
## 162_2 2 0 0
## 162_3 2 0 0
## 162_4 2 0 0
## 163_1 2 0 0
## 163_2 1 0 0
## 163_3 2 0 0
## 163_4 2 0 0
## 164_1 2 0 0
## 164_2 2 0 0
## 164_3 1 0 0
## 164_4 2 0 0
## 165_1 2 0 0
## 165_2 2 0 0
## 165_3 2 0 0
## 165_4 2 0 0
## 166_1 2 0 0
## 166_2 2 0 0
## 166_3 2 0 0
## 166_4 2 0 0
## 167_1 2 0 0
## 167_2 1 0 0
## 167_3 2 0 0
## 167_4 2 0 0
## 168_1 2 0 0
## 168_2 2 0 0
## 168_3 2 0 0
## 168_4 2 0 0
## 169_1 2 0 0
## 169_2 2 0 0
## 169_3 2 0 0
## 169_4 2 0 0
## 17_1 2 0 0
## 17_2 2 0 0
## 17_3 2 0 0
## 17_4 2 0 0
## 170_1 2 0 0
## 170_2 2 0 0
## 170_3 2 0 0
## 170_4 1 0 0
## 171_1 2 0 0
## 171_2 2 0 0
## 171_3 2 0 0
## 171_4 2 0 0
## 172_1 2 0 0
## 172_2 2 0 0
## 172_3 2 0 0
## 172_4 1 0 0
## 173_1 1 0 0
## 173_2 2 0 0
## 173_3 2 0 0
## 173_4 2 0 0
## 174_1 2 0 0
## 174_2 2 0 0
## 174_3 2 0 0
## 174_4 2 0 0
## 175_1 2 0 0
## 175_2 2 0 0
## 175_3 2 0 0
## 175_4 2 0 0
## 177_1 2 0 0
## 177_2 2 0 0
## 177_3 2 0 0
## 177_4 1 0 0
## 178_1 2 0 0
## 178_2 1 0 0
## 178_3 2 0 0
## 178_4 2 0 0
## 179_1 2 0 0
## 179_2 2 0 0
## 179_3 2 0 0
## 179_4 2 0 0
## 18_1 2 0 0
## 18_2 2 0 0
## 18_3 1 0 0
## 18_4 2 0 0
## 180_1 2 0 0
## 180_2 1 0 0
## 180_3 2 0 0
## 180_4 2 0 0
## 181_1 2 0 0
## 181_2 2 0 0
## 181_3 2 0 0
## 181_4 2 0 0
## 182_1 2 0 0
## 182_2 2 0 0
## 182_3 2 0 0
## 182_4 2 0 0
## 183_1 2 0 0
## 183_2 2 0 0
## 183_3 2 0 0
## 183_4 2 0 0
## 184_1 2 0 0
## 184_2 1 0 0
## 184_3 2 0 0
## 184_4 2 0 0
## 185_1 2 0 0
## 185_2 2 0 0
## 185_3 1 0 0
## 185_4 2 0 0
## 186_1 2 0 0
## 186_2 2 0 0
## 186_3 2 0 0
## 186_4 2 0 0
## 187_1 2 0 0
## 187_2 2 0 0
## 187_3 1 0 0
## 187_4 2 0 0
## 188_1 2 0 0
## 188_2 2 0 0
## 188_3 1 0 0
## 188_4 2 0 0
## 189_1 2 0 0
## 189_2 2 0 0
## 189_3 2 0 0
## 189_4 2 0 0
## 19_1 1 0 0
## 19_2 2 0 0
## 19_3 2 0 0
## 19_4 2 0 0
## 190_1 1 0 0
## 190_2 2 0 0
## 190_3 2 0 0
## 190_4 2 0 0
## 191_1 2 0 0
## 191_2 2 0 0
## 191_3 2 0 0
## 191_4 2 0 0
## 192_1 2 0 0
## 192_2 2 0 0
## 192_3 2 0 0
## 192_4 2 0 0
## 193_1 1 0 0
## 193_2 2 0 0
## 193_3 2 0 0
## 193_4 2 0 0
## 194_1 1 0 0
## 194_2 2 0 0
## 194_3 2 0 0
## 194_4 2 0 0
## 195_1 2 0 0
## 195_2 2 0 0
## 195_3 2 0 0
## 195_4 2 0 0
## 197_1 2 0 0
## 197_2 2 0 0
## 197_3 2 0 0
## 197_4 2 0 0
## 198_1 2 0 0
## 198_2 2 0 0
## 198_3 1 0 0
## 198_4 2 0 0
## 199_1 2 0 0
## 199_2 1 0 0
## 199_3 2 0 0
## 199_4 2 0 0
## 2_1 2 0 0
## 2_2 2 0 0
## 2_3 2 0 0
## 2_4 2 0 0
## 20_1 2 0 0
## 20_2 2 0 0
## 20_3 2 0 0
## 20_4 2 0 0
## 200_1 2 0 0
## 200_2 2 0 0
## 200_3 2 0 0
## 200_4 2 0 0
## 201_1 2 0 0
## 201_2 2 0 0
## 201_3 1 0 0
## 201_4 2 0 0
## 202_1 2 0 0
## 202_2 2 0 0
## 202_3 2 0 0
## 202_4 2 0 0
## 203_1 2 0 0
## 203_2 2 0 0
## 203_3 1 0 0
## 203_4 2 0 0
## 204_1 2 0 0
## 204_2 2 0 0
## 204_3 1 0 0
## 204_4 2 0 0
## 205_1 2 0 0
## 205_2 2 0 0
## 205_3 2 0 0
## 205_4 2 0 0
## 206_1 2 0 0
## 206_2 2 0 0
## 206_3 2 0 0
## 206_4 2 0 0
## 207_1 1 0 0
## 207_2 2 0 0
## 207_3 2 0 0
## 207_4 2 0 0
## 208_1 2 0 0
## 208_2 2 0 0
## 208_3 2 0 0
## 208_4 2 0 0
## 209_1 2 0 0
## 209_2 1 0 0
## 209_3 2 0 0
## 209_4 2 0 0
## 21_1 2 0 0
## 21_2 1 0 0
## 21_3 2 0 0
## 21_4 2 0 0
## 210_1 1 0 0
## 210_2 2 0 0
## 210_3 2 0 0
## 210_4 2 0 0
## 212_1 2 0 0
## 212_2 2 0 0
## 212_3 2 0 0
## 212_4 2 0 0
## 213_1 2 0 0
## 213_2 2 0 0
## 213_3 2 0 0
## 213_4 2 0 0
## 214_1 2 0 0
## 214_2 2 0 0
## 214_3 2 0 0
## 214_4 2 0 0
## 215_1 2 0 0
## 215_2 2 0 0
## 215_3 2 0 0
## 215_4 2 0 0
## 216_1 2 0 0
## 216_2 2 0 0
## 216_3 2 0 0
## 216_4 2 0 0
## 217_1 2 0 0
## 217_2 2 0 0
## 217_3 2 0 0
## 217_4 1 0 0
## 219_1 2 0 0
## 219_2 2 0 0
## 219_3 2 0 0
## 219_4 1 0 0
## 22_1 1 0 0
## 22_2 2 0 0
## 22_3 2 0 0
## 22_4 2 0 0
## 220_1 2 0 0
## 220_2 2 0 0
## 220_3 2 0 0
## 220_4 2 0 0
## 221_1 2 0 0
## 221_2 2 0 0
## 221_3 2 0 0
## 221_4 2 0 0
## 222_1 2 0 0
## 222_2 1 0 0
## 222_3 2 0 0
## 222_4 2 0 0
## 223_1 2 0 0
## 223_2 2 0 0
## 223_3 2 0 0
## 223_4 2 0 0
## 224_1 2 0 0
## 224_2 2 0 0
## 224_3 2 0 0
## 224_4 2 0 0
## 225_1 1 0 0
## 225_2 2 0 0
## 225_3 2 0 0
## 225_4 2 0 0
## 226_1 2 0 0
## 226_2 2 0 0
## 226_3 2 0 0
## 226_4 1 0 0
## 227_1 1 0 0
## 227_2 2 0 0
## 227_3 2 0 0
## 227_4 2 0 0
## 228_1 1 0 0
## 228_2 2 0 0
## 228_3 2 0 0
## 228_4 2 0 0
## 229_1 2 0 0
## 229_2 2 0 0
## 229_3 2 0 0
## 229_4 2 0 0
## 230_1 2 0 0
## 230_2 2 0 0
## 230_3 2 0 0
## 230_4 2 0 0
## 231_1 2 0 0
## 231_2 2 0 0
## 231_3 2 0 0
## 231_4 2 0 0
## 232_1 1 0 0
## 232_2 2 0 0
## 232_3 2 0 0
## 232_4 2 0 0
## 233_1 2 0 0
## 233_2 1 0 0
## 233_3 2 0 0
## 233_4 2 0 0
## 234_1 2 0 0
## 234_2 2 0 0
## 234_3 2 0 0
## 234_4 2 0 0
## 235_1 2 0 0
## 235_2 2 0 0
## 235_3 2 0 0
## 235_4 2 0 0
## 236_1 2 0 0
## 236_2 2 0 0
## 236_3 2 0 0
## 236_4 2 0 0
## 237_1 2 0 0
## 237_2 1 0 0
## 237_3 2 0 0
## 237_4 2 0 0
## 239_1 2 0 0
## 239_2 1 0 0
## 239_3 2 0 0
## 239_4 2 0 0
## 24_1 1 0 0
## 24_2 2 0 0
## 24_3 2 0 0
## 24_4 2 0 0
## 240_1 2 0 0
## 240_2 2 0 0
## 240_3 2 0 0
## 240_4 2 0 0
## 241_1 2 0 0
## 241_2 2 0 0
## 241_3 2 0 0
## 241_4 2 0 0
## 242_1 2 0 0
## 242_2 2 0 0
## 242_3 2 0 0
## 242_4 2 0 0
## 243_1 2 0 0
## 243_2 2 0 0
## 243_3 2 0 0
## 243_4 2 0 0
## 244_1 2 0 0
## 244_2 2 0 0
## 244_3 2 0 0
## 244_4 1 0 0
## 245_1 2 0 0
## 245_2 2 0 0
## 245_3 2 0 0
## 245_4 2 0 0
## 246_1 2 0 0
## 246_2 2 0 0
## 246_3 2 0 0
## 246_4 1 0 0
## 247_1 1 0 0
## 247_2 2 0 0
## 247_3 2 0 0
## 247_4 2 0 0
## 248_1 2 0 0
## 248_2 2 0 0
## 248_3 2 0 0
## 248_4 1 0 0
## 249_1 2 0 0
## 249_2 2 0 0
## 249_3 2 0 0
## 249_4 2 0 0
## 25_1 2 0 0
## 25_2 2 0 0
## 25_3 2 0 0
## 25_4 2 0 0
## 250_1 2 0 0
## 250_2 2 0 0
## 250_3 2 0 0
## 250_4 2 0 0
## 253_1 2 0 0
## 253_2 1 0 0
## 253_3 2 0 0
## 253_4 2 0 0
## 254_1 2 0 0
## 254_2 2 0 0
## 254_3 2 0 0
## 254_4 2 0 0
## 255_1 2 0 0
## 255_2 1 0 0
## 255_3 2 0 0
## 255_4 2 0 0
## 257_1 2 0 0
## 257_2 2 0 0
## 257_3 2 0 0
## 257_4 1 0 0
## 258_1 1 0 0
## 258_2 2 0 0
## 258_3 2 0 0
## 258_4 2 0 0
## 259_1 2 0 0
## 259_2 2 0 0
## 259_3 2 0 0
## 259_4 2 0 0
## 26_1 2 0 0
## 26_2 2 0 0
## 26_3 2 0 0
## 26_4 1 0 0
## 260_1 2 0 0
## 260_2 2 0 0
## 260_3 2 0 0
## 260_4 2 0 0
## 262_1 2 0 0
## 262_2 2 0 0
## 262_3 1 0 0
## 262_4 2 0 0
## 263_1 2 0 0
## 263_2 2 0 0
## 263_3 1 0 0
## 263_4 2 0 0
## 264_1 2 0 0
## 264_2 2 0 0
## 264_3 2 0 0
## 264_4 2 0 0
## 265_1 2 0 0
## 265_2 2 0 0
## 265_3 2 0 0
## 265_4 2 0 0
## 266_1 2 0 0
## 266_2 1 0 0
## 266_3 2 0 0
## 266_4 2 0 0
## 267_1 2 0 0
## 267_2 2 0 0
## 267_3 2 0 0
## 267_4 1 0 0
## 268_1 2 0 0
## 268_2 1 0 0
## 268_3 2 0 0
## 268_4 2 0 0
## 269_1 2 0 0
## 269_2 2 0 0
## 269_3 2 0 0
## 269_4 2 0 0
## 27_1 2 0 0
## 27_2 1 0 0
## 27_3 2 0 0
## 27_4 2 0 0
## 270_1 2 0 0
## 270_2 2 0 0
## 270_3 2 0 0
## 270_4 1 0 0
## 271_1 2 0 0
## 271_2 2 0 0
## 271_3 2 0 0
## 271_4 2 0 0
## 272_1 2 0 0
## 272_2 2 0 0
## 272_3 2 0 0
## 272_4 2 0 0
## 273_1 2 0 0
## 273_2 1 0 0
## 273_3 2 0 0
## 273_4 2 0 0
## 274_1 2 0 0
## 274_2 2 0 0
## 274_3 1 0 0
## 274_4 2 0 0
## 276_1 2 0 0
## 276_2 2 0 0
## 276_3 2 0 0
## 276_4 2 0 0
## 278_1 2 0 0
## 278_2 2 0 0
## 278_3 2 0 0
## 278_4 2 0 0
## 28_1 2 0 0
## 28_2 1 0 0
## 28_3 2 0 0
## 28_4 2 0 0
## 280_1 2 0 0
## 280_2 1 0 0
## 280_3 2 0 0
## 280_4 2 0 0
## 281_1 2 0 0
## 281_2 2 0 0
## 281_3 2 0 0
## 281_4 2 0 0
## 283_1 2 0 0
## 283_2 1 0 0
## 283_3 2 0 0
## 283_4 2 0 0
## 284_1 2 0 0
## 284_2 2 0 0
## 284_3 1 0 0
## 284_4 2 0 0
## 285_1 2 0 0
## 285_2 1 0 0
## 285_3 2 0 0
## 285_4 2 0 0
## 286_1 2 0 0
## 286_2 1 0 0
## 286_3 2 0 0
## 286_4 2 0 0
## 287_1 2 0 0
## 287_2 2 0 0
## 287_3 2 0 0
## 287_4 2 0 0
## 288_1 2 0 0
## 288_2 2 0 0
## 288_3 2 0 0
## 288_4 1 0 0
## 289_1 2 0 0
## 289_2 2 0 0
## 289_3 2 0 0
## 289_4 2 0 0
## 29_1 2 0 0
## 29_2 2 0 0
## 29_3 2 0 0
## 29_4 2 0 0
## 290_1 1 0 0
## 290_2 2 0 0
## 290_3 2 0 0
## 290_4 2 0 0
## 292_1 2 0 0
## 292_2 2 0 0
## 292_3 2 0 0
## 292_4 2 0 0
## 295_1 2 0 0
## 295_2 2 0 0
## 295_3 2 0 0
## 295_4 2 0 0
## 298_1 2 0 0
## 298_2 2 0 0
## 298_3 2 0 0
## 298_4 2 0 0
## 3_1 2 0 0
## 3_2 2 0 0
## 3_3 2 0 0
## 3_4 2 0 0
## 30_1 2 0 0
## 30_2 1 0 0
## 30_3 2 0 0
## 30_4 2 0 0
## 300_1 2 0 0
## 300_2 2 0 0
## 300_3 1 0 0
## 300_4 2 0 0
## 301_1 2 0 0
## 301_2 1 0 0
## 301_3 2 0 0
## 301_4 2 0 0
## 302_1 1 0 0
## 302_2 2 0 0
## 302_3 2 0 0
## 302_4 2 0 0
## 307_1 2 0 0
## 307_2 2 0 0
## 307_3 2 0 0
## 307_4 2 0 0
## 308_1 2 0 0
## 308_2 2 0 0
## 308_3 2 0 0
## 308_4 2 0 0
## 309_1 1 0 0
## 309_2 2 0 0
## 309_3 2 0 0
## 309_4 2 0 0
## 31_1 1 0 0
## 31_2 2 0 0
## 31_3 2 0 0
## 31_4 2 0 0
## 312_1 2 0 0
## 312_2 2 0 0
## 312_3 2 0 0
## 312_4 1 0 0
## 313_1 2 0 0
## 313_2 2 0 0
## 313_3 2 0 0
## 313_4 2 0 0
## 314_1 2 0 0
## 314_2 2 0 0
## 314_3 2 0 0
## 314_4 2 0 0
## 315_1 2 0 0
## 315_2 2 0 0
## 315_3 2 0 0
## 315_4 2 0 0
## 316_1 2 0 0
## 316_2 1 0 0
## 316_3 2 0 0
## 316_4 2 0 0
## 317_1 2 0 0
## 317_2 1 0 0
## 317_3 2 0 0
## 317_4 2 0 0
## 319_1 2 0 0
## 319_2 1 0 0
## 319_3 2 0 0
## 319_4 2 0 0
## 32_1 2 0 0
## 32_2 1 0 0
## 32_3 2 0 0
## 32_4 2 0 0
## 320_1 2 0 0
## 320_2 2 0 0
## 320_3 2 0 0
## 320_4 2 0 0
## 321_1 1 0 0
## 321_2 2 0 0
## 321_3 2 0 0
## 321_4 2 0 0
## 324_1 2 0 0
## 324_2 2 0 0
## 324_3 2 0 0
## 324_4 2 0 0
## 325_1 2 0 0
## 325_2 2 0 0
## 325_3 2 0 0
## 325_4 2 0 0
## 326_1 2 0 0
## 326_2 2 0 0
## 326_3 2 0 0
## 326_4 2 0 0
## 327_1 2 0 0
## 327_2 2 0 0
## 327_3 2 0 0
## 327_4 1 0 0
## 328_1 2 0 0
## 328_2 2 0 0
## 328_3 2 0 0
## 328_4 1 0 0
## 329_1 2 0 0
## 329_2 2 0 0
## 329_3 2 0 0
## 329_4 2 0 0
## 33_1 2 0 0
## 33_2 2 0 0
## 33_3 2 0 0
## 33_4 2 0 0
## 330_1 2 0 0
## 330_2 2 0 0
## 330_3 2 0 0
## 330_4 2 0 0
## 331_1 1 0 0
## 331_2 2 0 0
## 331_3 2 0 0
## 331_4 2 0 0
## 332_1 2 0 0
## 332_2 1 0 0
## 332_3 2 0 0
## 332_4 2 0 0
## 333_1 2 0 0
## 333_2 2 0 0
## 333_3 2 0 0
## 333_4 2 0 0
## 336_1 2 0 0
## 336_2 2 0 0
## 336_3 2 0 0
## 336_4 1 0 0
## 337_1 2 0 0
## 337_2 2 0 0
## 337_3 2 0 0
## 337_4 2 0 0
## 338_1 2 0 0
## 338_2 2 0 0
## 338_3 2 0 0
## 338_4 2 0 0
## 339_1 2 0 0
## 339_2 2 0 0
## 339_3 2 0 0
## 339_4 2 0 0
## 34_1 2 0 0
## 34_2 2 0 0
## 34_3 1 0 0
## 34_4 2 0 0
## 340_1 2 0 0
## 340_2 2 0 0
## 340_3 1 0 0
## 340_4 2 0 0
## 341_1 2 0 0
## 341_2 2 0 0
## 341_3 2 0 0
## 341_4 2 0 0
## 343_1 2 0 0
## 343_2 2 0 0
## 343_3 2 0 0
## 343_4 2 0 0
## 344_1 2 0 0
## 344_2 2 0 0
## 344_3 2 0 0
## 344_4 2 0 0
## 347_1 2 0 0
## 347_2 2 0 0
## 347_3 2 0 0
## 347_4 1 0 0
## 348_1 2 0 0
## 348_2 2 0 0
## 348_3 1 0 0
## 348_4 2 0 0
## 35_1 2 0 0
## 35_2 2 0 0
## 35_3 2 0 0
## 35_4 2 0 0
## 350_1 2 0 0
## 350_2 2 0 0
## 350_3 2 0 0
## 350_4 2 0 0
## 351_1 2 0 0
## 351_2 2 0 0
## 351_3 2 0 0
## 351_4 2 0 0
## 352_1 2 0 0
## 352_2 2 0 0
## 352_3 2 0 0
## 352_4 2 0 0
## 354_1 2 0 0
## 354_2 2 0 0
## 354_3 2 0 0
## 354_4 1 0 0
## 355_1 1 0 0
## 355_2 2 0 0
## 355_3 2 0 0
## 355_4 2 0 0
## 356_1 2 0 0
## 356_2 2 0 0
## 356_3 2 0 0
## 356_4 2 0 0
## 36_1 2 0 0
## 36_2 2 0 0
## 36_3 1 0 0
## 36_4 2 0 0
## 360_1 2 0 0
## 360_2 1 0 0
## 360_3 2 0 0
## 360_4 2 0 0
## 361_1 2 0 0
## 361_2 2 0 0
## 361_3 2 0 0
## 361_4 2 0 0
## 362_1 2 0 0
## 362_2 2 0 0
## 362_3 2 0 0
## 362_4 1 0 0
## 363_1 2 0 0
## 363_2 1 0 0
## 363_3 2 0 0
## 363_4 2 0 0
## 364_1 2 0 0
## 364_2 2 0 0
## 364_3 2 0 0
## 364_4 2 0 0
## 365_1 2 0 0
## 365_2 2 0 0
## 365_3 1 0 0
## 365_4 2 0 0
## 366_1 2 0 0
## 366_2 2 0 0
## 366_3 2 0 0
## 366_4 2 0 0
## 367_1 2 0 0
## 367_2 2 0 0
## 367_3 2 0 0
## 367_4 2 0 0
## 368_1 2 0 0
## 368_2 2 0 0
## 368_3 2 0 0
## 368_4 2 0 0
## 369_1 2 0 0
## 369_2 2 0 0
## 369_3 2 0 0
## 369_4 2 0 0
## 37_1 1 0 0
## 37_2 2 0 0
## 37_3 2 0 0
## 37_4 2 0 0
## 371_1 2 0 0
## 371_2 2 0 0
## 371_3 2 0 0
## 371_4 2 0 0
## 372_1 2 0 0
## 372_2 2 0 0
## 372_3 2 0 0
## 372_4 2 0 0
## 374_1 2 0 0
## 374_2 2 0 0
## 374_3 2 0 0
## 374_4 2 0 0
## 375_1 2 0 0
## 375_2 2 0 0
## 375_3 1 0 0
## 375_4 2 0 0
## 376_1 1 0 0
## 376_2 2 0 0
## 376_3 2 0 0
## 376_4 2 0 0
## 377_1 2 0 0
## 377_2 2 0 0
## 377_3 1 0 0
## 377_4 2 0 0
## 378_1 1 0 0
## 378_2 2 0 0
## 378_3 2 0 0
## 378_4 2 0 0
## 379_1 2 0 0
## 379_2 2 0 0
## 379_3 2 0 0
## 379_4 2 0 0
## 38_1 2 0 0
## 38_2 2 0 0
## 38_3 2 0 0
## 38_4 2 0 0
## 380_1 2 0 0
## 380_2 2 0 0
## 380_3 2 0 0
## 380_4 2 0 0
## 381_1 2 0 0
## 381_2 1 0 0
## 381_3 2 0 0
## 381_4 2 0 0
## 384_1 2 0 0
## 384_2 2 0 0
## 384_3 1 0 0
## 384_4 2 0 0
## 385_1 2 0 0
## 385_2 2 0 0
## 385_3 2 0 0
## 385_4 2 0 0
## 386_1 2 0 0
## 386_2 2 0 0
## 386_3 2 0 0
## 386_4 2 0 0
## 387_1 2 0 0
## 387_2 2 0 0
## 387_3 2 0 0
## 387_4 1 0 0
## 388_1 2 0 0
## 388_2 2 0 0
## 388_3 2 0 0
## 388_4 2 0 0
## 39_1 1 0 0
## 39_2 2 0 0
## 39_3 2 0 0
## 39_4 2 0 0
## 390_1 2 0 0
## 390_2 2 0 0
## 390_3 2 0 0
## 390_4 1 0 0
## 391_1 2 0 0
## 391_2 2 0 0
## 391_3 2 0 0
## 391_4 1 0 0
## 392_1 2 0 0
## 392_2 2 0 0
## 392_3 2 0 0
## 392_4 2 0 0
## 393_1 2 0 0
## 393_2 2 0 0
## 393_3 2 0 0
## 393_4 2 0 0
## 394_1 2 0 0
## 394_2 2 0 0
## 394_3 2 0 0
## 394_4 2 0 0
## 395_1 2 0 0
## 395_2 1 0 0
## 395_3 2 0 0
## 395_4 2 0 0
## 396_1 2 0 0
## 396_2 2 0 0
## 396_3 2 0 0
## 396_4 2 0 0
## 397_1 2 0 0
## 397_2 2 0 0
## 397_3 2 0 0
## 397_4 2 0 0
## 398_1 2 0 0
## 398_2 1 0 0
## 398_3 2 0 0
## 398_4 2 0 0
## 399_1 2 0 0
## 399_2 2 0 0
## 399_3 2 0 0
## 399_4 2 0 0
## 4_1 2 0 0
## 4_2 2 0 0
## 4_3 2 0 0
## 4_4 2 0 0
## 40_1 2 0 0
## 40_2 2 0 0
## 40_3 2 0 0
## 40_4 2 0 0
## 400_1 2 0 0
## 400_2 2 0 0
## 400_3 2 0 0
## 400_4 2 0 0
## 401_1 2 0 0
## 401_2 2 0 0
## 401_3 1 0 0
## 401_4 2 0 0
## 402_1 2 0 0
## 402_2 2 0 0
## 402_3 1 0 0
## 402_4 2 0 0
## 403_1 2 0 0
## 403_2 1 0 0
## 403_3 2 0 0
## 403_4 2 0 0
## 404_1 2 0 0
## 404_2 2 0 0
## 404_3 1 0 0
## 404_4 2 0 0
## 405_1 2 0 0
## 405_2 2 0 0
## 405_3 2 0 0
## 405_4 2 0 0
## 406_1 1 0 0
## 406_2 2 0 0
## 406_3 2 0 0
## 406_4 2 0 0
## 407_1 2 0 0
## 407_2 2 0 0
## 407_3 2 0 0
## 407_4 2 0 0
## 408_1 2 0 0
## 408_2 2 0 0
## 408_3 2 0 0
## 408_4 2 0 0
## 409_1 2 0 0
## 409_2 2 0 0
## 409_3 2 0 0
## 409_4 2 0 0
## 41_1 2 0 0
## 41_2 2 0 0
## 41_3 2 0 0
## 41_4 1 0 0
## 410_1 2 0 0
## 410_2 2 0 0
## 410_3 2 0 0
## 410_4 2 0 0
## 411_1 2 0 0
## 411_2 2 0 0
## 411_3 2 0 0
## 411_4 1 0 0
## 412_1 2 0 0
## 412_2 2 0 0
## 412_3 2 0 0
## 412_4 2 0 0
## 413_1 2 0 0
## 413_2 2 0 0
## 413_3 2 0 0
## 413_4 1 0 0
## 414_1 2 0 0
## 414_2 1 0 0
## 414_3 2 0 0
## 414_4 2 0 0
## 415_1 2 0 0
## 415_2 2 0 0
## 415_3 2 0 0
## 415_4 2 0 0
## 416_1 2 0 0
## 416_2 2 0 0
## 416_3 2 0 0
## 416_4 2 0 0
## 417_1 2 0 0
## 417_2 2 0 0
## 417_3 2 0 0
## 417_4 2 0 0
## 418_1 1 0 0
## 418_2 2 0 0
## 418_3 2 0 0
## 418_4 2 0 0
## 419_1 2 0 0
## 419_2 2 0 0
## 419_3 2 0 0
## 419_4 2 0 0
## 420_1 2 0 0
## 420_2 2 0 0
## 420_3 2 0 0
## 420_4 1 0 0
## 421_1 2 0 0
## 421_2 2 0 0
## 421_3 1 0 0
## 421_4 2 0 0
## 422_1 2 0 0
## 422_2 2 0 0
## 422_3 2 0 0
## 422_4 2 0 0
## 423_1 2 0 0
## 423_2 2 0 0
## 423_3 2 0 0
## 423_4 2 0 0
## 424_1 2 0 0
## 424_2 2 0 0
## 424_3 2 0 0
## 424_4 2 0 0
## 425_1 1 0 0
## 425_2 2 0 0
## 425_3 2 0 0
## 425_4 2 0 0
## 426_1 2 0 0
## 426_2 2 0 0
## 426_3 2 0 0
## 426_4 1 0 0
## 427_1 2 0 0
## 427_2 1 0 0
## 427_3 2 0 0
## 427_4 2 0 0
## 428_1 2 0 0
## 428_2 2 0 0
## 428_3 2 0 0
## 428_4 2 0 0
## 429_1 2 0 0
## 429_2 2 0 0
## 429_3 2 0 0
## 429_4 2 0 0
## 430_1 1 0 0
## 430_2 2 0 0
## 430_3 2 0 0
## 430_4 2 0 0
## 431_1 2 0 0
## 431_2 1 0 0
## 431_3 2 0 0
## 431_4 2 0 0
## 432_1 2 0 0
## 432_2 2 0 0
## 432_3 2 0 0
## 432_4 2 0 0
## 433_1 2 0 0
## 433_2 1 0 0
## 433_3 2 0 0
## 433_4 2 0 0
## 434_1 2 0 0
## 434_2 2 0 0
## 434_3 2 0 0
## 434_4 1 0 0
## 435_1 2 0 0
## 435_2 2 0 0
## 435_3 2 0 0
## 435_4 2 0 0
## 436_1 2 0 0
## 436_2 2 0 0
## 436_3 2 0 0
## 436_4 2 0 0
## 437_1 2 0 0
## 437_2 2 0 0
## 437_3 2 0 0
## 437_4 2 0 0
## 438_1 2 0 0
## 438_2 2 0 0
## 438_3 2 0 0
## 438_4 2 0 0
## 439_1 2 0 0
## 439_2 2 0 0
## 439_3 2 0 0
## 439_4 2 0 0
## 44_1 2 0 0
## 44_2 2 0 0
## 44_3 2 0 0
## 44_4 2 0 0
## 440_1 1 0 0
## 440_2 2 0 0
## 440_3 2 0 0
## 440_4 2 0 0
## 441_1 2 0 0
## 441_2 2 0 0
## 441_3 2 0 0
## 441_4 2 0 0
## 442_1 2 0 0
## 442_2 2 0 0
## 442_3 2 0 0
## 442_4 1 0 0
## 443_1 2 0 0
## 443_2 2 0 0
## 443_3 2 0 0
## 443_4 2 0 0
## 444_1 2 0 0
## 444_2 2 0 0
## 444_3 2 0 0
## 444_4 1 0 0
## 445_1 2 0 0
## 445_2 2 0 0
## 445_3 2 0 0
## 445_4 2 0 0
## 446_1 2 0 0
## 446_2 2 0 0
## 446_3 2 0 0
## 446_4 2 0 0
## 447_1 1 0 0
## 447_2 2 0 0
## 447_3 2 0 0
## 447_4 2 0 0
## 448_1 2 0 0
## 448_2 2 0 0
## 448_3 1 0 0
## 448_4 2 0 0
## 449_1 2 0 0
## 449_2 2 0 0
## 449_3 2 0 0
## 449_4 2 0 0
## 45_1 2 0 0
## 45_2 1 0 0
## 45_3 2 0 0
## 45_4 2 0 0
## 450_1 2 0 0
## 450_2 2 0 0
## 450_3 1 0 0
## 450_4 2 0 0
## 451_1 2 0 0
## 451_2 2 0 0
## 451_3 2 0 0
## 451_4 1 0 0
## 452_1 2 0 0
## 452_2 2 0 0
## 452_3 2 0 0
## 452_4 2 0 0
## 453_1 1 0 0
## 453_2 2 0 0
## 453_3 2 0 0
## 453_4 2 0 0
## 454_1 2 0 0
## 454_2 2 0 0
## 454_3 2 0 0
## 454_4 2 0 0
## 455_1 2 0 0
## 455_2 1 0 0
## 455_3 2 0 0
## 455_4 2 0 0
## 456_1 2 0 0
## 456_2 2 0 0
## 456_3 1 0 0
## 456_4 2 0 0
## 457_1 2 0 0
## 457_2 1 0 0
## 457_3 2 0 0
## 457_4 2 0 0
## 459_1 2 0 0
## 459_2 1 0 0
## 459_3 2 0 0
## 459_4 2 0 0
## 46_1 2 0 0
## 46_2 2 0 0
## 46_3 2 0 0
## 46_4 2 0 0
## 460_1 2 0 0
## 460_2 2 0 0
## 460_3 2 0 0
## 460_4 2 0 0
## 461_1 2 0 0
## 461_2 2 0 0
## 461_3 2 0 0
## 461_4 2 0 0
## 462_1 2 0 0
## 462_2 2 0 0
## 462_3 2 0 0
## 462_4 1 0 0
## 463_1 2 0 0
## 463_2 2 0 0
## 463_3 2 0 0
## 463_4 2 0 0
## 464_1 2 0 0
## 464_2 2 0 0
## 464_3 2 0 0
## 464_4 1 0 0
## 465_1 1 0 0
## 465_2 2 0 0
## 465_3 2 0 0
## 465_4 2 0 0
## 466_1 2 0 0
## 466_2 1 0 0
## 466_3 2 0 0
## 466_4 2 0 0
## 467_1 1 0 0
## 467_2 2 0 0
## 467_3 2 0 0
## 467_4 2 0 0
## 468_1 2 0 0
## 468_2 1 0 0
## 468_3 2 0 0
## 468_4 2 0 0
## 47_1 2 0 0
## 47_2 2 0 0
## 47_3 1 0 0
## 47_4 2 0 0
## 470_1 1 0 0
## 470_2 2 0 0
## 470_3 2 0 0
## 470_4 2 0 0
## 471_1 2 0 0
## 471_2 2 0 0
## 471_3 2 0 0
## 471_4 2 0 0
## 472_1 2 0 0
## 472_2 2 0 0
## 472_3 2 0 0
## 472_4 2 0 0
## 473_1 2 0 0
## 473_2 2 0 0
## 473_3 2 0 0
## 473_4 2 0 0
## 474_1 2 0 0
## 474_2 1 0 0
## 474_3 2 0 0
## 474_4 2 0 0
## 475_1 2 0 0
## 475_2 2 0 0
## 475_3 2 0 0
## 475_4 2 0 0
## 476_1 2 0 0
## 476_2 2 0 0
## 476_3 1 0 0
## 476_4 2 0 0
## 477_1 2 0 0
## 477_2 2 0 0
## 477_3 2 0 0
## 477_4 2 0 0
## 478_1 1 0 0
## 478_2 2 0 0
## 478_3 2 0 0
## 478_4 2 0 0
## 479_1 1 0 0
## 479_2 2 0 0
## 479_3 2 0 0
## 479_4 2 0 0
## 48_1 2 0 0
## 48_2 2 0 0
## 48_3 2 0 0
## 48_4 2 0 0
## 480_1 1 0 0
## 480_2 2 0 0
## 480_3 2 0 0
## 480_4 2 0 0
## 481_1 2 0 0
## 481_2 2 0 0
## 481_3 1 0 0
## 481_4 2 0 0
## 482_1 1 0 0
## 482_2 2 0 0
## 482_3 2 0 0
## 482_4 2 0 0
## 483_1 2 0 0
## 483_2 2 0 0
## 483_3 2 0 0
## 483_4 2 0 0
## 484_1 2 0 0
## 484_2 2 0 0
## 484_3 2 0 0
## 484_4 2 0 0
## 485_1 2 0 0
## 485_2 2 0 0
## 485_3 2 0 0
## 485_4 2 0 0
## 486_1 2 0 0
## 486_2 2 0 0
## 486_3 2 0 0
## 486_4 2 0 0
## 487_1 2 0 0
## 487_2 2 0 0
## 487_3 2 0 0
## 487_4 2 0 0
## 488_1 2 0 0
## 488_2 2 0 0
## 488_3 2 0 0
## 488_4 2 0 0
## 489_1 2 0 0
## 489_2 2 0 0
## 489_3 2 0 0
## 489_4 2 0 0
## 49_1 2 0 0
## 49_2 2 0 0
## 49_3 2 0 0
## 49_4 2 0 0
## 490_1 2 0 0
## 490_2 2 0 0
## 490_3 2 0 0
## 490_4 2 0 0
## 491_1 2 0 0
## 491_2 2 0 0
## 491_3 1 0 0
## 491_4 2 0 0
## 492_1 2 0 0
## 492_2 2 0 0
## 492_3 2 0 0
## 492_4 2 0 0
## 493_1 2 0 0
## 493_2 2 0 0
## 493_3 2 0 0
## 493_4 2 0 0
## 494_1 2 0 0
## 494_2 2 0 0
## 494_3 2 0 0
## 494_4 2 0 0
## 495_1 1 0 0
## 495_2 2 0 0
## 495_3 2 0 0
## 495_4 2 0 0
## 496_1 2 0 0
## 496_2 2 0 0
## 496_3 2 0 0
## 496_4 2 0 0
## 497_1 2 0 0
## 497_2 2 0 0
## 497_3 1 0 0
## 497_4 2 0 0
## 498_1 1 0 0
## 498_2 2 0 0
## 498_3 2 0 0
## 498_4 2 0 0
## 499_1 2 0 0
## 499_2 2 0 0
## 499_3 2 0 0
## 499_4 2 0 0
## 5_1 2 0 0
## 5_2 2 0 0
## 5_3 2 0 0
## 5_4 2 0 0
## 50_1 2 0 0
## 50_2 2 0 0
## 50_3 2 0 0
## 50_4 2 0 0
## 500_1 2 0 0
## 500_2 2 0 0
## 500_3 2 0 0
## 500_4 2 0 0
## 501_1 2 0 0
## 501_2 2 0 0
## 501_3 1 0 0
## 501_4 2 0 0
## 502_1 2 0 0
## 502_2 2 0 0
## 502_3 2 0 0
## 502_4 2 0 0
## 503_1 2 0 0
## 503_2 2 0 0
## 503_3 2 0 0
## 503_4 2 0 0
## 504_1 2 0 0
## 504_2 2 0 0
## 504_3 2 0 0
## 504_4 1 0 0
## 505_1 2 0 0
## 505_2 2 0 0
## 505_3 2 0 0
## 505_4 2 0 0
## 506_1 2 0 0
## 506_2 2 0 0
## 506_3 2 0 0
## 506_4 1 0 0
## 507_1 2 0 0
## 507_2 2 0 0
## 507_3 2 0 0
## 507_4 2 0 0
## 508_1 2 0 0
## 508_2 2 0 0
## 508_3 2 0 0
## 508_4 2 0 0
## 509_1 2 0 0
## 509_2 2 0 0
## 509_3 2 0 0
## 509_4 2 0 0
## 51_1 2 0 0
## 51_2 2 0 0
## 51_3 2 0 0
## 51_4 1 0 0
## 510_1 2 0 0
## 510_2 2 0 0
## 510_3 2 0 0
## 510_4 1 0 0
## 511_1 2 0 0
## 511_2 2 0 0
## 511_3 2 0 0
## 511_4 2 0 0
## 512_1 2 0 0
## 512_2 1 0 0
## 512_3 2 0 0
## 512_4 2 0 0
## 513_1 2 0 0
## 513_2 2 0 0
## 513_3 2 0 0
## 513_4 2 0 0
## 515_1 2 0 0
## 515_2 2 0 0
## 515_3 2 0 0
## 515_4 2 0 0
## 516_1 2 0 0
## 516_2 2 0 0
## 516_3 2 0 0
## 516_4 2 0 0
## 517_1 2 0 0
## 517_2 2 0 0
## 517_3 2 0 0
## 517_4 2 0 0
## 519_1 1 0 0
## 519_2 2 0 0
## 519_3 2 0 0
## 519_4 2 0 0
## 52_1 2 0 0
## 52_2 2 0 0
## 52_3 2 0 0
## 52_4 2 0 0
## 520_1 2 0 0
## 520_2 2 0 0
## 520_3 1 0 0
## 520_4 2 0 0
## 521_1 2 0 0
## 521_2 2 0 0
## 521_3 1 0 0
## 521_4 2 0 0
## 522_1 2 0 0
## 522_2 2 0 0
## 522_3 2 0 0
## 522_4 2 0 0
## 523_1 2 0 0
## 523_2 1 0 0
## 523_3 2 0 0
## 523_4 2 0 0
## 524_1 2 0 0
## 524_2 2 0 0
## 524_3 2 0 0
## 524_4 2 0 0
## 525_1 1 0 0
## 525_2 2 0 0
## 525_3 2 0 0
## 525_4 2 0 0
## 526_1 2 0 0
## 526_2 1 0 0
## 526_3 2 0 0
## 526_4 2 0 0
## 527_1 2 0 0
## 527_2 2 0 0
## 527_3 2 0 0
## 527_4 1 0 0
## 528_1 2 0 0
## 528_2 2 0 0
## 528_3 2 0 0
## 528_4 2 0 0
## 529_1 2 0 0
## 529_2 1 0 0
## 529_3 2 0 0
## 529_4 2 0 0
## 53_1 2 0 0
## 53_2 2 0 0
## 53_3 2 0 0
## 53_4 2 0 0
## 530_1 2 0 0
## 530_2 2 0 0
## 530_3 2 0 0
## 530_4 1 0 0
## 531_1 2 0 0
## 531_2 2 0 0
## 531_3 2 0 0
## 531_4 1 0 0
## 532_1 1 0 0
## 532_2 2 0 0
## 532_3 2 0 0
## 532_4 2 0 0
## 533_1 2 0 0
## 533_2 2 0 0
## 533_3 1 0 0
## 533_4 2 0 0
## 534_1 2 0 0
## 534_2 1 0 0
## 534_3 2 0 0
## 534_4 2 0 0
## 535_1 2 0 0
## 535_2 1 0 0
## 535_3 2 0 0
## 535_4 2 0 0
## 536_1 2 0 0
## 536_2 2 0 0
## 536_3 2 0 0
## 536_4 2 0 0
## 537_1 2 0 0
## 537_2 2 0 0
## 537_3 2 0 0
## 537_4 2 0 0
## 538_1 2 0 0
## 538_2 2 0 0
## 538_3 2 0 0
## 538_4 2 0 0
## 539_1 2 0 0
## 539_2 2 0 0
## 539_3 2 0 0
## 539_4 1 0 0
## 54_1 1 0 0
## 54_2 2 0 0
## 54_3 2 0 0
## 54_4 2 0 0
## 540_1 2 0 0
## 540_2 2 0 0
## 540_3 2 0 0
## 540_4 2 0 0
## 541_1 2 0 0
## 541_2 2 0 0
## 541_3 2 0 0
## 541_4 2 0 0
## 542_1 2 0 0
## 542_2 2 0 0
## 542_3 2 0 0
## 542_4 1 0 0
## 543_1 2 0 0
## 543_2 2 0 0
## 543_3 2 0 0
## 543_4 2 0 0
## 544_1 2 0 0
## 544_2 2 0 0
## 544_3 2 0 0
## 544_4 1 0 0
## 545_1 2 0 0
## 545_2 1 0 0
## 545_3 2 0 0
## 545_4 2 0 0
## 546_1 2 0 0
## 546_2 2 0 0
## 546_3 2 0 0
## 546_4 1 0 0
## 547_1 2 0 0
## 547_2 2 0 0
## 547_3 1 0 0
## 547_4 2 0 0
## 548_1 2 0 0
## 548_2 2 0 0
## 548_3 1 0 0
## 548_4 2 0 0
## 549_1 2 0 0
## 549_2 2 0 0
## 549_3 2 0 0
## 549_4 2 0 0
## 55_1 2 0 0
## 55_2 2 0 0
## 55_3 2 0 0
## 55_4 2 0 0
## 550_1 2 0 0
## 550_2 2 0 0
## 550_3 2 0 0
## 550_4 2 0 0
## 551_1 2 0 0
## 551_2 2 0 0
## 551_3 2 0 0
## 551_4 2 0 0
## 552_1 2 0 0
## 552_2 1 0 0
## 552_3 2 0 0
## 552_4 2 0 0
## 553_1 2 0 0
## 553_2 2 0 0
## 553_3 1 0 0
## 553_4 2 0 0
## 554_1 2 0 0
## 554_2 2 0 0
## 554_3 1 0 0
## 554_4 2 0 0
## 555_1 2 0 0
## 555_2 1 0 0
## 555_3 2 0 0
## 555_4 2 0 0
## 556_1 2 0 0
## 556_2 2 0 0
## 556_3 1 0 0
## 556_4 2 0 0
## 557_1 2 0 0
## 557_2 2 0 0
## 557_3 2 0 0
## 557_4 1 0 0
## 558_1 2 0 0
## 558_2 2 0 0
## 558_3 2 0 0
## 558_4 2 0 0
## 559_1 2 0 0
## 559_2 2 0 0
## 559_3 2 0 0
## 559_4 2 0 0
## 56_1 2 0 0
## 56_2 1 0 0
## 56_3 2 0 0
## 56_4 2 0 0
## 560_1 2 0 0
## 560_2 2 0 0
## 560_3 2 0 0
## 560_4 2 0 0
## 561_1 2 0 0
## 561_2 1 0 0
## 561_3 2 0 0
## 561_4 2 0 0
## 562_1 2 0 0
## 562_2 2 0 0
## 562_3 1 0 0
## 562_4 2 0 0
## 563_1 2 0 0
## 563_2 1 0 0
## 563_3 2 0 0
## 563_4 2 0 0
## 564_1 2 0 0
## 564_2 1 0 0
## 564_3 2 0 0
## 564_4 2 0 0
## 565_1 2 0 0
## 565_2 2 0 0
## 565_3 2 0 0
## 565_4 2 0 0
## 566_1 2 0 0
## 566_2 2 0 0
## 566_3 2 0 0
## 566_4 2 0 0
## 567_1 1 0 0
## 567_2 2 0 0
## 567_3 2 0 0
## 567_4 2 0 0
## 568_1 2 0 0
## 568_2 2 0 0
## 568_3 2 0 0
## 568_4 1 0 0
## 569_1 2 0 0
## 569_2 2 0 0
## 569_3 2 0 0
## 569_4 2 0 0
## 57_1 2 0 0
## 57_2 2 0 0
## 57_3 1 0 0
## 57_4 2 0 0
## 570_1 2 0 0
## 570_2 2 0 0
## 570_3 2 0 0
## 570_4 2 0 0
## 571_1 2 0 0
## 571_2 2 0 0
## 571_3 2 0 0
## 571_4 1 0 0
## 572_1 2 0 0
## 572_2 2 0 0
## 572_3 2 0 0
## 572_4 2 0 0
## 573_1 2 0 0
## 573_2 1 0 0
## 573_3 2 0 0
## 573_4 2 0 0
## 574_1 1 0 0
## 574_2 2 0 0
## 574_3 2 0 0
## 574_4 2 0 0
## 575_1 2 0 0
## 575_2 2 0 0
## 575_3 2 0 0
## 575_4 1 0 0
## 576_1 2 0 0
## 576_2 2 0 0
## 576_3 2 0 0
## 576_4 2 0 0
## 577_1 2 0 0
## 577_2 2 0 0
## 577_3 2 0 0
## 577_4 2 0 0
## 578_1 2 0 0
## 578_2 2 0 0
## 578_3 2 0 0
## 578_4 2 0 0
## 579_1 2 0 0
## 579_2 2 0 0
## 579_3 2 0 0
## 579_4 2 0 0
## 58_1 2 0 0
## 58_2 2 0 0
## 58_3 2 0 0
## 58_4 1 0 0
## 580_1 1 0 0
## 580_2 2 0 0
## 580_3 2 0 0
## 580_4 2 0 0
## 581_1 2 0 0
## 581_2 2 0 0
## 581_3 2 0 0
## 581_4 2 0 0
## 582_1 2 0 0
## 582_2 2 0 0
## 582_3 2 0 0
## 582_4 2 0 0
## 583_1 2 0 0
## 583_2 2 0 0
## 583_3 2 0 0
## 583_4 2 0 0
## 584_1 2 0 0
## 584_2 1 0 0
## 584_3 2 0 0
## 584_4 2 0 0
## 585_1 2 0 0
## 585_2 2 0 0
## 585_3 2 0 0
## 585_4 2 0 0
## 586_1 2 0 0
## 586_2 2 0 0
## 586_3 2 0 0
## 586_4 2 0 0
## 587_1 2 0 0
## 587_2 2 0 0
## 587_3 2 0 0
## 587_4 2 0 0
## 589_1 2 0 0
## 589_2 2 0 0
## 589_3 1 0 0
## 589_4 2 0 0
## 59_1 2 0 0
## 59_2 2 0 0
## 59_3 2 0 0
## 59_4 2 0 0
## 590_1 2 0 0
## 590_2 2 0 0
## 590_3 2 0 0
## 590_4 2 0 0
## 591_1 2 0 0
## 591_2 1 0 0
## 591_3 2 0 0
## 591_4 2 0 0
## 592_1 2 0 0
## 592_2 2 0 0
## 592_3 1 0 0
## 592_4 2 0 0
## 593_1 2 0 0
## 593_2 2 0 0
## 593_3 2 0 0
## 593_4 2 0 0
## 594_1 2 0 0
## 594_2 2 0 0
## 594_3 1 0 0
## 594_4 2 0 0
## 596_1 2 0 0
## 596_2 2 0 0
## 596_3 2 0 0
## 596_4 2 0 0
## 597_1 2 0 0
## 597_2 2 0 0
## 597_3 2 0 0
## 597_4 2 0 0
## 598_1 2 0 0
## 598_2 2 0 0
## 598_3 1 0 0
## 598_4 2 0 0
## 599_1 1 0 0
## 599_2 2 0 0
## 599_3 2 0 0
## 599_4 2 0 0
## 6_1 2 0 0
## 6_2 2 0 0
## 6_3 2 0 0
## 6_4 2 0 0
## 600_1 2 0 0
## 600_2 2 0 0
## 600_3 1 0 0
## 600_4 2 0 0
## 601_1 2 0 0
## 601_2 2 0 0
## 601_3 2 0 0
## 601_4 2 0 0
## 602_1 2 0 0
## 602_2 2 0 0
## 602_3 2 0 0
## 602_4 2 0 0
## 603_1 2 0 0
## 603_2 2 0 0
## 603_3 2 0 0
## 603_4 2 0 0
## 604_1 2 0 0
## 604_2 2 0 0
## 604_3 1 0 0
## 604_4 2 0 0
## 605_1 2 0 0
## 605_2 2 0 0
## 605_3 2 0 0
## 605_4 1 0 0
## 606_1 2 0 0
## 606_2 1 0 0
## 606_3 2 0 0
## 606_4 2 0 0
## 607_1 2 0 0
## 607_2 2 0 0
## 607_3 2 0 0
## 607_4 2 0 0
## 608_1 2 0 0
## 608_2 2 0 0
## 608_3 2 0 0
## 608_4 1 0 0
## 609_1 2 0 0
## 609_2 2 0 0
## 609_3 2 0 0
## 609_4 2 0 0
## 61_1 2 0 0
## 61_2 2 0 0
## 61_3 2 0 0
## 61_4 2 0 0
## 610_1 2 0 0
## 610_2 2 0 0
## 610_3 2 0 0
## 610_4 2 0 0
## 611_1 2 0 0
## 611_2 2 0 0
## 611_3 2 0 0
## 611_4 2 0 0
## 612_1 2 0 0
## 612_2 2 0 0
## 612_3 2 0 0
## 612_4 2 0 0
## 613_1 1 0 0
## 613_2 2 0 0
## 613_3 2 0 0
## 613_4 2 0 0
## 614_1 2 0 0
## 614_2 1 0 0
## 614_3 2 0 0
## 614_4 2 0 0
## 615_1 2 0 0
## 615_2 2 0 0
## 615_3 2 0 0
## 615_4 2 0 0
## 616_1 2 0 0
## 616_2 2 0 0
## 616_3 2 0 0
## 616_4 2 0 0
## 617_1 2 0 0
## 617_2 2 0 0
## 617_3 2 0 0
## 617_4 2 0 0
## 618_1 2 0 0
## 618_2 1 0 0
## 618_3 2 0 0
## 618_4 2 0 0
## 619_1 2 0 0
## 619_2 2 0 0
## 619_3 2 0 0
## 619_4 1 0 0
## 62_1 2 0 0
## 62_2 2 0 0
## 62_3 1 0 0
## 62_4 2 0 0
## 620_1 2 0 0
## 620_2 2 0 0
## 620_3 2 0 0
## 620_4 2 0 0
## 621_1 2 0 0
## 621_2 2 0 0
## 621_3 2 0 0
## 621_4 2 0 0
## 622_1 2 0 0
## 622_2 2 0 0
## 622_3 2 0 0
## 622_4 2 0 0
## 623_1 2 0 0
## 623_2 2 0 0
## 623_3 2 0 0
## 623_4 1 0 0
## 624_1 2 0 0
## 624_2 2 0 0
## 624_3 2 0 0
## 624_4 2 0 0
## 625_1 2 0 0
## 625_2 2 0 0
## 625_3 2 0 0
## 625_4 2 0 0
## 626_1 2 0 0
## 626_2 2 0 0
## 626_3 1 0 0
## 626_4 2 0 0
## 627_1 1 0 0
## 627_2 2 0 0
## 627_3 2 0 0
## 627_4 2 0 0
## 628_1 2 0 0
## 628_2 1 0 0
## 628_3 2 0 0
## 628_4 2 0 0
## 629_1 2 0 0
## 629_2 2 0 0
## 629_3 2 0 0
## 629_4 2 0 0
## 63_1 2 0 0
## 63_2 2 0 0
## 63_3 2 0 0
## 63_4 2 0 0
## 630_1 2 0 0
## 630_2 2 0 0
## 630_3 2 0 0
## 630_4 2 0 0
## 631_1 2 0 0
## 631_2 2 0 0
## 631_3 2 0 0
## 631_4 2 0 0
## 632_1 2 0 0
## 632_2 2 0 0
## 632_3 2 0 0
## 632_4 2 0 0
## 633_1 2 0 0
## 633_2 2 0 0
## 633_3 2 0 0
## 633_4 2 0 0
## 634_1 2 0 0
## 634_2 2 0 0
## 634_3 2 0 0
## 634_4 1 0 0
## 635_1 1 0 0
## 635_2 2 0 0
## 635_3 2 0 0
## 635_4 2 0 0
## 636_1 2 0 0
## 636_2 2 0 0
## 636_3 1 0 0
## 636_4 2 0 0
## 637_1 1 0 0
## 637_2 2 0 0
## 637_3 2 0 0
## 637_4 2 0 0
## 639_1 2 0 0
## 639_2 2 0 0
## 639_3 2 0 0
## 639_4 2 0 0
## 64_1 1 0 0
## 64_2 2 0 0
## 64_3 2 0 0
## 64_4 2 0 0
## 640_1 2 0 0
## 640_2 2 0 0
## 640_3 2 0 0
## 640_4 2 0 0
## 642_1 2 0 0
## 642_2 2 0 0
## 642_3 1 0 0
## 642_4 2 0 0
## 643_1 2 0 0
## 643_2 2 0 0
## 643_3 2 0 0
## 643_4 2 0 0
## 645_1 2 0 0
## 645_2 2 0 0
## 645_3 2 0 0
## 645_4 2 0 0
## 646_1 2 0 0
## 646_2 2 0 0
## 646_3 2 0 0
## 646_4 1 0 0
## 647_1 2 0 0
## 647_2 2 0 0
## 647_3 1 0 0
## 647_4 2 0 0
## 648_1 1 0 0
## 648_2 2 0 0
## 648_3 2 0 0
## 648_4 2 0 0
## 649_1 2 0 0
## 649_2 2 0 0
## 649_3 2 0 0
## 649_4 2 0 0
## 65_1 2 0 0
## 65_2 2 0 0
## 65_3 2 0 0
## 65_4 2 0 0
## 650_1 2 0 0
## 650_2 2 0 0
## 650_3 1 0 0
## 650_4 2 0 0
## 651_1 1 0 0
## 651_2 2 0 0
## 651_3 2 0 0
## 651_4 2 0 0
## 652_1 1 0 0
## 652_2 2 0 0
## 652_3 2 0 0
## 652_4 2 0 0
## 653_1 2 0 0
## 653_2 2 0 0
## 653_3 2 0 0
## 653_4 1 0 0
## 654_1 2 0 0
## 654_2 1 0 0
## 654_3 2 0 0
## 654_4 2 0 0
## 655_1 2 0 0
## 655_2 2 0 0
## 655_3 2 0 0
## 655_4 2 0 0
## 656_1 2 0 0
## 656_2 2 0 0
## 656_3 2 0 0
## 656_4 1 0 0
## 657_1 2 0 0
## 657_2 2 0 0
## 657_3 2 0 0
## 657_4 2 0 0
## 658_1 2 0 0
## 658_2 2 0 0
## 658_3 2 0 0
## 658_4 2 0 0
## 659_1 2 0 0
## 659_2 2 0 0
## 659_3 2 0 0
## 659_4 2 0 0
## 66_1 2 0 0
## 66_2 2 0 0
## 66_3 2 0 0
## 66_4 2 0 0
## 660_1 2 0 0
## 660_2 2 0 0
## 660_3 2 0 0
## 660_4 2 0 0
## 661_1 2 0 0
## 661_2 1 0 0
## 661_3 2 0 0
## 661_4 2 0 0
## 67_1 2 0 0
## 67_2 2 0 0
## 67_3 2 0 0
## 67_4 1 0 0
## 68_1 2 0 0
## 68_2 2 0 0
## 68_3 1 0 0
## 68_4 2 0 0
## 69_1 1 0 0
## 69_2 2 0 0
## 69_3 2 0 0
## 69_4 2 0 0
## 7_1 2 0 0
## 7_2 2 0 0
## 7_3 2 0 0
## 7_4 2 0 0
## 70_1 2 0 0
## 70_2 2 0 0
## 70_3 2 0 0
## 70_4 2 0 0
## 71_1 2 0 0
## 71_2 2 0 0
## 71_3 2 0 0
## 71_4 2 0 0
## 72_1 2 0 0
## 72_2 2 0 0
## 72_3 2 0 0
## 72_4 2 0 0
## 73_1 2 0 0
## 73_2 2 0 0
## 73_3 2 0 0
## 73_4 2 0 0
## 74_1 2 0 0
## 74_2 2 0 0
## 74_3 2 0 0
## 74_4 2 0 0
## 75_1 1 0 0
## 75_2 2 0 0
## 75_3 2 0 0
## 75_4 2 0 0
## 76_1 1 0 0
## 76_2 2 0 0
## 76_3 2 0 0
## 76_4 2 0 0
## 77_1 2 0 0
## 77_2 2 0 0
## 77_3 2 0 0
## 77_4 2 0 0
## 78_1 2 0 0
## 78_2 2 0 0
## 78_3 1 0 0
## 78_4 2 0 0
## 79_1 2 0 0
## 79_2 2 0 0
## 79_3 1 0 0
## 79_4 2 0 0
## 8_1 2 0 0
## 8_2 2 0 0
## 8_3 2 0 0
## 8_4 2 0 0
## 80_1 1 0 0
## 80_2 2 0 0
## 80_3 2 0 0
## 80_4 2 0 0
## 81_1 2 0 0
## 81_2 2 0 0
## 81_3 1 0 0
## 81_4 2 0 0
## 82_1 2 0 0
## 82_2 2 0 0
## 82_3 2 0 0
## 82_4 2 0 0
## 83_1 2 0 0
## 83_2 2 0 0
## 83_3 2 0 0
## 83_4 2 0 0
## 84_1 2 0 0
## 84_2 2 0 0
## 84_3 1 0 0
## 84_4 2 0 0
## 85_1 2 0 0
## 85_2 2 0 0
## 85_3 2 0 0
## 85_4 2 0 0
## 86_1 2 0 0
## 86_2 1 0 0
## 86_3 2 0 0
## 86_4 2 0 0
## 87_1 2 0 0
## 87_2 2 0 0
## 87_3 1 0 0
## 87_4 2 0 0
## 88_1 2 0 0
## 88_2 2 0 0
## 88_3 2 0 0
## 88_4 2 0 0
## 89_1 1 0 0
## 89_2 2 0 0
## 89_3 2 0 0
## 89_4 2 0 0
## 9_1 2 0 0
## 9_2 2 0 0
## 9_3 2 0 0
## 9_4 2 0 0
## 90_1 2 0 0
## 90_2 2 0 0
## 90_3 2 0 0
## 90_4 2 0 0
## 91_1 2 0 0
## 91_2 2 0 0
## 91_3 2 0 0
## 91_4 2 0 0
## 92_1 2 0 0
## 92_2 2 0 0
## 92_3 2 0 0
## 92_4 1 0 0
## 93_1 2 0 0
## 93_2 2 0 0
## 93_3 1 0 0
## 93_4 2 0 0
## 94_1 2 0 0
## 94_2 2 0 0
## 94_3 2 0 0
## 94_4 2 0 0
## 96_1 2 0 0
## 96_2 2 0 0
## 96_3 2 0 0
## 96_4 1 0 0
## 98_1 1 0 0
## 98_2 2 0 0
## 98_3 2 0 0
## 98_4 2 0 0
## 99_1 2 0 0
## 99_2 2 0 0
## 99_3 1 0 0
## 99_4 2 0 0
mixed.lmer <- lmer(MorallyWrong ~ V_Racenamef + (1|V_JudgeSelf/ID),
data = dff_q )
summary(mixed.lmers[[1]])
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_Product + (1 | ID)
## Data: dff_q %>% filter(V_JudgeSelf == 0, V_up == 0)
##
## REML criterion at convergence: 22199.3
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.5696 -0.6237 -0.0751 0.4355 3.3012
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID (Intercept) 416.6 20.41
## Residual 415.3 20.38
## Number of obs: 2396, groups: ID, 599
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 22.407 1.179 1365.061 19.013 < 2e-16 ***
## V_Producttoiletpaper 11.728 1.178 1794.000 9.959 < 2e-16 ***
## V_Productcigarettes 11.716 1.178 1794.000 9.949 < 2e-16 ***
## V_Productbabyformula -6.075 1.178 1794.000 -5.159 2.76e-07 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) V_Prdctt V_Prdctc
## V_Prdcttltp -0.500
## V_Prdctcgrt -0.500 0.500
## V_Prdctbbyf -0.500 0.500 0.500
mixed.lmer <- lmer(MorallyWrong ~ V_Number + (1|V_JudgeSelf/ID),
data = dff_q )
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_Number + (1 | V_JudgeSelf/ID)
## Data: dff_q
##
## REML criterion at convergence: 89698.2
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9640 -0.5050 -0.1515 0.4398 3.7273
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID:V_JudgeSelf (Intercept) 380.239 19.500
## V_JudgeSelf (Intercept) 3.053 1.747
## Residual 535.904 23.150
## Number of obs: 9584, groups: ID:V_JudgeSelf, 1198; V_JudgeSelf, 2
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 22.9184 1.4763 1.3160 15.524 0.0188 *
## V_Number 1.4296 0.2115 8385.0002 6.759 1.48e-11 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr)
## V_Number -0.358
formula <- y ~ x
dff_q %>%
ggplot(aes(V_Number, MorallyWrong)) +
geom_point(alpha=.3, cex=.5) +
geom_smooth(method='lm', color="red")+
ggpubr::stat_regline_equation(aes(label = ..eq.label..))
## `geom_smooth()` using formula 'y ~ x'
dff_q %>%
mutate(V_Number = V_Number %>% as.factor()) %>%
ggplot(aes(V_Number, MorallyWrong)) +
geom_violin()+
geom_point(alpha=.3, cex=.5) +
ggpubr::stat_regline_equation(aes(label = ..eq.label..))
dff_q %>%
mutate(V_Number = V_Number %>% as.factor()) %>%
ggplot(aes(V_Number, MorallyWrong)) +
geom_boxplot()+
ggpubr::stat_regline_equation(aes(label = ..eq.label..))
mixed.lmer <- lmer(MorallyWrong ~ V_Racenamef + V_Age + V_Location + V_Framing + V_presentation3*V_Product*V_Number + (1|V_JudgeSelf/ID),
data = dff_q )
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
summary(mixed.lmer)
## Linear mixed model fit by REML. t-tests use Satterthwaite's method [
## lmerModLmerTest]
## Formula: MorallyWrong ~ V_Racenamef + V_Age + V_Location + V_Framing +
## V_presentation3 * V_Product * V_Number + (1 | V_JudgeSelf/ID)
## Data: dff_q
##
## REML criterion at convergence: 82265
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1039 -0.6180 -0.0852 0.5084 3.9415
##
## Random effects:
## Groups Name Variance Std.Dev.
## ID:V_JudgeSelf (Intercept) 430.249 20.742
## V_JudgeSelf (Intercept) 3.408 1.846
## Residual 414.954 20.370
## Number of obs: 8992, groups: ID:V_JudgeSelf, 1198; V_JudgeSelf, 2
##
## Fixed effects:
## Estimate Std. Error
## (Intercept) 19.90628 2.84859
## V_RacenamefBlack -1.44095 0.61342
## V_RacenamefChinese -2.65549 0.61210
## V_RacenamefIndian -0.81481 0.61195
## V_Age 0.06057 0.04534
## V_Locationinthecity -0.68496 0.60339
## V_Locationnearby -1.27762 0.61004
## V_FramingExplain 1.44260 0.68685
## V_FramingStrike up 2.57118 0.69530
## V_FramingWave 1.32954 0.69947
## V_presentation3Defensive 9.25916 2.57270
## V_presentation3Prosocial -9.84595 2.56872
## V_Producttoiletpaper 11.50957 2.21516
## V_Productcigarettes 3.11479 2.23705
## V_Productbabyformula -2.33367 2.24394
## V_Number 0.49413 0.57298
## V_presentation3Defensive:V_Producttoiletpaper -8.89900 3.57230
## V_presentation3Defensive:V_Productcigarettes -9.64996 3.62429
## V_presentation3Prosocial:V_Productcigarettes 3.47657 3.59475
## V_presentation3Defensive:V_Productbabyformula -5.16693 3.60477
## V_presentation3Prosocial:V_Productbabyformula 1.87139 3.61518
## V_presentation3Defensive:V_Number 1.51980 0.94282
## V_presentation3Prosocial:V_Number -1.08226 0.92998
## V_Producttoiletpaper:V_Number 0.72466 0.82013
## V_Productcigarettes:V_Number 4.02394 0.83489
## V_Productbabyformula:V_Number -1.25458 0.82728
## V_presentation3Defensive:V_Producttoiletpaper:V_Number -0.76031 1.29783
## V_presentation3Defensive:V_Productcigarettes:V_Number -1.53740 1.33287
## V_presentation3Prosocial:V_Productcigarettes:V_Number 1.09138 1.31266
## V_presentation3Defensive:V_Productbabyformula:V_Number 0.42189 1.31011
## V_presentation3Prosocial:V_Productbabyformula:V_Number 1.65391 1.30073
## df t value
## (Intercept) 14.78642 6.988
## V_RacenamefBlack 7784.21449 -2.349
## V_RacenamefChinese 7780.06089 -4.338
## V_RacenamefIndian 7779.67095 -1.331
## V_Age 8293.57402 1.336
## V_Locationinthecity 8333.15587 -1.135
## V_Locationnearby 8333.27426 -2.094
## V_FramingExplain 8324.72479 2.100
## V_FramingStrike up 8325.94376 3.698
## V_FramingWave 8333.73741 1.901
## V_presentation3Defensive 7866.67049 3.599
## V_presentation3Prosocial 7866.05257 -3.833
## V_Producttoiletpaper 8170.42044 5.196
## V_Productcigarettes 8201.66691 1.392
## V_Productbabyformula 8223.91650 -1.040
## V_Number 8169.69062 0.862
## V_presentation3Defensive:V_Producttoiletpaper 7832.17851 -2.491
## V_presentation3Defensive:V_Productcigarettes 7837.13622 -2.663
## V_presentation3Prosocial:V_Productcigarettes 7836.40641 0.967
## V_presentation3Defensive:V_Productbabyformula 7835.59114 -1.433
## V_presentation3Prosocial:V_Productbabyformula 7837.94354 0.518
## V_presentation3Defensive:V_Number 7869.20235 1.612
## V_presentation3Prosocial:V_Number 7864.12767 -1.164
## V_Producttoiletpaper:V_Number 8230.71043 0.884
## V_Productcigarettes:V_Number 8264.00729 4.820
## V_Productbabyformula:V_Number 8289.71307 -1.517
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 7818.40761 -0.586
## V_presentation3Defensive:V_Productcigarettes:V_Number 7825.05997 -1.153
## V_presentation3Prosocial:V_Productcigarettes:V_Number 7821.58319 0.831
## V_presentation3Defensive:V_Productbabyformula:V_Number 7822.76503 0.322
## V_presentation3Prosocial:V_Productbabyformula:V_Number 7821.31129 1.272
## Pr(>|t|)
## (Intercept) 4.72e-06 ***
## V_RacenamefBlack 0.018847 *
## V_RacenamefChinese 1.45e-05 ***
## V_RacenamefIndian 0.183065
## V_Age 0.181669
## V_Locationinthecity 0.256328
## V_Locationnearby 0.036263 *
## V_FramingExplain 0.035730 *
## V_FramingStrike up 0.000219 ***
## V_FramingWave 0.057367 .
## V_presentation3Defensive 0.000321 ***
## V_presentation3Prosocial 0.000128 ***
## V_Producttoiletpaper 2.09e-07 ***
## V_Productcigarettes 0.163849
## V_Productbabyformula 0.298376
## V_Number 0.388500
## V_presentation3Defensive:V_Producttoiletpaper 0.012755 *
## V_presentation3Defensive:V_Productcigarettes 0.007770 **
## V_presentation3Prosocial:V_Productcigarettes 0.333513
## V_presentation3Defensive:V_Productbabyformula 0.151795
## V_presentation3Prosocial:V_Productbabyformula 0.604719
## V_presentation3Defensive:V_Number 0.107006
## V_presentation3Prosocial:V_Number 0.244560
## V_Producttoiletpaper:V_Number 0.376942
## V_Productcigarettes:V_Number 1.46e-06 ***
## V_Productbabyformula:V_Number 0.129427
## V_presentation3Defensive:V_Producttoiletpaper:V_Number 0.558007
## V_presentation3Defensive:V_Productcigarettes:V_Number 0.248758
## V_presentation3Prosocial:V_Productcigarettes:V_Number 0.405757
## V_presentation3Defensive:V_Productbabyformula:V_Number 0.747442
## V_presentation3Prosocial:V_Productbabyformula:V_Number 0.203579
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation matrix not shown by default, as p = 31 > 12.
## Use print(x, correlation=TRUE) or
## vcov(x) if you need it
## fit warnings:
## fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients
library(lavaan)
## This is lavaan 0.6-12
## lavaan is FREE software! Please report any bugs.
library(semTools)
##
## ###############################################################################
## This is semTools 0.5-6
## All users of R (or SEM) are invited to submit functions or ideas for functions.
## ###############################################################################
##
## Attaching package: 'semTools'
## The following object is masked from 'package:readr':
##
## clipboard
library(lavaanPlot)
library(MVN)
library(MIIVsem)
## This is MIIVsem 0.5.8
## MIIVsem is BETA software! Please report any bugs.
dff_sem <- dff_q %>%
mutate(V_Number = case_when(V_Number==1~"MJ_1",
V_Number==2~"MJ_2",
V_Number==3~"MJ_3",
V_Number==4~"MJ_4"),
V_Update2 = case_when(V_up==1~"Update",
V_up==0~""),
V_Self2 = case_when(V_JudgeSelf==1~"Self",
V_JudgeSelf==0~"Other"),
V_Number_up = paste(V_Number, V_Self2, V_Update2, sep="_")) %>%
dplyr::select(V_Number_up, MorallyWrong,ResponseId) %>%
tidyr::spread(V_Number_up, MorallyWrong)
dff_sem[c(1:16),] %>%
dplyr::select(matches("^MJ_"))
## MJ_1_Other_ MJ_1_Other_Update MJ_1_Self_ MJ_1_Self_Update MJ_2_Other_
## 1 25 25 30 25 25
## 2 30 15 30 16 30
## 3 0 0 0 0 0
## 4 70 50 70 50 40
## 5 20 1 40 0 15
## 6 30 54 40 100 20
## 7 0 0 0 0 0
## 8 60 10 90 20 50
## 9 70 60 70 60 60
## 10 0 0 10 0 10
## 11 56 64 67 11 70
## 12 20 15 20 25 10
## 13 0 0 0 0 0
## 14 34 26 33 27 29
## 15 60 33 40 48 40
## 16 0 10 0 2 0
## MJ_2_Other_Update MJ_2_Self_ MJ_2_Self_Update MJ_3_Other_ MJ_3_Other_Update
## 1 25 25 25 25 25
## 2 60 100 80 100 68
## 3 0 0 0 0 0
## 4 40 40 40 100 100
## 5 12 30 10 35 20
## 6 20 20 20 30 15
## 7 0 0 0 0 0
## 8 90 50 64 68 42
## 9 60 60 60 60 30
## 10 0 0 0 0 0
## 11 75 76 72 74 15
## 12 0 10 25 20 15
## 13 0 0 0 0 0
## 14 14 37 13 81 98
## 15 32 34 26 39 39
## 16 0 0 0 0 1
## MJ_3_Self_ MJ_3_Self_Update MJ_4_Other_ MJ_4_Other_Update MJ_4_Self_
## 1 25 25 25 0 25
## 2 100 70 0 0 0
## 3 0 0 10 0 10
## 4 100 100 30 30 30
## 5 65 30 5 5 10
## 6 30 15 20 30 20
## 7 0 0 20 20 20
## 8 80 50 43 28 37
## 9 60 30 20 10 50
## 10 0 0 0 0 0
## 11 58 21 51 78 68
## 12 15 20 15 10 20
## 13 0 0 0 0 0
## 14 100 100 98 19 97
## 15 48 24 27 19 32
## 16 0 0 4 1 0
## MJ_4_Self_Update
## 1 0
## 2 15
## 3 0
## 4 30
## 5 40
## 6 30
## 7 20
## 8 27
## 9 50
## 10 0
## 11 76
## 12 25
## 13 0
## 14 25
## 15 17
## 16 1
map(dff_sem %>% colnames, function(x){
k <- all(dff_sem[c(1:16),x]==dff_sem[c(1),x])
if(k %>% is.na()){k <- T}else{}
if(k){}else{print(x)}
})
## [1] "ResponseId"
## [1] "MJ_1_Other_"
## [1] "MJ_1_Other_Update"
## [1] "MJ_1_Self_"
## [1] "MJ_1_Self_Update"
## [1] "MJ_2_Other_"
## [1] "MJ_2_Other_Update"
## [1] "MJ_2_Self_"
## [1] "MJ_2_Self_Update"
## [1] "MJ_3_Other_"
## [1] "MJ_3_Other_Update"
## [1] "MJ_3_Self_"
## [1] "MJ_3_Self_Update"
## [1] "MJ_4_Other_"
## [1] "MJ_4_Other_Update"
## [1] "MJ_4_Self_"
## [1] "MJ_4_Self_Update"
## [[1]]
## [1] "ResponseId"
##
## [[2]]
## [1] "MJ_1_Other_"
##
## [[3]]
## [1] "MJ_1_Other_Update"
##
## [[4]]
## [1] "MJ_1_Self_"
##
## [[5]]
## [1] "MJ_1_Self_Update"
##
## [[6]]
## [1] "MJ_2_Other_"
##
## [[7]]
## [1] "MJ_2_Other_Update"
##
## [[8]]
## [1] "MJ_2_Self_"
##
## [[9]]
## [1] "MJ_2_Self_Update"
##
## [[10]]
## [1] "MJ_3_Other_"
##
## [[11]]
## [1] "MJ_3_Other_Update"
##
## [[12]]
## [1] "MJ_3_Self_"
##
## [[13]]
## [1] "MJ_3_Self_Update"
##
## [[14]]
## [1] "MJ_4_Other_"
##
## [[15]]
## [1] "MJ_4_Other_Update"
##
## [[16]]
## [1] "MJ_4_Self_"
##
## [[17]]
## [1] "MJ_4_Self_Update"
model <- '
MJ_2_Self_ ~ MJ_1_Self_
MJ_3_Self_ ~ MJ_2_Self_
MJ_4_Self_ ~ MJ_3_Self_
MJ_3_Self_ ~ MJ_1_Self_
MJ_4_Self_ ~ MJ_1_Self_
MJ_4_Self_ ~ MJ_2_Self_
'
fit <- cfa(model, data = dff_sem, estimator = "ML")
summary(fit, fit.measures=T, standardized=T, rsquare=T)
## lavaan 0.6-12 ended normally after 1 iterations
##
## Estimator ML
## Optimization method NLMINB
## Number of model parameters 9
##
## Number of observations 599
##
## Model Test User Model:
##
## Test statistic 0.000
## Degrees of freedom 0
##
## Model Test Baseline Model:
##
## Test statistic 542.878
## Degrees of freedom 6
## P-value 0.000
##
## User Model versus Baseline Model:
##
## Comparative Fit Index (CFI) 1.000
## Tucker-Lewis Index (TLI) 1.000
##
## Loglikelihood and Information Criteria:
##
## Loglikelihood user model (H0) -8507.520
## Loglikelihood unrestricted model (H1) -8507.520
##
## Akaike (AIC) 17033.040
## Bayesian (BIC) 17072.597
## Sample-size adjusted Bayesian (BIC) 17044.025
##
## Root Mean Square Error of Approximation:
##
## RMSEA 0.000
## 90 Percent confidence interval - lower 0.000
## 90 Percent confidence interval - upper 0.000
## P-value RMSEA <= 0.05 NA
##
## Standardized Root Mean Square Residual:
##
## SRMR 0.000
##
## Parameter Estimates:
##
## Standard errors Standard
## Information Expected
## Information saturated (h1) model Structured
##
## Regressions:
## Estimate Std.Err z-value P(>|z|) Std.lv Std.all
## MJ_2_Self_ ~
## MJ_1_Self_ 0.476 0.038 12.505 0.000 0.476 0.455
## MJ_3_Self_ ~
## MJ_2_Self_ 0.415 0.038 10.939 0.000 0.415 0.411
## MJ_4_Self_ ~
## MJ_3_Self_ 0.206 0.044 4.703 0.000 0.206 0.204
## MJ_3_Self_ ~
## MJ_1_Self_ 0.268 0.040 6.744 0.000 0.268 0.254
## MJ_4_Self_ ~
## MJ_1_Self_ 0.182 0.044 4.136 0.000 0.182 0.171
## MJ_2_Self_ 0.235 0.044 5.286 0.000 0.235 0.231
##
## Variances:
## Estimate Std.Err z-value P(>|z|) Std.lv Std.all
## .MJ_2_Self_ 800.088 46.232 17.306 0.000 800.088 0.793
## .MJ_3_Self_ 688.928 39.808 17.306 0.000 688.928 0.672
## .MJ_4_Self_ 790.174 45.659 17.306 0.000 790.174 0.759
##
## R-Square:
## Estimate
## MJ_2_Self_ 0.207
## MJ_3_Self_ 0.328
## MJ_4_Self_ 0.241
semPlot::semPaths(fit, "std",
layout = "tree2",
rotation = 2)
model2 <- '
MJ_1_Self_Update ~ MJ_1_Self_
MJ_2_Self_ ~ MJ_1_Self_ + MJ_1_Self_Update
MJ_2_Self_Update ~ MJ_2_Self_
MJ_3_Self_ ~ MJ_2_Self_ + MJ_2_Self_Update
MJ_3_Self_Update ~ MJ_3_Self_
MJ_4_Self_ ~ MJ_3_Self_ + MJ_3_Self_Update
MJ_4_Self_Update ~ MJ_4_Self_
'
fit2 <- cfa(model2, data = dff_sem, estimator = "ML")
summary(fit2, fit.measures=T, standardized=T, rsquare=T)
## lavaan 0.6-12 ended normally after 1 iterations
##
## Estimator ML
## Optimization method NLMINB
## Number of model parameters 17
##
## Number of observations 599
##
## Model Test User Model:
##
## Test statistic 262.558
## Degrees of freedom 18
## P-value (Chi-square) 0.000
##
## Model Test Baseline Model:
##
## Test statistic 2050.844
## Degrees of freedom 28
## P-value 0.000
##
## User Model versus Baseline Model:
##
## Comparative Fit Index (CFI) 0.879
## Tucker-Lewis Index (TLI) 0.812
##
## Loglikelihood and Information Criteria:
##
## Loglikelihood user model (H0) -19467.988
## Loglikelihood unrestricted model (H1) -19336.709
##
## Akaike (AIC) 38969.976
## Bayesian (BIC) 39044.696
## Sample-size adjusted Bayesian (BIC) 38990.726
##
## Root Mean Square Error of Approximation:
##
## RMSEA 0.151
## 90 Percent confidence interval - lower 0.135
## 90 Percent confidence interval - upper 0.167
## P-value RMSEA <= 0.05 0.000
##
## Standardized Root Mean Square Residual:
##
## SRMR 0.125
##
## Parameter Estimates:
##
## Standard errors Standard
## Information Expected
## Information saturated (h1) model Structured
##
## Regressions:
## Estimate Std.Err z-value P(>|z|) Std.lv Std.all
## MJ_1_Self_Update ~
## MJ_1_Self_ 0.543 0.030 18.149 0.000 0.543 0.596
## MJ_2_Self_ ~
## MJ_1_Self_ 0.288 0.046 6.320 0.000 0.288 0.275
## MJ_1_Self_Updt 0.346 0.050 6.913 0.000 0.346 0.301
## MJ_2_Self_Update ~
## MJ_2_Self_ 0.626 0.030 20.986 0.000 0.626 0.651
## MJ_3_Self_ ~
## MJ_2_Self_ 0.404 0.045 8.900 0.000 0.404 0.401
## MJ_2_Self_Updt 0.202 0.047 4.281 0.000 0.202 0.193
## MJ_3_Self_Update ~
## MJ_3_Self_ 0.610 0.032 19.351 0.000 0.610 0.620
## MJ_4_Self_ ~
## MJ_3_Self_ 0.231 0.047 4.947 0.000 0.231 0.229
## MJ_3_Self_Updt 0.285 0.047 6.002 0.000 0.285 0.278
## MJ_4_Self_Update ~
## MJ_4_Self_ 0.675 0.030 22.497 0.000 0.675 0.677
##
## Variances:
## Estimate Std.Err z-value P(>|z|) Std.lv Std.all
## .MJ_1_Self_Updt 493.699 28.527 17.306 0.000 493.699 0.645
## .MJ_2_Self_ 740.969 42.816 17.306 0.000 740.969 0.734
## .MJ_2_Self_Updt 537.210 31.042 17.306 0.000 537.210 0.576
## .MJ_3_Self_ 719.228 41.559 17.306 0.000 719.228 0.701
## .MJ_3_Self_Updt 611.409 35.329 17.306 0.000 611.409 0.615
## .MJ_4_Self_ 824.011 47.614 17.306 0.000 824.011 0.791
## .MJ_4_Self_Updt 562.330 32.493 17.306 0.000 562.330 0.542
##
## R-Square:
## Estimate
## MJ_1_Self_Updt 0.355
## MJ_2_Self_ 0.266
## MJ_2_Self_Updt 0.424
## MJ_3_Self_ 0.299
## MJ_3_Self_Updt 0.385
## MJ_4_Self_ 0.209
## MJ_4_Self_Updt 0.458
semPlot::semPaths(fit2, "std",
layout = "tree2",
rotation=2)